/*
Theme Name: Changwon Wedding Fair Child
Template: generatepress
Description: 창원 웨딩박람회 단독 자식 테마
Author: gluciferj
Version: 1.2.3
Text Domain: changwon-child
*/

:root {
    --color-primary: #201823;
    --color-accent: #FF2E7E;   /* 형광 핑크 (메인 포인트) */
    --color-accent2: #00E5A0;  /* 형광 민트 (서브 포인트) */
    --color-cream: #FBF9FB;
    --color-text: #332B31;
    --color-text-muted: #9A8F9C;
    --color-border: #F2E4EE;
    --color-white: #ffffff;
    --color-cta: #FF2E7E;
    --color-cta-hover: #E0195F;
    --shadow-card: 0 1px 3px rgba(32,24,35,0.04), 0 4px 14px rgba(32,24,35,0.06);
    --glow-accent: 0 0 22px rgba(255,46,126,0.38);
    --radius-card: 10px;
}

/* ============================================================
 * GeneratePress 헤더 통째로 제거
 * (SEO용 사이트 제목은 wp_title에 박힘, 시각적으론 숨김)
 * ============================================================ */
.site-header,
.site-branding,
.site-title,
.main-title,
.site-description,
.inside-header,
.header-wrap {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 본문 영역 상단 여백 제거 */
.site-content,
.site-main,
#page,
.entry-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* GeneratePress 블록 갭 제거 */
.wp-site-blocks > * {
    margin-block-start: 0 !important;
}

/* ============================================================
 * GeneratePress flex wrapper 무력화 — 섹션이 가로로 늘어서는 문제 방지
 * ============================================================ */
.site-main { display: block !important; }
.kt-page-content {
    display: block;
    width: 100%;
    flex: 1 1 100%;
    max-width: 100%;
}
.kt-page-content > section,
.kt-page-content > article {
    display: block;
    width: 100%;
    clear: both;
}

/* GeneratePress 기본 밑줄 제거 — 카드/CTA 안의 링크 깔끔하게 */
.kt-page-content a,
.kt-page-content a:hover,
.kt-cta,
.kt-cta:hover,
.kt-sticky-cta,
.kt-sticky-cta:hover,
.kt-session-card,
.kt-session-card:hover,
.kt-session-card * {
    text-decoration: none !important;
}
/* 단, 본문 콘텐츠(.kt-content) 안의 링크는 가독성 위해 밑줄 유지 */
.kt-content a { text-decoration: underline !important; }

body {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: var(--color-text);
    background: var(--color-cream);
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { letter-spacing: -0.02em; font-weight: 700; }

/* 히어로 — 좌측 정렬 + 네온 글로우 (센터형 자매 사이트와 차별화) */
.kt-hero {
    background: linear-gradient(120deg, #1B141E 0%, #35122B 55%, #551B41 100%);
    color: #fff;
    padding: 88px 32px 68px;
    text-align: left;
    margin-top: 24px;
    border-radius: 18px;
    border-bottom: 3px solid var(--color-accent);
    position: relative;
    overflow: hidden;
}
.kt-hero::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,46,126,0.28) 0%, transparent 68%);
    pointer-events: none;
}
.kt-hero h1 { font-size: 2.25rem; margin-bottom: 18px; line-height: 1.35; }
.kt-hero h1 .accent { color: var(--color-accent); text-shadow: 0 0 20px rgba(255,46,126,0.6); }
.kt-hero p { color: #d8ccd4; font-size: 1.05rem; line-height: 1.9; margin-bottom: 32px; }

.kt-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FF2E7E 0%, #FF7A59 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 16px 34px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.05rem;
    box-shadow: 0 6px 20px rgba(255,46,126,0.4), var(--glow-accent);
    transition: transform .15s, box-shadow .15s;
}
.kt-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,46,126,0.55), 0 0 34px rgba(255,46,126,0.45); color: #ffffff; }

.kt-session-list { max-width: 100%; margin: 36px 0 0; padding: 0; }
.kt-session-card,
.kt-session-card:hover,
.kt-session-card * {
    text-decoration: none !important;
}
.kt-session-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-card);
    padding: 18px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-card);
    display: flex;
    gap: 18px;
    align-items: center;
    transition: transform .15s, box-shadow .15s;
    color: var(--color-primary);
}
.kt-session-card .thumb {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}
.kt-session-card:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.05), 0 14px 30px rgba(255,46,126,0.14); }
.kt-session-card .thumb:not(.thumb-placeholder) { width: 120px; height: 120px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.kt-session-card .thumb-placeholder { width: 120px; height: 120px; border-radius: 12px; flex-shrink: 0; }
.kt-session-card .meta { flex: 1; }
.kt-session-card .title { font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; color: var(--color-primary); }
.kt-session-card .date { color: var(--color-text-muted); font-size: 0.9rem; }
.kt-session-card .badge {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-right: 4px;
}
.kt-session-card .badge.ended { background: #9ca3af; }
.kt-session-card .ticket-btn {
    background: var(--color-cta);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    flex-shrink: 0;
}
.kt-session-card .ticket-btn:hover { background: var(--color-cta-hover); color: #fff; }

/* 섹션 — 와이드 1060px 컬럼 + H2 좌측 정렬 + 핑크→민트 그라데이션 언더라인 */
.kt-section { max-width: 1060px; margin: 96px auto; padding: 0 20px; }
.kt-section h2 {
    text-align: left;
    font-size: 1.7rem;
    margin-bottom: 26px;
    color: var(--color-primary);
    position: relative;
}
.kt-section h2::after {
    content: '';
    display: block;
    width: 64px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent2));
    margin: 14px 0 0;
}

.kt-checklist-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.kt-checklist-item {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-accent);
    box-shadow: var(--shadow-card);
}
.kt-checklist-grid .kt-checklist-item:nth-child(even) { border-top-color: var(--color-accent2); }
.kt-checklist-item h3 { font-size: 1.05rem; margin-bottom: 12px; color: var(--color-primary); }
.kt-checklist-item p { color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.85; }

.kt-faq details {
    background: #fff;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-card);
    cursor: pointer;
}
.kt-faq summary {
    font-weight: 600;
    color: var(--color-primary);
    outline: none;
}
.kt-faq details[open] summary { color: var(--color-accent); }
.kt-faq details p { margin-top: 12px; color: var(--color-text); line-height: 1.7; }

.kt-sticky-cta {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: linear-gradient(135deg, #FF2E7E 0%, #FF7A59 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(32,24,35,0.2), var(--glow-accent);
}
.kt-sticky-cta:hover { color: #ffffff; }

/* ============================================================
 * 회차 단일 페이지 — 상단 배너 이미지
 * ============================================================ */
.kt-hero-banner {
    max-width: 1060px;
    margin: 0 auto 0;
    padding: 0 20px;
}
.kt-hero-banner img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    display: block;
}
.kt-hero-banner + .kt-hero-fair {
    margin-top: 24px;
}

/* ============================================================
 * 히어로 확장 — 통계 박스
 * ============================================================ */
.kt-hero-inner { max-width: 1020px; margin: 0 auto; position: relative; z-index: 1; }
.kt-hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 44px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.kt-hero-stats > div { text-align: left; color: #fff; }
.kt-hero-stats strong {
    display: block;
    font-size: 1.4rem;
    color: var(--color-accent2);
    font-weight: 700;
    text-shadow: 0 0 16px rgba(0,229,160,0.45);
}
.kt-hero-stats span {
    display: block;
    font-size: 0.85rem;
    color: #d1d5db;
    margin-top: 4px;
}
.kt-hero-fair { padding: 64px 24px 56px; }
.kt-hero-fair h1 { font-size: 1.9rem; line-height: 1.35; }
.kt-hero-meta {
    color: #F2E4EE;
    font-size: 1rem;
    margin: 8px 0;
}
.kt-hero-meta .ico { margin-right: 4px; }

/* ============================================================
 * 상태 뱃지
 * ============================================================ */
.kt-status-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.kt-status-badge.badge-upcoming { background: rgba(255,46,126,0.2); color: var(--color-accent); }
.kt-status-badge.badge-ongoing { background: rgba(0,201,141,0.2); color: #00C98D; }
.kt-status-badge.badge-ended { background: rgba(156,163,175,0.2); color: #9ca3af; }

.kt-session-card .badge.badge-upcoming { background: var(--color-accent); box-shadow: 0 0 12px rgba(255,46,126,0.4); }
.kt-session-card .badge.badge-ongoing { background: #00C98D; box-shadow: 0 0 12px rgba(0,201,141,0.4); }
.kt-session-card .badge.badge-ended { background: #9ca3af; }
.kt-session-card .badge-offer {
    display: inline-block;
    background: rgba(255,46,126,0.15);
    color: var(--color-accent);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 4px;
}
.kt-session-card .thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#201823,#551B41);
    color: var(--color-accent);
    font-size: 2rem;
}

/* ============================================================
 * 핵심 정보 카드 (4컬럼)
 * ============================================================ */
.kt-info-grid {
    max-width: 1060px;
    margin: 32px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.kt-info-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 22px 16px;
    text-align: center;
    box-shadow: var(--shadow-card);
}
.kt-info-icon { font-size: 1.8rem; margin-bottom: 8px; }
.kt-info-card h3 {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}
.kt-info-card p { color: var(--color-primary); font-weight: 700; font-size: 0.95rem; }

/* ============================================================
 * 방문 가이드 (번호 스텝)
 * ============================================================ */
.kt-guide-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}
.kt-guide-steps li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    padding: 22px;
    border-radius: var(--radius-card);
    margin-bottom: 12px;
    box-shadow: var(--shadow-card);
}
.kt-guide-steps .num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.kt-guide-steps h3 {
    font-size: 1.05rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}
.kt-guide-steps p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
 * 정보 테이블
 * ============================================================ */
.kt-info-table {
    width: 100%;
    background: #fff;
    border-radius: var(--radius-card);
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.kt-info-table th, .kt-info-table td {
    padding: 17px 20px;
    text-align: left;
    line-height: 1.8;
    border-bottom: 1px solid var(--color-border);
}
.kt-info-table tr:last-child th, .kt-info-table tr:last-child td { border-bottom: none; }
.kt-info-table th {
    background: #FBF7F9;
    color: var(--color-primary);
    width: 30%;
    font-weight: 600;
    font-size: 0.93rem;
}
.kt-info-table td { color: var(--color-text); font-size: 0.93rem; }

/* ============================================================
 * 본문 콘텐츠 (단일 회차 페이지)
 * ============================================================ */
.kt-content {
    background: #fff;
    padding: 36px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    line-height: 1.95;
}
.kt-content h2 { font-size: 1.3rem; margin: 28px 0 14px; color: var(--color-primary); }
.kt-content h3 { font-size: 1.1rem; margin: 22px 0 10px; color: var(--color-primary); }
.kt-content p { margin-bottom: 16px; color: var(--color-text); }
.kt-content ul, .kt-content ol { padding-left: 24px; margin-bottom: 16px; }
.kt-content li { margin-bottom: 6px; }

/* ============================================================
 * 일정 섹션 스포트라이트 (사이트의 메인 상품 강조)
 * ============================================================ */
.kt-schedule-spotlight {
    max-width: 1060px;
    margin: 56px auto !important;
    padding: 48px 36px 40px !important;
    background: linear-gradient(180deg, #fff 0%, #FFF3F8 100%);
    border: 1.5px solid rgba(255,46,126,0.25);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255,46,126,0.12);
    position: relative;
}
.kt-schedule-spotlight::before {
    content: '';
    position: absolute;
    top: -1.5px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}
.kt-spotlight-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-accent2);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}
.kt-schedule-spotlight h2 {
    font-size: 1.85rem !important;
    margin-bottom: 10px !important;
    color: var(--color-primary);
    text-align: left;
}
.kt-schedule-spotlight h2::after {
    display: none;
}
.kt-spotlight-sub {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 34px;
}
.kt-schedule-spotlight .kt-section-intro {
    margin-bottom: 28px;
}
.kt-schedule-spotlight + section { margin-top: 64px; }

/* 스포트라이트 안의 카드는 더 크고 눈에 띄게 */
.kt-schedule-spotlight .kt-session-list {
    max-width: 100%;
    margin: 0;
    padding: 0;
}
.kt-schedule-spotlight .kt-session-card {
    padding: 22px;
    border: 2px solid transparent;
    transition: all .25s ease;
    margin-bottom: 16px;
}
.kt-schedule-spotlight .kt-session-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 16px 36px rgba(255,46,126,0.18);
}
.kt-schedule-spotlight .kt-session-card .thumb:not(.thumb-placeholder) {
    width: 140px;
    height: 140px;
    border-radius: 14px;
}
.kt-schedule-spotlight .kt-session-card .thumb-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 14px;
}
.kt-schedule-spotlight .kt-session-card .title {
    font-size: 1.15rem;
    margin-bottom: 8px;
    line-height: 1.4;
}
.kt-schedule-spotlight .kt-session-card .date {
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.kt-schedule-spotlight .kt-session-card .badge {
    font-size: 0.82rem;
    padding: 5px 14px;
}
.kt-schedule-spotlight .kt-session-card .ticket-btn {
    background: linear-gradient(135deg, var(--color-accent) 0%, #FF7A59 100%);
    padding: 14px 24px;
    font-size: 0.98rem;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(255,46,126,0.35);
    border-radius: 10px;
}
.kt-schedule-spotlight .kt-session-card .ticket-btn:hover {
    box-shadow: 0 10px 26px rgba(255,46,126,0.5);
    transform: translateY(-1px);
}

/* D-day 뱃지에 미세한 펄스 (다가오는 회차만) */
.kt-schedule-spotlight .badge.badge-upcoming {
    animation: kt-pulse 2.5s ease-in-out infinite;
}
@keyframes kt-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,46,126,0.55); }
    50% { box-shadow: 0 0 0 8px rgba(255,46,126,0); }
}

/* 모바일 반응형 */
@media (max-width: 640px) {
    .kt-schedule-spotlight {
        margin: 32px 16px !important;
        padding: 26px 18px 20px !important;
        border-radius: 16px;
        max-width: calc(100% - 32px);
    }
    .kt-schedule-spotlight h2 { font-size: 1.4rem !important; }
    .kt-spotlight-badge { font-size: 0.72rem; padding: 5px 12px; }
    .kt-spotlight-sub { font-size: 0.85rem; margin-bottom: 22px; }
    .kt-schedule-spotlight .kt-session-card {
        padding: 16px;
    }
    .kt-schedule-spotlight .kt-session-card .thumb:not(.thumb-placeholder),
    .kt-schedule-spotlight .kt-session-card .thumb-placeholder {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        max-width: 100%;
    }
    .kt-schedule-spotlight .kt-session-card .title { font-size: 1.05rem; }
}

/* ============================================================
 * 섹션 인트로 텍스트 (체크리스트 도입 문단)
 * ============================================================ */
.kt-section-intro {
    max-width: 100%;
    margin: 0 0 40px;
    padding: 0;
    text-align: left;
    color: var(--color-text-muted);
    line-height: 1.95;
    font-size: 1rem;
}
.kt-section-intro strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* 출처 인용 (작게, 우측 정렬) */
.kt-source-cite {
    max-width: 740px;
    margin: 16px auto 0;
    padding: 0 16px;
    color: #94a3b8;
    font-size: 0.78rem;
    text-align: right;
    font-style: italic;
}

/* 경고 카드 (계약 시 주의사항용) */
.kt-checklist-item.kt-warning {
    border-left-color: #dc2626;
    background: linear-gradient(180deg, #fff 0%, #fef2f2 100%);
}
.kt-checklist-item.kt-warning h3 {
    color: #b91c1c;
}

/* 비교 테이블 (박람회 vs 개별견적) */
.kt-info-table.kt-compare-table thead {
    background: var(--color-primary);
    color: #fff;
}
.kt-info-table.kt-compare-table thead th {
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    padding: 14px 16px;
    text-align: left;
}
.kt-info-table.kt-compare-table thead th:nth-child(2) {
    color: var(--color-accent2);
}
.kt-info-table.kt-compare-table tbody th {
    background: #FBF7F9;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    width: 24%;
}
.kt-info-table.kt-compare-table tbody td {
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ============================================================
 * 블로그 글 본문 스타일 (post 타입 single 페이지)
 * H2/H3 꾸미기 + 이미지 여백 + 인용·표·목록 톤 통일
 * ============================================================ */
/* 글 전체(제목·대표이미지·본문·메타)를 한 컬럼으로 정렬 — 가로폭 통일 */
.single-post .inside-article {
    max-width: 880px;
    margin: 0 auto;
    padding: 44px 20px 60px;
}
.single-post .entry-header {
    margin-bottom: 12px;
}
.single-post .entry-title {
    font-size: 1.85rem;
    line-height: 1.35;
    color: var(--color-primary);
}
.single-post .entry-content {
    line-height: 1.95;
    font-size: 1.02rem;
    color: var(--color-text);
}

/* 모든 블록 요소 기본 여백 */
.single-post .entry-content > * {
    margin-top: 24px;
    margin-bottom: 0;
}
.single-post .entry-content > *:first-child {
    margin-top: 0;
}

/* H2 — 골드 좌측 막대 (정세라 스타일 + 우리 톤) */
.single-post .entry-content h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 44px 0 16px !important;
    line-height: 1.4;
    padding: 0;
    border: none;
}
.single-post .entry-content h2::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 26px;
    background: var(--color-accent);
    border-radius: 3px;
    flex-shrink: 0;
}
.single-post .entry-content h2::after { display: none; }

/* H3 — 골드 밑줄 */
.single-post .entry-content h3 {
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 28px 0 10px !important;
    padding-bottom: 6px;
    line-height: 1.4;
    border-bottom: 2px solid var(--color-accent);
}

/* H4 — 차콜 점 */
.single-post .entry-content h4 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 32px 0 12px !important;
    padding-left: 14px;
    border-left: 3px solid var(--color-primary);
    line-height: 1.5;
}

/* 문단 */
.single-post .entry-content p {
    margin: 19px 0;
}

/* 이미지 — 위아래 여백 + 둥근 모서리 + 미세한 그림자 */
.single-post .entry-content img,
.single-post .entry-content .wp-block-image {
    margin: 28px auto !important;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: block;
    max-width: 100%;
    height: auto;
}
.single-post .entry-content figure {
    margin: 36px auto !important;
}
.single-post .entry-content figure img {
    margin: 0 auto !important;
}
.single-post .entry-content figcaption {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.88rem;
    margin-top: 10px;
}

/* 인용문 — 골드 좌측 + 크림 배경 */
.single-post .entry-content blockquote {
    background: linear-gradient(180deg, #fff 0%, #FFF3F8 100%);
    border-left: 4px solid var(--color-accent);
    padding: 20px 24px;
    margin: 32px 0 !important;
    border-radius: 0 12px 12px 0;
    color: var(--color-text);
    font-style: normal;
}
.single-post .entry-content blockquote p {
    margin: 8px 0;
}

/* 목록 */
.single-post .entry-content ul,
.single-post .entry-content ol {
    margin: 20px 0;
    padding-left: 28px;
}
.single-post .entry-content li {
    margin-bottom: 12px;
    line-height: 1.9;
}
.single-post .entry-content ul li::marker {
    color: var(--color-accent);
}

/* 강조 텍스트 */
.single-post .entry-content strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* 본문 링크 — 골드 + 밑줄 살짝 띄움 */
.single-post .entry-content a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color .15s;
}
.single-post .entry-content a:hover {
    color: var(--color-cta-hover);
}

/* 테이블 — 깔끔한 카드형 */
.single-post .entry-content table {
    width: 100%;
    margin: 28px 0 !important;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    font-size: 0.95rem;
}
.single-post .entry-content table th {
    background: var(--color-primary);
    color: #fff;
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid var(--color-primary);
}
.single-post .entry-content table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-border);
}
.single-post .entry-content table tr:last-child td {
    border-bottom: none;
}
.single-post .entry-content table tr:nth-child(even) td {
    background: #FBF7F9;
}

/* 구분선 */
.single-post .entry-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    margin: 48px 0 !important;
}

/* 첫 단락 강조 (리드 문단) */
.single-post .entry-content > p:first-of-type {
    font-size: 1.08rem;
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.75;
}

/* 모바일 반응형 */
@media (max-width: 640px) {
    .single-post .entry-content {
        font-size: 0.98rem;
        padding: 0 14px;
    }
    .single-post .entry-content h2 {
        font-size: 1.3rem;
        margin: 44px 0 16px !important;
    }
    .single-post .entry-content h2::before { height: 22px; }
    .single-post .entry-content h3 {
        font-size: 1.1rem;
        margin: 32px 0 14px !important;
    }
    .single-post .entry-content img,
    .single-post .entry-content figure,
    .single-post .entry-content .wp-block-image {
        margin: 28px auto !important;
        border-radius: 10px;
    }
    .single-post .entry-content blockquote {
        padding: 16px 18px;
        margin: 24px 0 !important;
    }
    .single-post .entry-content table {
        font-size: 0.88rem;
    }
    .single-post .entry-content table th,
    .single-post .entry-content table td {
        padding: 10px 12px;
    }
}

/* ============================================================
 * 마지막 CTA
 * ============================================================ */
.kt-final-cta {
    text-align: center;
    background: linear-gradient(120deg, #1B141E 0%, #35122B 55%, #551B41 100%);
    color: #fff;
    padding: 60px 24px;
    border-radius: 18px;
    border-bottom: 3px solid var(--color-accent);
    margin: 92px 16px;
}
.kt-final-cta h2 { color: #fff; font-size: 1.5rem; text-align: center; }
.kt-final-cta h2::after { margin-left: auto; margin-right: auto; }
.kt-final-cta p { color: #d8ccd4; line-height: 1.9; margin: 18px 0 30px; }

/* ============================================================
 * 모바일 반응형
 * ============================================================ */
@media (max-width: 640px) {
    .kt-hero { padding: 56px 20px 48px; }
    .kt-hero h1 { font-size: 1.7rem; }
    .kt-hero-fair h1 { font-size: 1.5rem; }
    .kt-hero-stats { gap: 16px; }
    .kt-hero-stats strong { font-size: 1.1rem; }
    .kt-hero-stats span { font-size: 0.75rem; }
    .kt-checklist-grid { grid-template-columns: 1fr; }
    .kt-info-grid { grid-template-columns: repeat(2, 1fr); }
    .kt-session-card { flex-direction: column; align-items: stretch; text-align: center; }
    .kt-session-card .thumb:not(.thumb-placeholder),
    .kt-session-card .thumb-placeholder {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .kt-session-card .ticket-btn { margin-top: 8px; }
    .kt-hero-banner img { max-height: 280px; }
    .kt-info-table th { width: 35%; font-size: 0.85rem; padding: 12px 10px; }
    .kt-info-table td { font-size: 0.88rem; padding: 12px 10px; }
    .kt-info-table.kt-compare-table tbody th { width: 30%; font-size: 0.8rem; padding: 10px 8px; }
    .kt-info-table.kt-compare-table tbody td { font-size: 0.82rem; padding: 10px 8px; }
    .kt-section-intro { font-size: 0.9rem; padding: 0 20px; }
    .kt-source-cite { font-size: 0.72rem; padding: 0 20px; }
    .kt-content { padding: 22px; }
    .kt-guide-steps li { padding: 18px; }
}
/* ============================================================
 * 창원 고유 컴포넌트
 * ============================================================ */

/* 한눈에 요약 — 다크 카드 + 네온 라벨 (화이트 노트형과 차별화) */
.kt-tldr {
    max-width: 1060px;
    margin: 30px auto 0;
    padding: 26px 32px;
    background: var(--color-primary);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(32,24,35,0.22);
}
.kt-tldr ul { margin: 0; padding: 0; list-style: none; }
.kt-tldr li {
    padding: 9px 0;
    font-size: 0.97rem;
    color: #EDE4EA;
    line-height: 1.85;
    border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.kt-tldr li:last-child { border-bottom: none; }
.kt-tldr li strong { color: var(--color-accent2); font-weight: 700; margin-right: 6px; }

/* 장소별 카드 — 와이드 4열 */
.kt-place-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1024px) { .kt-place-grid { grid-template-columns: repeat(2, 1fr); } }
.kt-place-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 22px;
    box-shadow: var(--shadow-card);
}
.kt-place-tag {
    display: inline-block;
    background: #E9FBF4;
    color: #00A876;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 6px;
    margin-bottom: 12px;
}
.kt-place-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--color-primary); }
.kt-place-card p { color: var(--color-text-muted); font-size: 0.92rem; line-height: 1.8; }

/* 방문 동선 시간표 */
.kt-timetable { margin: 0; padding: 0; list-style: none; }
.kt-timetable li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-card);
}
.kt-timetable .tt-time {
    flex-shrink: 0;
    min-width: 64px;
    text-align: center;
    background: linear-gradient(135deg, #FF2E7E, #FF7A59);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 9px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(255,46,126,0.3);
}
.kt-timetable div { font-size: 0.94rem; line-height: 1.85; color: var(--color-text); }
.kt-timetable strong { color: var(--color-primary); }

/* 웨딩홀 문답 */
.kt-qa-list { max-width: 100%; margin: 0; }
.kt-qa-item { margin-bottom: 18px; }
.kt-qa-q {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
    font-size: 1.0rem;
}
.kt-qa-q::before { content: 'Q. '; color: var(--color-accent); }
.kt-qa-a {
    background: #fff;
    border-left: 3px solid var(--color-border);
    padding: 12px 16px;
    border-radius: 0 10px 10px 0;
    color: var(--color-text);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* 계약 전 확인 시트 (체크박스형) */
.kt-check-sheet { margin: 0; padding: 0; list-style: none; }
.kt-check-sheet { max-width: 100%; margin: 0; }
.kt-check-sheet li {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 18px 20px 18px 56px;
    margin-bottom: 14px;
    font-size: 0.94rem;
    line-height: 1.85;
    color: var(--color-text);
}
.kt-check-sheet li::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 21px;
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-accent);
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0 8px rgba(255,46,126,0.25);
}

/* 방면별 교통 리스트 */
.kt-route-list { margin: 0; padding: 0; list-style: none; }
.kt-route-list li {
    background: #fff;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-card);
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--color-text);
}
.kt-route-list li strong { display: block; color: var(--color-primary); margin-bottom: 3px; }

/* 예물·혼수 요약 노트 */
.kt-mini-note {
    max-width: 100%;
    margin: 0;
    background: #fff;
    border: 1px dashed rgba(255,46,126,0.35);
    border-radius: 12px;
    padding: 24px 28px;
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.9;
}

/* 회차 카드 장소 라벨 */
.kt-session-card .venue { color: var(--color-text-muted); font-size: 0.85rem; margin: 2px 0 4px; }

/* 모바일 */
@media (max-width: 720px) {
    .kt-place-grid { grid-template-columns: 1fr; }
    .kt-tldr { margin: 20px 16px 0; }
    .kt-timetable li { flex-direction: column; gap: 8px; }
}

/* ============================================================
 * v1.3.1 — 회차 포스터 (1:1 정사각, 본문 위)
 * ============================================================ */
.kt-session-poster {
    max-width: 520px;
    margin: 44px auto 0;
    padding: 0 16px;
}
.kt-session-poster img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    display: block;
}

/* ============================================================
 * v1.4.1 — 글 FAQ 카드 박스 (Q1. Q2. 넘버링)
 * ============================================================ */
/* FAQ 카드 — 전역 (글·회차·월별 캘린더 공통) */
.kt-faq-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 16px 0 !important;
    max-width: 100%;
    box-shadow: var(--shadow-card);
    text-align: left;
}
.kt-faq-card h3 {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: none !important;
    display: block;
    font-size: 1.06rem;
    line-height: 1.5;
    text-align: left;
    color: var(--color-primary);
}
.kt-faq-num {
    color: var(--color-accent);
    margin-right: 6px;
}
.kt-faq-card p {
    margin: 12px 0 0;
    line-height: 1.9;
    text-align: left;
    color: var(--color-text);
}

/* ============================================================
 * v1.4.3 — 회차 카드 장소 라벨 + 월별 빈 회차 블록
 * ============================================================ */
.kt-session-card .venue { color: var(--color-text-muted); font-size: 0.85rem; margin: 2px 0 4px; }
.kt-month-empty {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
}
.kt-month-empty p { color: var(--color-text-muted); line-height: 1.7; margin: 0 0 16px; }
.kt-month-nav {
    text-align: center;
    margin: 8px 0 32px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}
.kt-month-nav a { color: var(--color-accent); font-weight: 600; margin: 0 6px; }
.kt-month-nav a.current { color: var(--color-primary); text-decoration: underline; }

/* ============================================================
 * v1.4.4 — 월별 일정 페이지(WP Page) 본문 폭·타이포
 * ============================================================ */
.page .inside-article { max-width: 880px; margin: 0 auto; padding: 44px 20px 60px; }
.page .entry-title { font-size: 1.85rem; line-height: 1.35; color: var(--color-primary); margin-bottom: 10px; }
.page .entry-content { line-height: 1.95; color: var(--color-text); font-size: 1.02rem; }
.page .entry-content h2 { font-size: 1.4rem; color: var(--color-primary); margin: 40px 0 14px; padding-left: 12px; border-left: 5px solid var(--color-accent); }
.page .entry-content p { margin: 14px 0; }
.page .entry-content a { color: var(--color-accent); font-weight: 600; }

/* ============================================================
 * v1.4.5 — 월별 캘린더 (12버튼 그리드 + 월 페이지)
 * ============================================================ */
.kt-month-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 24px 0 0;
    padding: 0;
}
.kt-month-grid a {
    display: block;
    text-align: center;
    padding: 14px 0;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    color: var(--color-primary);
    font-weight: 600;
    box-shadow: var(--shadow-card);
    transition: transform .15s, border-color .15s, color .15s;
    text-decoration: none;
}
.kt-month-grid a:hover { border-color: var(--color-accent); color: var(--color-accent); transform: translateY(-2px); }
.kt-month-grid a.current { background: linear-gradient(135deg, #FF2E7E, #FF7A59); color: #fff; border-color: transparent; box-shadow: 0 4px 14px rgba(255,46,126,0.35); }
@media (max-width: 600px) { .kt-month-grid { grid-template-columns: repeat(4, 1fr); } }
.kt-tips { max-width: 100%; margin: 0; padding-left: 22px; }
.kt-tips li { margin: 12px 0; line-height: 1.9; }
.kt-tips li::marker { color: var(--color-accent); }
.kt-calendar-page .kt-hero h1 { font-size: 2rem; }

/* ============================================================
 * v1.4.6 — 월별 캘린더 예식 장단점 2단 박스
 * ============================================================ */
.kt-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 100%; margin: 0; }
.kt-proscons > div { background: #fff; border: 1px solid var(--color-border); border-radius: 12px; padding: 18px 20px; box-shadow: var(--shadow-card); }
.kt-proscons h3 { font-size: 1.05rem; margin: 0 0 10px; }
.kt-pros h3 { color: #15803d; }
.kt-cons h3 { color: #b91c1c; }
.kt-proscons ul { margin: 0; padding-left: 18px; }
.kt-proscons li { margin: 9px 0; line-height: 1.8; color: var(--color-text); }
@media (max-width: 600px) { .kt-proscons { grid-template-columns: 1fr; } }

/* ============================================================
 * v1.4.7 — 월별 캘린더 페이지 본문 톤을 홈과 통일
 * ============================================================ */
.kt-calendar-page .kt-section { max-width: 1060px; }
.kt-calendar-page .kt-section > p {
    max-width: 100%;
    margin: 16px 0;
    line-height: 1.95;
    color: var(--color-text);
    text-align: left;
}
.kt-calendar-page .kt-section > p a,
.kt-proscons a,
.kt-tips a { color: var(--color-accent); font-weight: 600; }
.kt-calendar-page .kt-tips,
.kt-calendar-page .kt-proscons { text-align: left; }
/* 히어로 내부 요소는 전부 좌측 라인 통일 (제목·리드·CTA·스탯) */
.kt-calendar-page .kt-hero p { max-width: 720px; margin-left: 0; margin-right: 0; }

/* ============================================================
 * v1.4.8 — 회차 자기완결 리드 문장 (AEO)
 * ============================================================ */
.kt-lead-wrap { max-width: 1060px; margin: 40px auto 0; padding: 0 20px; }
.kt-lead {
    background: #fff;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-accent2);
    border-radius: 12px;
    padding: 24px 26px;
    font-size: 1.05rem;
    line-height: 1.95;
    color: var(--color-text);
    margin: 0;
}

/* ============================================================
 * v1.5.0 — 회차 카드 정보밀도 (주소 · 구체 혜택 한줄)
 * ============================================================ */
.kt-session-card .addr {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    margin: 2px 0 4px;
    line-height: 1.4;
}
.kt-session-card .offer-line {
    display: block;
    width: fit-content;
    max-width: 100%;
    background: #FFE9F2;
    color: #E0195F;
    font-size: 0.83rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    margin: 6px 0;
    line-height: 1.4;
}
/* 배지 줄 — 혜택 아래에 D-day·초대권 배지가 나란히 정렬되도록 */
.kt-session-card .meta .badge {
    margin-top: 2px;
    vertical-align: middle;
}
.kt-session-card .badge-offer {
    vertical-align: middle;
}

/* ── 키워드 내비 (v1.6.0) — 헤더 아래 밑줄형 바 ── */
.kt-keyword-nav {
    background: #fff;
    border-bottom: 1px solid #F2E4EE;
}
.kt-keyword-nav-in {
    /* 본문 컬럼(.kt-section 820px + 패딩 16px)과 좌측 라인 정렬 */
    max-width: 820px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.kt-keyword-nav-in::-webkit-scrollbar { display: none; }
.kt-keyword-nav a {
    flex: 0 0 auto;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #9A8F9C;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}
.kt-keyword-nav a:hover { color: #4E5968; }
/* 홈(브랜드) — 상시 블루 포인트, 본문 좌측 라인과 텍스트 시작점 일치 */
.kt-keyword-nav a.brand {
    font-size: 15px;
    font-weight: 800;
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
    padding-left: 0;
}
.kt-keyword-nav a.brand:hover { color: var(--color-accent); }
/* 나머지 항목의 현재 페이지 표시 — 채도 죽인 다크그레이 */
.kt-keyword-nav a.cur {
    color: #333D4B;
    font-weight: 700;
    border-bottom-color: #D1D6DB;
}
@media (max-width: 640px) {
    .kt-keyword-nav a { padding: 11px 10px; font-size: 13px; }
    .kt-keyword-nav a.brand { font-size: 14px; }
}

/* ── 허브 페이지 (v1.6.3) — 체크 박스그리드·관련글 카드·마감 CTA ── */
.kt-hub-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 100%;
    margin: 0;
}
.kt-hub-boxes > div {
    background: #fff;
    border: 1px solid #F2E4EE;
    border-radius: 12px;
    padding: 18px 20px;
}
.kt-hub-boxes h3 { margin: 0 0 8px; font-size: 1rem; color: var(--color-primary); }
.kt-hub-boxes p { margin: 0; font-size: 0.92rem; line-height: 1.85; color: var(--color-text); }
@media (max-width: 600px) { .kt-hub-boxes { grid-template-columns: 1fr; } }

.kt-related { display: grid; gap: 14px; max-width: 100%; margin: 0; grid-template-columns: 1fr 1fr; }
@media (max-width: 720px) { .kt-related { grid-template-columns: 1fr; } }
.kt-related-item {
    display: block;
    background: #fff;
    border: 1px solid #F2E4EE;
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    transition: border-color .15s ease;
}
.kt-related-item:hover { border-color: var(--color-accent); }
.kt-related-item strong { display: block; color: var(--color-primary); font-size: 0.98rem; margin-bottom: 6px; }
.kt-related-item span { color: var(--color-text-muted); font-size: 0.88rem; line-height: 1.75; }

.kt-hub-cta {
    background: linear-gradient(180deg, #FFE9F2 0%, #E9FBF4 100%);
    border: 1px solid rgba(255,46,126,0.18);
    border-radius: 16px;
    padding: 44px 28px;
    text-align: center;
    max-width: 100%;
    margin: 0;
}
.kt-hub-cta h2 { margin: 0 0 12px; text-align: center; }
.kt-hub-cta h2::after { margin-left: auto; margin-right: auto; }
.kt-hub-cta p { color: var(--color-text); line-height: 1.85; margin: 0 auto 22px; max-width: 560px; }

/* ── 월별 캘린더 인덱스 (v1.6.4) — 이번 달 달력 그리드 ── */
.kt-cal-grid {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 4px;
    table-layout: fixed;
}
.kt-cal-grid th {
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-align: center;
}
.kt-cal-grid th.sun { color: #E5484D; }
.kt-cal-grid th.sat { color: var(--color-accent); }
.kt-cal-grid td {
    background: #fff;
    border: 1px solid #F2E4EE;
    border-radius: 10px;
    vertical-align: top;
    padding: 8px 6px;
    height: 74px;
}
.kt-cal-grid td.empty { background: transparent; border-color: transparent; }
.kt-cal-grid td .day { display: block; font-size: 0.85rem; font-weight: 600; color: var(--color-text); margin-bottom: 2px; }
.kt-cal-grid td.sun .day { color: #E5484D; }
.kt-cal-grid td.sat .day { color: var(--color-accent); }
.kt-cal-grid td.today { border-color: var(--color-accent); box-shadow: 0 0 0 1px var(--color-accent) inset; }
.kt-cal-grid .ev {
    display: block;
    font-size: 0.72rem;
    line-height: 1.35;
    background: #FFE9F2;
    color: var(--color-accent);
    border-radius: 6px;
    padding: 3px 5px;
    margin-top: 3px;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.kt-cal-grid .ev:hover { background: var(--color-accent); color: #fff; }
.kt-cal-note { text-align: left; color: var(--color-text-muted); font-size: 0.88rem; margin-top: 14px; }
.kt-cal-months { grid-template-columns: 1fr 1fr; }

/* ── v1.6.5 — 캘린더 와이드 섹션 + 허브·캘린더 페이지 H2 좌측 정렬 ── */
.kt-section.kt-section-wide { max-width: 1140px; }
.kt-section-wide .kt-cal-grid { max-width: 1100px; }
.kt-section-wide .kt-cal-grid td { height: 96px; }
.kt-calendar-page .kt-section h2 { text-align: left; }
.kt-calendar-page .kt-section h2::after { margin-left: 0; }
/* 마감 CTA 박스만 가운데 유지 */
.kt-calendar-page .kt-hub-cta h2 { text-align: center; }
.kt-calendar-page .kt-hub-cta h2::after { margin-left: auto; }
@media (max-width: 640px) {
    .kt-section-wide .kt-cal-grid td { height: 54px; }
}
@media (max-width: 640px) {
    .kt-cal-grid { border-spacing: 2px; }
    .kt-cal-grid td { height: 54px; padding: 5px 3px; border-radius: 6px; }
    .kt-cal-grid .ev {
        font-size: 0;
        height: 6px;
        width: 6px;
        padding: 0;
        border-radius: 50%;
        margin: 4px auto 0;
        background: var(--color-accent);
    }
    .kt-cal-months { grid-template-columns: 1fr; }
}


/* ============================================================
 * v1.1.0 — 네온 리디자인 보완 (여백 리듬·모바일)
 * ============================================================ */
.kt-guide-steps p { line-height: 1.8; }
.kt-qa-a { line-height: 1.85; }
.kt-route-list li { line-height: 1.85; padding: 17px 20px; }
.kt-place-card { padding: 24px; border: 1px solid var(--color-border); }
.kt-section > p { line-height: 1.9; }
@media (max-width: 640px) {
    .kt-section { margin: 60px auto; }
    .kt-hero { padding: 64px 22px 52px; }
    .kt-hero h1 { font-size: 1.75rem; }
    .kt-hero-stats { gap: 20px; flex-wrap: wrap; }
    .kt-tldr { margin: 20px 16px 0; padding: 20px 22px; }
    .kt-final-cta { margin: 60px 16px; }
}

/* ============================================================
 * v1.2.0 — 와이드 레이아웃 통일 (본문 컬럼 1060px, 내부 폭 제각각이던 것 정리)
 * ============================================================ */
/* GeneratePress 컨테이너가 좁게 설정돼 있어도 와이드 컬럼이 눌리지 않게 보장 */
.grid-container,
.site-content,
#content {
    max-width: 1220px !important;
    margin-left: auto;
    margin-right: auto;
}

/* 히어로도 컬럼과 같은 폭 기준으로 */
.kt-hero { max-width: 1180px; margin-left: auto; margin-right: auto; }
.kt-final-cta { max-width: 1180px; margin-left: auto; margin-right: auto; }

/* 와이드 컬럼에서의 가독 보정 */
.kt-page-content { font-size: 1.02rem; }
.kt-session-card .title { font-size: 1.12rem; }
.kt-faq-card h3 { font-size: 1.1rem; }

/* 회차 카드 썸네일 와이드 대응 */
.kt-session-card .thumb:not(.thumb-placeholder),
.kt-session-card .thumb-placeholder { width: 132px; height: 132px; }

/* 캘린더 인덱스 와이드 섹션은 본문 컬럼과 통일 */
.kt-section.kt-section-wide { max-width: 1060px; }
.kt-section-wide .kt-cal-grid { max-width: 100%; }

/* 모바일 */
@media (max-width: 640px) {
    .kt-page-content { font-size: 1rem; }
    .kt-section { padding: 0 18px; }
    .kt-schedule-spotlight { padding: 30px 18px 24px !important; }
}

/* ============================================================
 * v1.2.2 - FAQ card compaction
 * 글 본문 전역 여백(.single-post .entry-content h3 / p)이 카드 내부 규칙보다
 * 우선순위가 높아 질문 위 28px + 답변 위아래 19px이 그대로 얹혀 있었음.
 * 카드 내부는 카드가 통제하도록 선택자 특이도를 올려 고정한다.
 * ============================================================ */
.kt-faq-card {
    padding: 18px 22px;
    margin: 10px 0 !important;
}
.kt-faq-card h3,
.single-post .entry-content .kt-faq-card h3,
.page .entry-content .kt-faq-card h3,
.kt-page-content .kt-faq-card h3 {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: block !important;
    font-size: 1.04rem !important;
    line-height: 1.5 !important;
}
.kt-faq-card p,
.single-post .entry-content .kt-faq-card p,
.page .entry-content .kt-faq-card p,
.kt-page-content .kt-faq-card p {
    margin: 8px 0 0 !important;
    line-height: 1.75 !important;
}
/* FAQ 섹션 자체의 카드 사이 간격도 함께 조임 */
.kt-faq .kt-faq-card + .kt-faq-card { margin-top: 10px !important; }
.single-post .entry-content .kt-faq-card { margin: 10px 0 !important; }

@media (max-width: 640px) {
    .kt-faq-card { padding: 16px 18px; }
}

/* ============================================================
 * v1.2.3 - 글 대표 이미지(GeneratePress featured-image) 톤 통일
 * 1:1 썸네일이 본문 최상단에 그대로 깔리면 너무 크므로 폭을 제한하고
 * 카드와 같은 모서리·그림자를 준다.
 * ============================================================ */
.single-post .featured-image.page-header-image-single {
    max-width: 560px;
    margin: 0 auto 26px !important;
    padding: 0 20px;
}
.single-post .featured-image.page-header-image-single img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(32,24,35,0.14);
    display: block;
}
@media (max-width: 640px) {
    .single-post .featured-image.page-header-image-single { max-width: 100%; padding: 0 14px; }
    .single-post .featured-image.page-header-image-single img { border-radius: 12px; }
}