
        /* ══════════════════════════════════════
           히어로
        ══════════════════════════════════════ */
        .hero-section-wide-bg {
            background-image:
                linear-gradient(135deg, rgba(10,20,40,0.92) 0%, rgba(15,40,80,0.80) 100%),
                url('https://images.unsplash.com/photo-1507692049790-de58290a4334?auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 100px 0 90px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        /* 배경 장식 원 */
        .hero-section-wide-bg::before {
            content: '';
            position: absolute; top: -120px; right: -120px;
            width: 500px; height: 500px; border-radius: 50%;
            background: rgba(59,130,246,0.08);
            pointer-events: none;
        }
        .hero-section-wide-bg::after {
            content: '';
            position: absolute; bottom: -80px; left: -80px;
            width: 360px; height: 360px; border-radius: 50%;
            background: rgba(255,255,255,0.04);
            pointer-events: none;
        }
        .hero-tint-box { max-width: 860px; position: relative; z-index: 1; }

        .hero-eyebrow {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(239,68,68,0.18); border: 1px solid rgba(239,68,68,0.4);
            color: #fca5a5; font-size: 12.5px; font-weight: 700;
            padding: 6px 16px; border-radius: 30px;
            margin-bottom: 24px; letter-spacing: 0.04em;
        }
        .hero-eyebrow i { font-size: 11px; }

        .hero-section-wide-bg h1 {
            font-size: 48px; font-weight: 700; color: white;
            letter-spacing: -1.5px; margin-bottom: 20px; line-height: 1.2;
            word-break: keep-all;
        }
        .hero-section-wide-bg h1 em {
            font-style: normal;
            background: linear-gradient(90deg, #60a5fa, #93c5fd);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .hero-section-wide-bg > .container > .hero-tint-box > p {
            font-size: 17px; color: #cbd5e1; line-height: 1.85;
            max-width: 680px; margin: 0 auto 36px; word-break: keep-all;
        }

        /* 히어로 버튼 */
        .hero-btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
        .hero-btn-primary {
            display: inline-flex; align-items: center; gap: 8px;
            background: white; color: #0f172a !important;
            padding: 14px 28px; border-radius: 10px;
            font-size: 15px; font-weight: 700; transition: 0.2s;
        }
        .hero-btn-primary:hover { background: #f1f5f9; transform: translateY(-2px); }
        .hero-btn-secondary {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(255,255,255,0.12); color: white !important;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 14px 28px; border-radius: 10px;
            font-size: 15px; font-weight: 700; transition: 0.2s;
        }
        .hero-btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

        /* 히어로 통계 */
        .hero-stats {
            display: flex; justify-content: center; gap: 0;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.14);
            border-radius: 16px; padding: 0; overflow: hidden;
            max-width: 680px; margin: 0 auto;
        }
        .hero-stat-item {
            flex: 1; padding: 22px 18px; text-align: center;
            border-right: 1px solid rgba(255,255,255,0.1);
        }
        .hero-stat-item:last-child { border-right: none; }
        .hero-stat-num { font-size: 26px; font-weight: 700; color: white; letter-spacing: -1px; }
        .hero-stat-label { font-size: 12px; color: #94a3b8; margin-top: 4px; line-height: 1.4; }

        /* ══════════════════════════════════════
           알림 배너
        ══════════════════════════════════════ */
        .notice-banner {
            background: #1f3b64; color: white;
            padding: 14px 0; text-align: center;
        }
        .notice-banner p {
            font-size: 13.5px; font-weight: 600; color: #cbd5e1;
            display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
        }
        .notice-banner a {
            color: #93c5fd; font-weight: 700; text-decoration: underline;
        }

        /* ══════════════════════════════════════
           섹션 공통
        ══════════════════════════════════════ */
        .section-eyebrow {
            display: inline-block;
            font-size: 12px; font-weight: 700;
            letter-spacing: 0.08em; color: #1f3b64;
            background: #dbeafe; padding: 5px 14px;
            border-radius: 20px; margin-bottom: 12px;
        }
        .content-section-title {
            font-size: 30px; font-weight: 700; color: #102a43;
            margin-bottom: 12px; text-align: center; letter-spacing: -0.5px;
        }
        .section-subtitle {
            font-size: 16px; color: #64748b; text-align: center;
            margin-bottom: 44px; line-height: 1.7; word-break: keep-all;
        }

        /* ══════════════════════════════════════
           핵심 쟁점 카드 (개선)
        ══════════════════════════════════════ */
        .issues-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 22px;
        }
        .issue-card {
            background: white; border: 1px solid #e2e8f0;
            border-radius: 16px; overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex; flex-direction: column;
        }
        .issue-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(31,59,100,0.10);
        }
        .issue-card-thumb {
            height: 160px; background-size: cover;
            background-position: center; position: relative;
        }
        .issue-card-thumb-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to bottom, transparent 40%, rgba(15,23,42,0.7) 100%);
        }
        .issue-card-num {
            position: absolute; top: 14px; left: 14px;
            background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35);
            color: white; font-size: 11px; font-weight: 700;
            padding: 4px 10px; border-radius: 20px; letter-spacing: 0.06em;
            backdrop-filter: blur(4px);
        }
        .issue-card-body { padding: 22px 22px 20px; flex: 1; display: flex; flex-direction: column; }
        .issue-card-icon {
            width: 40px; height: 40px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 17px; margin-bottom: 14px; flex-shrink: 0;
        }
        .issue-card-body h3 {
            font-size: 18px; font-weight: 700; color: #1f3b64;
            margin-bottom: 10px;
        }
        .issue-card-body p {
            font-size: 14px; color: #52606d;
            line-height: 1.7; word-break: keep-all; flex: 1;
        }
        .issue-card-link {
            display: inline-flex; align-items: center; gap: 6px;
            margin-top: 18px; font-size: 13px; font-weight: 700;
            color: #1f3b64; background: #f1f5f9;
            padding: 8px 14px; border-radius: 8px; transition: 0.15s;
        }
        .issue-card-link:hover { background: #dbeafe; color: #1e40af; }

        /* ══════════════════════════════════════
           대법원 판결 강조 배너
        ══════════════════════════════════════ */
        .verdict-highlight {
            background: linear-gradient(135deg, #1f3b64, #0f2744);
            color: white; border-radius: 20px;
            padding: 48px 52px; margin: 0;
            display: grid; grid-template-columns: 1fr auto;
            gap: 32px; align-items: center;
        }
        .vh-label {
            font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
            color: #60a5fa; margin-bottom: 14px;
        }
        .vh-quote {
            font-size: 22px; font-weight: 700; color: white;
            line-height: 1.55; letter-spacing: -0.5px; margin-bottom: 14px;
            word-break: keep-all;
        }
        .vh-cite { font-size: 13px; color: #93c5fd; }
        .vh-btn {
            display: inline-flex; align-items: center; gap: 7px;
            background: rgba(255,255,255,0.12); color: white !important;
            border: 1px solid rgba(255,255,255,0.25);
            padding: 12px 22px; border-radius: 10px;
            font-size: 13px; font-weight: 700;
            transition: 0.2s; white-space: nowrap;
        }
        .vh-btn:hover { background: rgba(255,255,255,0.22); }

        /* ══════════════════════════════════════
           사건 연표 — 가로 타임라인 (데스크톱) / 세로 (모바일)
        ══════════════════════════════════════ */
        .tl-scroll-wrap {
            overflow-x: auto; padding-bottom: 0;
            scrollbar-width: none;
        }
        .tl-scroll-wrap::-webkit-scrollbar { display: none; }

        /* 가로 리스트 */
        .timeline-h {
            list-style: none; display: flex; gap: 0;
            position: relative; min-width: max-content;
            padding: 180px 0 16px;
        }
        /* 가로 연결선 */
        .timeline-h::before {
            content: ''; position: absolute;
            top: 199px; left: 80px; right: 80px; height: 2px;
            background: linear-gradient(to right, #dbeafe 0%, #1f3b64 25%, #22c55e 75%, #dcfce7 100%);
            z-index: 0;
        }
        /* 각 항목 */
        .tl-h-item {
            position: relative; display: flex; flex-direction: column;
            align-items: center; width: 150px; flex-shrink: 0; padding: 0 8px;
        }
        /* 원 */
        .tl-h-dot {
            width: 40px; height: 40px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 14px; border: 2.5px solid; position: relative; z-index: 1;
            flex-shrink: 0; transition: transform 0.2s, box-shadow 0.2s;
            background: white;
        }
        .tl-h-item:hover .tl-h-dot { transform: scale(1.15); box-shadow: 0 4px 14px rgba(0,0,0,0.14); }
        .tl-h-dot.c-gray { background: #f1f5f9; border-color: #94a3b8; color: #64748b; }
        .tl-h-dot.c-blue { background: #dbeafe; border-color: #3b82f6; color: #1e40af; }
        .tl-h-dot.c-red  { background: #fee2e2; border-color: #ef4444; color: #b91c1c; }
        .tl-h-dot.c-ora  { background: #ffedd5; border-color: #f97316; color: #c2410c; }
        .tl-h-dot.c-grn  { background: #dcfce7; border-color: #22c55e; color: #166534; }
        /* 년도 */
        .tl-h-year {
            font-size: 11px; font-weight: 700; color: #1f3b64;
            letter-spacing: 0.03em; margin-top: 9px; text-align: center; white-space: nowrap;
        }
        /* 짧은 라벨 */
        .tl-h-label {
            font-size: 11.5px; font-weight: 600; color: #475569;
            text-align: center; margin-top: 5px; line-height: 1.4;
            word-break: keep-all; width: 134px;
        }
        /* 툴팁 — 위쪽으로 표시 */
        .tl-h-tooltip {
            display: none; position: absolute;
            bottom: 54px; top: auto;
            left: 50%; transform: translateX(-50%);
            background: #1f3b64; color: white;
            border-radius: 10px; padding: 12px 14px;
            width: 220px; font-size: 12.5px; line-height: 1.6;
            z-index: 100; pointer-events: none;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2); word-break: keep-all;
        }
        /* 아래쪽 화살표 */
        .tl-h-tooltip::before {
            content: ''; position: absolute;
            bottom: -6px; top: auto;
            left: 50%; transform: translateX(-50%);
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid #1f3b64;
            border-bottom: none;
        }
        .tl-h-tooltip strong { color: #93c5fd; display: block; margin-bottom: 4px; font-size: 12px; }
        .tl-h-item:hover .tl-h-tooltip { display: block; }
        /* 끝 두 항목은 오른쪽 기준으로 */
        .tl-h-item:nth-last-child(-n+2) .tl-h-tooltip { left: auto; right: 0; transform: none; }
        .tl-h-item:nth-last-child(-n+2) .tl-h-tooltip::before { left: auto; right: 20px; transform: none; }

        /* 더보기 */
        .tl-more-btn { display: flex; align-items: center; justify-content: center; margin-top: 20px; }
        .tl-more-link {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 11px 22px; background: white; border: 1px solid #e2e8f0;
            border-radius: 10px; font-size: 14px; font-weight: 700; color: #1f3b64; transition: 0.2s;
        }
        .tl-more-link:hover { background: #f1f5f9; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }

        /* 모바일 전용 — 데스크톱에서 숨김 */
        .tl-h-mobile-wrap { display: none; }

        /* ── 모바일: 세로 타임라인 전환 ── */
        @media (max-width: 768px) {
            .tl-scroll-wrap { overflow-x: visible; }
            .timeline-h { flex-direction: column; min-width: auto; padding: 0; }
            .timeline-h::before {
                top: 0; bottom: 0; left: 19px; right: auto;
                width: 2px; height: auto;
                background: linear-gradient(to bottom, #1f3b64, #dcfce7);
            }
            .tl-h-item {
                flex-direction: row; align-items: flex-start;
                width: auto; padding: 0 0 22px; gap: 14px;
            }
            .tl-h-item:last-child { padding-bottom: 0; }
            .tl-h-mobile-wrap { display: block; }
            .tl-h-year { display: none; }
            .tl-h-label { display: none; }
            .tl-h-tooltip { display: none !important; }
            .tl-h-mobile-wrap { padding-top: 6px; }
            .tl-h-mobile-year { font-size: 11px; font-weight: 700; color: #94a3b8; letter-spacing: 0.05em; margin-bottom: 3px; }
            .tl-h-mobile-detail { font-size: 12px; color: #64748b; margin-top: 4px; line-height: 1.55; }
        }

        /* ══════════════════════════════════════
           자료실 카드 (개선)
        ══════════════════════════════════════ */
        .docs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 22px;
        }
        .doc-card {
            background: white; border: 1px solid #e2e8f0;
            border-radius: 16px; overflow: hidden;
            transition: 0.2s; display: flex; flex-direction: column;
        }
        .doc-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.07); transform: translateY(-4px); }
        .doc-card-thumb {
            height: 165px; background-size: cover; background-position: center;
        }
        .doc-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
        .doc-card-badge {
            display: inline-block; font-size: 11px; font-weight: 700;
            padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
        }
        .doc-card-body h3 { font-size: 17px; font-weight: 700; color: #1f3b64; margin-bottom: 8px; }
        .doc-card-body p { font-size: 13.5px; color: #64748b; line-height: 1.65; word-break: keep-all; flex: 1; }
        .doc-card-btns {
            display: flex; gap: 10px; margin-top: 18px;
        }
        .doc-btn {
            flex: 1; text-align: center; padding: 9px 14px;
            border: 1px solid #e2e8f0; border-radius: 8px;
            font-size: 13px; font-weight: 600; color: #475569;
            transition: 0.15s;
        }
        .doc-btn:hover { background: #f1f5f9; color: #1f3b64; }
        .doc-btn.dark {
            background: #1f3b64; color: white !important;
            border-color: #1f3b64;
        }
        .doc-btn.dark:hover { background: #102a43; }

        /* ══════════════════════════════════════
           성경 배너
        ══════════════════════════════════════ */
        .bible-banner {
            background: linear-gradient(135deg, #1f3b64 0%, #0f2744 100%);
            border-radius: 20px; padding: 52px 40px;
            text-align: center; margin: 0;
        }
        .bible-banner blockquote {
            font-size: 24px; font-weight: 700; color: white;
            line-height: 1.65; letter-spacing: -0.5px; margin-bottom: 14px;
            word-break: keep-all;
        }
        .bible-banner cite {
            font-size: 14px; color: #93c5fd;
            font-style: normal; font-weight: 600;
        }

        /* ══════════════════════════════════════
           FAQ 미리보기 — 아코디언
        ══════════════════════════════════════ */
        .faq-preview-list { display: flex; flex-direction: column; gap: 10px; max-width: 860px; margin: 0 auto; }

        .faq-home-item {
            background: white; border: 1px solid #e2e8f0;
            border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s;
        }
        .faq-home-item:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.06); }
        .faq-home-item.open { box-shadow: 0 6px 20px rgba(31,59,100,0.10); border-color: #bfdbfe; }

        .faq-home-question {
            display: flex; align-items: center; gap: 14px;
            padding: 18px 20px; cursor: pointer;
            background: none; border: none; width: 100%; text-align: left;
        }
        .fq-q {
            width: 28px; height: 28px; border-radius: 8px;
            background: #dbeafe; color: #1e40af;
            font-size: 13px; font-weight: 700; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            transition: 0.2s;
        }
        .faq-home-item.open .fq-q { background: #1f3b64; color: white; }
        .fq-text {
            font-size: 15px; font-weight: 700; color: #1e293b;
            line-height: 1.55; word-break: keep-all; flex: 1;
        }
        .fq-arrow {
            color: #94a3b8; font-size: 13px; flex-shrink: 0;
            transition: transform 0.25s;
        }
        .faq-home-item.open .fq-arrow { transform: rotate(180deg); color: #1f3b64; }

        .faq-home-answer {
            max-height: 0; overflow: hidden;
            transition: max-height 0.35s ease;
            padding: 0 20px 0 62px;
        }
        .faq-home-item.open .faq-home-answer { max-height: 400px; padding: 0 20px 20px 62px; }
        .faq-home-answer-inner {
            font-size: 14.5px; color: #52606d; line-height: 1.85;
            word-break: keep-all; border-top: 1px solid #f1f5f9; padding-top: 14px;
        }
        .faq-home-answer-inner p + p { margin-top: 10px; }
        .faq-home-answer-inner strong { color: #1f3b64; }
        .faq-home-verdict {
            background: #eff6ff; border-left: 3px solid #3b82f6;
            border-radius: 0 8px 8px 0; padding: 10px 14px; margin: 12px 0;
            font-size: 13.5px; color: #1e40af; line-height: 1.7; word-break: keep-all;
        }
        .faq-more-link {
            display: inline-flex; align-items: center; gap: 5px;
            margin-top: 10px; font-size: 12.5px; font-weight: 700;
            color: #1f3b64; background: #f1f5f9; padding: 6px 12px;
            border-radius: 6px; transition: 0.15s;
        }
        .faq-more-link:hover { background: #e2e8f0; }
        .faq-home-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.fq-arrow {
    transition: transform 0.3s ease;
}

        /* ══════════════════════════════════════
           반응형
        ══════════════════════════════════════ */
        @media (max-width: 768px) {
            .hero-section-wide-bg h1 { font-size: 30px; }
            .hero-section-wide-bg { padding: 70px 0 60px; }
            .hero-stats { flex-wrap: wrap; }
            .hero-stat-item { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
            .verdict-highlight { grid-template-columns: 1fr; padding: 32px 24px; }
            .vh-quote { font-size: 18px; }
            .bible-banner blockquote { font-size: 19px; }
            .bible-banner { padding: 36px 24px; }
        }

