/* ==========================================================================
   KWVMF SUB PAGE CSS
   File: /css/sub.css
   Version: 20260628_sub_layout_static_banner_v2

   목적:
   - common_top.php가 출력하는 서브페이지 구조 정상화
   - 서브 히어로 / breadcrumb / LNB / 본문 2단 레이아웃 / 콘텐츠 카드 정리
   - /about/greeting.php 기준 긴급 정상화
   - 후원배너 floating 폐기 후 좌측 LNB 하단 정적 카드로 통합
   ========================================================================== */


/* ==========================================================================
   0. SUB PAGE BASE
   ========================================================================== */

body.page-sub,
body.kwvmf-sub-page,
body.kwvmf-sub-body {
    background: #f4f7fb;
    color: #172033;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

.kwvmf-sub-page .kw-bg-radial,
.kwvmf-sub-body .kw-bg-radial {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 8%, rgba(31, 95, 174, 0.10), transparent 30%),
        radial-gradient(circle at 88% 20%, rgba(185, 151, 91, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f4f7fb 46%, #eef3f9 100%);
}


/* ==========================================================================
   1. SUB HERO
   - 좌측 텍스트 / 우측 이미지 분리형 서브히어로
   - /images/subheader1.png ~ subheader5.png 대응
   ========================================================================== */

.kw-sub-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(135deg, #071a35 0%, #0b2a5b 54%, #123d78 100%);
    color: #ffffff;
}

.kw-sub-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.16;
}

.kw-sub-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 53, 0.98) 0%,
            rgba(7, 26, 53, 0.96) 39%,
            rgba(11, 42, 91, 0.88) 52%,
            rgba(11, 42, 91, 0.42) 69%,
            rgba(11, 42, 91, 0.16) 100%
        ),
        radial-gradient(circle at 18% 18%, rgba(216, 190, 131, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(7, 26, 53, 0.04) 0%, rgba(7, 26, 53, 0.18) 100%);
}

.kw-sub-hero-media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 48%;
    background-image: var(--kw-sub-hero-image, url("/images/subheader1.png"));
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 1;
    transform: translateZ(0);
}

.kw-sub-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(7, 26, 53, 0.42) 0%, rgba(7, 26, 53, 0.08) 45%, rgba(7, 26, 53, 0.20) 100%),
        linear-gradient(180deg, rgba(7, 26, 53, 0.12) 0%, rgba(7, 26, 53, 0.36) 100%);
}

.kw-sub-hero.is-subheader-1 {
    --kw-sub-hero-image: url("/images/subheader1.png");
}

.kw-sub-hero.is-subheader-2 {
    --kw-sub-hero-image: url("/images/subheader2.png");
}

.kw-sub-hero.is-subheader-3 {
    --kw-sub-hero-image: url("/images/subheader3.png");
}

.kw-sub-hero.is-subheader-4 {
    --kw-sub-hero-image: url("/images/subheader4.png");
}

.kw-sub-hero.is-subheader-5 {
    --kw-sub-hero-image: url("/images/subheader5.png");
}

.kw-sub-hero-inner {
    position: relative;
    z-index: 3;
    width: min(1280px, calc(100% - 40px));
    min-height: 190px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 34px 0 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kw-sub-eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 8px 14px;
    border: 1px solid rgba(216, 190, 131, 0.42);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #d8be83;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.kw-sub-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #d8be83;
}

.kw-sub-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 4.2vw, 64px);
    font-weight: 950;
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.kw-sub-desc {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.75;
    letter-spacing: -0.025em;
}

@media (max-width: 1180px) {
    .kw-sub-hero-media {
        width: 46%;
    }

    .kw-sub-hero-inner {
        min-height: 176px;
        padding: 32px 0 34px;
    }

    .kw-sub-title {
        font-size: clamp(38px, 5vw, 56px);
    }
}

@media (max-width: 960px) {
    .kw-sub-hero::after {
        background:
            linear-gradient(
                90deg,
                rgba(7, 26, 53, 0.98) 0%,
                rgba(7, 26, 53, 0.94) 54%,
                rgba(11, 42, 91, 0.70) 100%
            ),
            radial-gradient(circle at 18% 18%, rgba(216, 190, 131, 0.16), transparent 32%);
    }

    .kw-sub-hero-media {
        width: 42%;
        opacity: 0.46;
    }

    .kw-sub-hero-inner {
        width: min(100% - 32px, 720px);
        min-height: 154px;
        padding: 30px 0 32px;
    }

    .kw-sub-title {
        font-size: 38px;
    }

    .kw-sub-desc {
        max-width: 620px;
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 640px) {
    .kw-sub-hero-media {
        width: 58%;
        opacity: 0.24;
    }

    .kw-sub-hero-inner {
        width: calc(100% - 28px);
        min-height: 138px;
        padding: 26px 0 28px;
    }

    .kw-sub-eyebrow {
        margin-bottom: 12px;
        padding: 7px 12px;
        font-size: 11px;
    }

    .kw-sub-title {
        font-size: 34px;
    }

    .kw-sub-desc {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.68;
    }
}


/* ==========================================================================
   2. BREADCRUMB
   ========================================================================== */

.kw-breadcrumb {
    position: relative;
    z-index: 3;
    border-bottom: 1px solid rgba(203, 213, 225, 0.82);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
}

.kw-breadcrumb-inner {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

.kw-breadcrumb-list {
    display: flex;
    min-height: 54px;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
}

.kw-breadcrumb-item {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.kw-breadcrumb-item + .kw-breadcrumb-item::before {
    content: "/";
    margin: 0 12px;
    color: #cbd5e1;
    font-weight: 900;
}

.kw-breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.kw-breadcrumb-item a:hover {
    color: #1f5fae;
}

.kw-breadcrumb-current span {
    color: #0b2a5b;
    font-weight: 900;
}


/* ==========================================================================
   3. SUB PAGE 2-COLUMN SHELL
   ========================================================================== */

.kw-page-shell {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    padding: 56px 0 90px;
}

.kw-page-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.kw-page-side {
    position: relative;
    min-width: 0;
}

.kw-page-main {
    min-width: 0;
}


/* ==========================================================================
   4. LNB
   ========================================================================== */

.kw-lnb {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 18px;
}

.kw-lnb-card {
    overflow: hidden;
    border: 1px solid rgba(203, 213, 225, 0.92);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.kw-lnb-title {
    padding: 24px 24px 22px;
    background:
        radial-gradient(circle at top right, rgba(216, 190, 131, 0.20), transparent 42%),
        linear-gradient(135deg, #071a35 0%, #0b2a5b 100%);
    color: #ffffff;
    font-size: 22px;
    font-weight: 950;
    line-height: 1.22;
    letter-spacing: -0.045em;
}

.kw-lnb-list {
    margin: 0;
    padding: 10px;
    list-style: none;
}

.kw-lnb-item {
    margin: 0;
    padding: 0;
}

.kw-lnb-link {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 15px;
    border-radius: 16px;
    color: #475569;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.35;
    letter-spacing: -0.035em;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.kw-lnb-link::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #cbd5e1;
    font-size: 12px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.kw-lnb-link:hover {
    transform: translateX(2px);
    background: #f1f6ff;
    color: #1f5fae;
}

.kw-lnb-link:hover::after {
    color: #1f5fae;
    transform: translateX(2px);
}

.kw-lnb-link.is-active {
    background: linear-gradient(135deg, #0b2a5b 0%, #1f5fae 100%);
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(31, 95, 174, 0.22);
}

.kw-lnb-link.is-active::after {
    color: rgba(255, 255, 255, 0.86);
}

/* ==========================================================================
   5. LNB SUPPORT BANNER - STATIC LUXURY CARD
   - 좌측 LNB 하단 정적 후원 카드
   - floating 방식 폐기
   - 본문/푸터 가림 없음
   - 모바일/인쇄 숨김
   ========================================================================== */

.kw-lnb-banner {
    position: static;
    width: 100%;
    margin-top: 0;
    overflow: hidden;
    border: 1px solid rgba(216, 190, 131, 0.30);
    border-radius: 28px;
    background:
        radial-gradient(circle at 16% 0%, rgba(216, 190, 131, 0.24), transparent 34%),
        radial-gradient(circle at 92% 100%, rgba(31, 95, 174, 0.22), transparent 42%),
        linear-gradient(145deg, #071a35 0%, #0b2a5b 50%, #123d78 100%);
    box-shadow:
        0 22px 58px rgba(15, 23, 42, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.13);
    color: #ffffff;
}

.kw-lnb-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 34%);
    background-size: 34px 34px, 34px 34px, auto;
    opacity: 0.55;
}

.kw-lnb-banner::after {
    content: "\f004";
    position: absolute;
    right: 18px;
    bottom: 14px;
    font-family: "Font Awesome 6 Free";
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.kw-lnb-banner a {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 178px;
    padding: 24px 22px 22px;
    color: #ffffff;
    text-decoration: none;
}

.kw-lnb-banner small {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    padding: 7px 12px;
    border: 1px solid rgba(216, 190, 131, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #d8be83;
    font-size: 11px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.kw-lnb-banner small::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #d8be83;
    box-shadow: 0 0 14px rgba(216, 190, 131, 0.76);
}

.kw-lnb-banner strong {
    display: block;
    color: #ffffff;
    font-size: 22px;
    font-weight: 950;
    line-height: 1.26;
    letter-spacing: -0.055em;
}

.kw-lnb-banner span {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.72;
    letter-spacing: -0.03em;
}

.kw-lnb-banner a::after {
    content: "후원 안내 바로가기  →";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 17px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.025em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.kw-lnb-banner:hover {
    border-color: rgba(216, 190, 131, 0.52);
    box-shadow:
        0 24px 64px rgba(15, 23, 42, 0.19),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.kw-lnb-banner a:hover strong {
    color: #f8e7b8;
}

.kw-lnb-banner a:hover::after {
    transform: translateY(-1px);
    background: #d8be83;
    color: #071a35;
}

@media (max-width: 960px) {
    .kw-lnb-banner {
        display: none;
    }
}

@media print {
    .kw-lnb-banner {
        display: none !important;
    }
}

/* ==========================================================================
   5. PAGE HEADER / MAIN BODY
   ========================================================================== */

.kw-page-header {
    margin-bottom: 22px;
    padding: 30px 34px;
    border: 1px solid rgba(203, 213, 225, 0.92);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(31, 95, 174, 0.09), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.06);
}

.kw-page-kicker {
    margin: 0 0 10px;
    color: #b9975b;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.kw-page-title {
    margin: 0;
    color: #071a35;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 950;
    line-height: 1.16;
    letter-spacing: -0.055em;
}

.kw-page-summary {
    max-width: 780px;
    margin: 15px 0 0;
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: -0.025em;
}

.kw-page-body {
    min-width: 0;
}


/* ==========================================================================
   6. CONTENT CARD
   ========================================================================== */

.kw-content-card {
    overflow: hidden;
    border: 1px solid rgba(203, 213, 225, 0.92);
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
}

.kw-content-inner {
    padding: 42px;
}

.kw-section {
    margin: 0;
}

.kw-section + .kw-section {
    margin-top: 46px;
    padding-top: 42px;
    border-top: 1px solid #e2e8f0;
}

.kw-section-title {
    position: relative;
    margin: 0 0 24px;
    padding-left: 18px;
    color: #071a35;
    font-size: 28px;
    font-weight: 950;
    line-height: 1.25;
    letter-spacing: -0.05em;
}

.kw-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 5px;
    height: 1.05em;
    border-radius: 99px;
    background: linear-gradient(180deg, #1f5fae 0%, #b9975b 100%);
}

.kw-prose {
    color: #334155;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: -0.025em;
}

.kw-prose p {
    margin: 0 0 18px;
}

.kw-prose p:last-child {
    margin-bottom: 0;
}

.kw-prose strong,
.kw-prose b {
    color: #071a35;
    font-weight: 900;
}

.kw-prose a {
    color: #1f5fae;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.kw-prose ul,
.kw-prose ol {
    margin: 18px 0;
    padding-left: 1.35em;
}

.kw-prose li {
    margin: 8px 0;
}

.kw-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
}


/* ==========================================================================
   7. BASIC CONTENT UTILITIES
   ========================================================================== */

.kw-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.kw-info-card {
    min-width: 0;
    padding: 22px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #f8fafc;
}

.kw-info-card strong {
    display: block;
    margin-bottom: 8px;
    color: #071a35;
    font-size: 17px;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.kw-info-card span,
.kw-info-card p {
    display: block;
    margin: 0;
    color: #64748b;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
}

.kw-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.kw-btn-primary,
.kw-btn-secondary {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.kw-btn-primary {
    background: #0b2a5b;
    color: #ffffff;
}

.kw-btn-primary:hover {
    transform: translateY(-1px);
    background: #1f5fae;
}

.kw-btn-secondary {
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #334155;
}

.kw-btn-secondary:hover {
    transform: translateY(-1px);
    border-color: #1f5fae;
    color: #1f5fae;
}


/* ==========================================================================
   8. RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
    .kw-page-layout {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 26px;
    }

    .kw-content-inner {
        padding: 34px;
    }
}

@media (max-width: 960px) {
    .kw-sub-hero-inner,
    .kw-breadcrumb-inner,
    .kw-page-shell {
        width: min(100% - 32px, 720px);
    }

.kw-sub-hero-inner {
    min-height: 138px;
    padding: 34px 0 32px;
}

    .kw-page-shell {
        padding: 38px 0 70px;
    }

    .kw-page-layout {
        display: block;
    }

    .kw-page-side {
        margin-bottom: 24px;
    }

    .kw-lnb {
        position: static;
    }

    .kw-lnb-card {
        border-radius: 24px;
    }

    .kw-lnb-title {
        padding: 20px;
        font-size: 20px;
    }

    .kw-lnb-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 10px;
    }

    .kw-lnb-link {
        min-height: 44px;
        font-size: 14px;
    }

    .kw-lnb-banner {
        display: none;
    }

    .kw-page-header {
        padding: 26px;
        border-radius: 26px;
    }

    .kw-content-card {
        border-radius: 28px;
    }

    .kw-content-inner {
        padding: 28px;
    }

    .kw-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .kw-sub-hero-inner,
    .kw-breadcrumb-inner,
    .kw-page-shell {
        width: calc(100% - 28px);
    }

.kw-sub-hero-inner {
    min-height: 126px;
    padding: 28px 0 26px;
}

    .kw-sub-title {
        font-size: 34px;
    }

    .kw-sub-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .kw-breadcrumb-list {
        min-height: 48px;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 13px;
    }

    .kw-page-shell {
        padding: 28px 0 56px;
    }

    .kw-lnb-list {
        grid-template-columns: 1fr;
    }

    .kw-page-header {
        margin-bottom: 16px;
        padding: 22px;
    }

    .kw-page-title {
        font-size: 29px;
    }

    .kw-page-summary {
        font-size: 15px;
    }

    .kw-content-inner {
        padding: 22px;
    }

    .kw-section-title {
        margin-bottom: 18px;
        font-size: 24px;
    }

    .kw-prose {
        font-size: 16px;
        line-height: 1.82;
    }
}


/* ==========================================================================
   FOOTER LIGHT MODAL - SUB PAGE SUPPORT
   - index.css에 있는 푸터 정책 모달 CSS를 서브페이지에서도 사용
   - 서브페이지는 index.css를 로드하지 않으므로 sub.css에 별도 포함
   ========================================================================== */

.kw-lightmodal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.kw-lightmodal.is-open {
    display: flex;
}

.kw-lightmodal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 26, 53, .62);
    backdrop-filter: blur(10px);
}

.kw-lightmodal-panel {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: min(82vh, 760px);
    overflow: hidden;
    border-radius: 2rem;
    background: #ffffff;
    box-shadow: 0 36px 120px rgba(7, 26, 53, .34);
}

.kw-lightmodal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #071A35, #0B2A5B);
    color: #ffffff;
}

.kw-lightmodal-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -.025em;
}

.kw-lightmodal-close {
    display: inline-flex;
    height: 2.35rem;
    width: 2.35rem;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #ffffff;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.kw-lightmodal-close:hover {
    background: rgba(255,255,255,.22);
    transform: rotate(4deg);
}

.kw-lightmodal-body {
    max-height: calc(min(82vh, 760px) - 78px);
    overflow-y: auto;
    padding: 1.5rem;
    color: #334155;
}

.kw-lightmodal-body h4 {
    margin-top: 1.15rem;
    font-size: .95rem;
    font-weight: 900;
    color: #071A35;
}

.kw-lightmodal-body h4:first-child {
    margin-top: 0;
}

.kw-lightmodal-body p,
.kw-lightmodal-body li {
    font-size: .9rem;
    line-height: 1.85;
}

.kw-lightmodal-body ul {
    margin-top: .55rem;
    padding-left: 1.1rem;
    list-style: disc;
}

@media print {
    .kw-lightmodal {
        display: none !important;
    }
}