/* ========================================
   HNČ — Hodžov novinový článok
   Standalone page CSS — no Divi dependency
   Source: design/zsmh.sk/hodzov-novinovy-clanok-v7.html
   ======================================== */

/* --- Custom Properties --- */
.hnc-page {
    --gold: #c9a84c;
    --gold-dark: #a68a2e;
    --gold-light: #f5edda;
    --gold-medium: #b8960b;
    --primary: #f19e00;
    --primary-dark: #d38900;
    --orange-bright: #ffb020;
    --secondary: #4147a6;
    --purple-deep: #2d3180;
    --navy: #1a1d3e;
    --navy-deep: #0d0f1f;
    --navy-mid: #252850;
    --ink: #1a1a1a;
    --body: #3a3a3a;
    --muted: #6b6b6b;
    --light: #999;
    --border: #e2ddd4;
    --border-light: #ece7df;
    --white: #fff;
    --cream: #faf7f1;
    --warm: #f5f0e8;
    --paper: #fdf9f2;
    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 16px;
}

/* --- Base Reset --- */
.hnc-page {
    margin: 0;
    font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.hnc-page h1, .hnc-page h2, .hnc-page h3, .hnc-page h4 {
    font-family: 'Trebuchet MS', 'Lucida Grande', sans-serif;
    color: var(--ink);
    line-height: 1.15;
    margin: 0 0 .5em;
}

.hnc-page a { color: var(--secondary); text-decoration: none; }
.hnc-page a:hover { color: var(--primary); }
.hnc-page p { margin: 0 0 16px; }
.hnc-page strong { color: var(--ink); }

.container {
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
}

/* ========== HEADER ========== */
.hnc-header {
    background: var(--navy-deep);
    position: sticky;
    top: 0;
    z-index: 100;
}

.hnc-header::after {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--primary), var(--gold), transparent);
}

.hnc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
}

.hnc-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.hnc-brand__icon {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--gold);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    background: rgba(201,168,76,.1);
    letter-spacing: .02em;
}

.hnc-brand__name {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .02em;
}

.hnc-brand__tagline {
    font-size: 10.5px;
    color: var(--gold);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hnc-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.hnc-nav a {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    padding: 8px 14px;
    border-radius: var(--r-sm);
    transition: all 150ms;
    text-decoration: none;
}

.hnc-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,.05);
}

.hnc-nav__cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-deep);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 11px;
    padding: 8px 20px;
    margin-left: 8px;
}

.hnc-nav__cta:hover {
    color: var(--navy-deep);
    opacity: .9;
}

.hnc-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.hnc-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
}

/* ========== HERO ========== */
.hnc-hero {
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 40%, var(--purple-deep) 70%, var(--secondary) 100%);
    color: var(--white);
    padding: 72px 0 64px;
    overflow: hidden;
    position: relative;
}

.hnc-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241,158,0,.12) 0%, transparent 70%);
    pointer-events: none;
}

.hnc-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(65,71,166,.25) 0%, transparent 70%);
    pointer-events: none;
}

.hnc-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: center;
}

.hnc-hero-overline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hnc-hero-overline::before,
.hnc-hero-overline::after {
    content: '';
    height: 1px;
    width: 30px;
    background: var(--gold);
    opacity: .4;
}

.hnc-hero h1 {
    font-family: 'Libre Bodoni', Georgia, serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 20px;
}

.hnc-hero-theme {
    font-family: 'Libre Bodoni', Georgia, serif;
    font-style: italic;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 24px;
    line-height: 1.4;
}

.hnc-hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,.5);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.hnc-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hnc-hero-portrait {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hnc-portrait-frame {
    width: 320px;
    height: 220px;
    border: 2px solid var(--gold);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    position: relative;
}

.hnc-portrait-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201,168,76,.2);
    border-radius: var(--r-md);
    pointer-events: none;
    margin: 5px;
}

.hnc-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: sepia(.1) contrast(1.05);
}

.hnc-portrait-caption {
    font-size: 11px;
    color: rgba(255,255,255,.35);
    letter-spacing: .05em;
}

.hnc-hero-edition {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 100px;
    padding: 6px 18px 6px 6px;
    backdrop-filter: blur(4px);
}

.hnc-edition-num {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Libre Bodoni', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.hnc-edition-text {
    font-size: 13px;
    color: rgba(255,255,255,.5);
}

.hnc-edition-text strong {
    color: var(--white);
    display: block;
    font-size: 14px;
}

/* ========== BUTTONS ========== */
.hnc-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-deep);
    padding: 14px 28px;
    border-radius: var(--r-md);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(201,168,76,.3);
    transition: all 250ms;
}

.hnc-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,.4);
    color: var(--navy-deep);
}

/* Button modifiers */
.hnc-btn--full { width: 100%; justify-content: center; }
.hnc-btn--sm { font-size: 12px; }
.hnc-sidebar-back { margin-top: 12px; }

.hnc-btn-ghost,
a.hnc-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.85);
    padding: 14px 28px;
    border-radius: var(--r-md);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-decoration: none;
    transition: all 250ms;
}

.hnc-btn-ghost:hover,
a.hnc-btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ========== GOLD DIVIDER ========== */
.hnc-gold-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
}

/* ========== QUOTE ========== */
.hnc-quote-section {
    background: var(--warm);
    padding: 44px 0;
}

.hnc-quote-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.hnc-quote-inner::before {
    content: '\201E';
    font-family: 'Libre Bodoni', Georgia, serif;
    font-size: 120px;
    color: var(--gold);
    opacity: .15;
    position: absolute;
    top: -56px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    pointer-events: none;
}

.hnc-quote-inner blockquote {
    font-family: 'Libre Bodoni', Georgia, serif;
    font-style: italic;
    font-size: 22px;
    color: var(--ink);
    line-height: 1.55;
    margin: 0;
    position: relative;
}

.hnc-quote-author {
    margin-top: 20px;
    font-size: 14px;
    color: var(--muted);
}

.hnc-quote-author strong {
    color: var(--gold-dark);
}

/* ========== STATS ========== */
.hnc-stats-banner {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 22px 0;
}

.hnc-stats-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hnc-stat {
    text-align: center;
    color: var(--navy-deep);
}

.hnc-stat-num {
    font-family: 'Libre Bodoni', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.hnc-stat-lab {
    font-size: 12px;
    opacity: .7;
    margin-top: 3px;
}

/* ========== SECTIONS ========== */
.hnc-section {
    padding: 56px 0;
}

.hnc-section--cream { background: var(--cream); }
.hnc-section--warm { background: var(--warm); }

.hnc-section--dark {
    background: linear-gradient(170deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
    color: rgba(255,255,255,.65);
    position: relative;
    overflow: hidden;
}

.hnc-section--dark::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
    pointer-events: none;
}

.hnc-section--dark h2, .hnc-section--dark h3 { color: var(--white); }

.hnc-section-header { margin-bottom: 40px; }

.hnc-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.hnc-section--dark .hnc-label { color: var(--gold); }
.hnc-section--dark .hnc-desc { color: rgba(255,255,255,.4); }

.hnc-section-header h2 { font-size: 26px; font-weight: 700; }

.hnc-section-header .hnc-desc {
    color: var(--muted);
    margin-top: 6px;
    max-width: 560px;
    font-size: 15px;
}

/* ========== ABOUT ========== */
.hnc-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.hnc-about-text p { line-height: 1.75; }

.hnc-partner-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }

.hnc-partner-tag {
    background: var(--gold-light);
    color: var(--gold-dark);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(201,168,76,.2);
}

.hnc-theme-card {
    background: var(--navy);
    border-radius: var(--r-lg);
    padding: 36px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,.12);
}

.hnc-theme-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--primary), var(--gold));
}

.hnc-year-badge {
    display: inline-block;
    background: rgba(201,168,76,.12);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    border: 1px solid rgba(201,168,76,.2);
}

.hnc-theme-card h3 { font-size: 20px; color: var(--white); margin-bottom: 14px; line-height: 1.3; }

.hnc-motto {
    font-family: 'Libre Bodoni', Georgia, serif;
    font-style: italic;
    font-size: 16px;
    color: rgba(255,255,255,.6);
    border-left: 2px solid var(--gold);
    padding-left: 14px;
    margin-bottom: 18px;
    line-height: 1.65;
}

.hnc-author-row {
    display: flex; gap: 12px; align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.hnc-author-icon {
    width: 40px; height: 40px;
    background: rgba(201,168,76,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    border: 1px solid rgba(201,168,76,.15);
}

.hnc-author-name { font-weight: 600; font-size: 14px; color: var(--white); }
.hnc-author-desc { font-size: 12px; color: rgba(255,255,255,.4); }

/* ========== CONDITIONS ========== */
.hnc-steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,168,76,.2);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 28px;
}

.hnc-step { background: var(--white); padding: 28px 24px; position: relative; }

.hnc-step-num {
    font-family: 'Libre Bodoni', Georgia, serif;
    font-size: 36px; font-weight: 700;
    color: var(--gold); opacity: .2;
    position: absolute; top: 16px; right: 16px; line-height: 1;
}

.hnc-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.hnc-step p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

.hnc-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1px;
    background: rgba(201,168,76,.2);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.hnc-detail { background: var(--white); padding: 18px; text-align: center; }

.hnc-detail-label {
    font-size: 10px; text-transform: uppercase;
    letter-spacing: .1em; color: var(--light);
    font-weight: 700; margin-bottom: 3px;
}

.hnc-detail-value { font-size: 15px; font-weight: 700; color: var(--ink); }
.hnc-detail-value--gold { color: var(--gold-dark); }

.hnc-note {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 20px;
    border-left: 3px solid var(--gold);
    background: var(--white);
    border-radius: 0 var(--r-md) var(--r-md) 0;
}
.hnc-note span { flex-shrink: 0; }

/* ========== HODŽA ========== */
.hnc-hodza-box {
    background: var(--navy);
    border: 1px solid rgba(201,168,76,.12);
    border-radius: var(--r-lg);
    padding: 32px;
    display: flex; gap: 24px; align-items: start;
    position: relative; overflow: hidden;
}

.hnc-hodza-box::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--primary), var(--gold));
}

.hnc-hodza-icon {
    width: 56px; height: 56px;
    background: rgba(201,168,76,.1);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; flex-shrink: 0;
    border: 1px solid rgba(201,168,76,.15);
}

.hnc-hodza-photo {
    width: 100px;
    border-radius: var(--r-md);
    overflow: hidden;
    flex-shrink: 0;
    border: 1.5px solid rgba(201,168,76,.25);
}
.hnc-hodza-photo img {
    display: block;
    width: 100%;
    height: auto;
    filter: sepia(.15) contrast(1.05);
}

.hnc-hodza-box h3 {
    font-family: 'Libre Bodoni', Georgia, serif;
    font-size: 22px; color: var(--white); margin-bottom: 4px;
}

.hnc-hodza-sub {
    font-size: 12px; color: var(--gold);
    text-transform: uppercase; letter-spacing: .08em;
    font-weight: 700; margin-bottom: 10px;
}

.hnc-hodza-box p {
    font-size: 15px; line-height: 1.7;
    color: rgba(255,255,255,.7); margin: 0;
}

/* ========== BIO ========== */
.hnc-bio-layout {
    display: grid; grid-template-columns: 3fr 2fr;
    gap: 40px; align-items: start;
}
.hnc-bio-layout--full { grid-template-columns: 1fr; max-width: 720px; }

.hnc-bio-side { display: flex; flex-direction: column; align-items: flex-end; }

.hnc-bio-text h3 { font-size: 22px; margin-bottom: 4px; }

/* Bio photo (right column) */
.hnc-bio-photo {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 2px solid var(--border);
    margin-bottom: 16px;
    max-width: 300px;
}
.hnc-bio-photo img {
    display: block;
    width: 100%;
    height: auto;
}

.hnc-bio-dates { font-size: 14px; color: var(--gold-dark); font-weight: 500; margin-bottom: 16px; }
.hnc-bio-text p { line-height: 1.75; font-size: 15px; }

.hnc-bio-poem {
    background: var(--white);
    border-left: 3px solid var(--gold);
    padding: 24px;
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    font-family: 'Libre Bodoni', Georgia, serif;
    font-style: italic; font-size: 17px;
    line-height: 1.85; color: var(--ink);
}

.hnc-bio-poem em { color: var(--gold-dark); font-style: normal; font-weight: 700; }

.hnc-bio-context {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px; font-size: 14px;
    line-height: 1.7; color: var(--muted);
    margin-top: 20px;
}

.hnc-bio-context strong { color: var(--ink); }

/* ========== TIMELINE (vertikálna čiara s bodkami — z v3) ========== */
.hnc-timeline {
    position: relative;
    padding-left: 40px;
}

.hnc-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(201,168,76,.25);
}

.hnc-timeline-item {
    position: relative;
    padding-bottom: 32px;
    display: flex;
    gap: 24px;
    align-items: start;
}

.hnc-timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 4px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    border: 2px solid var(--navy);
}

.hnc-timeline-item.active::before {
    width: 16px;
    height: 16px;
    left: -35px;
    box-shadow: 0 0 0 4px rgba(201,168,76,.2);
}

.hnc-timeline-year {
    font-family: 'Libre Bodoni', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    min-width: 60px;
}

.hnc-timeline-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    margin-bottom: 4px;
}

.hnc-timeline-content p {
    font-size: 14px;
    color: rgba(255,255,255,.45);
    margin: 0;
}

.hnc-timeline-badge {
    display: inline-block;
    background: rgba(201,168,76,.15);
    color: var(--gold);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 8px;
    vertical-align: middle;
}

/* Hidden items — shown when parent has .hnc-timeline-expanded */
.hnc-timeline-item.hnc-timeline-hidden { display: none; }
.hnc-timeline-expanded .hnc-timeline-item.hnc-timeline-hidden { display: flex; }

/* Toggle button wrapper */
.hnc-timeline-toggle-wrap { text-align: center; margin-top: 24px; }

/* ========== POSTS — kartový grid (v3 dizajn) ========== */
.hnc-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hnc-posts-footer { text-align: center; margin-top: 28px; }

.hnc-post-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 250ms, box-shadow 250ms;
    position: relative;
}

.hnc-post-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--secondary));
    opacity: 0;
    transition: opacity 250ms;
}

.hnc-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    color: inherit;
}

.hnc-post-card:hover::before { opacity: 1; }

.hnc-post-card__thumb {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--secondary) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hnc-post-card__icon {
    font-size: 40px;
    opacity: .2;
}

.hnc-post-card__body {
    padding: 20px;
}

.hnc-post-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

.hnc-post-tag--oznam { color: var(--gold-dark); }
.hnc-post-tag--udalost { color: var(--secondary); }

.hnc-post-card h4 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--ink);
}

.hnc-post-card__date {
    font-size: 13px;
    color: var(--light);
}

/* ========== CTA ========== */
.hnc-cta-section { padding: 56px 0; background: var(--warm); }

.hnc-cta-grid {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 40px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px;
    border: 1px solid var(--border);
    position: relative;
}

.hnc-cta-grid::before {
    content: '';
    position: absolute; top: 0; left: 40px; right: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hnc-cta-grid h3 { font-size: 20px; margin-bottom: 12px; }
.hnc-cta-grid p { color: var(--muted); margin-bottom: 20px; font-size: 15px; }

.hnc-contact-list { list-style: none; padding: 0; }
.hnc-contact-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    display: flex; gap: 10px; align-items: center;
}
.hnc-contact-list li:last-child { border-bottom: none; }

.hnc-ci {
    width: 28px; height: 28px;
    background: var(--gold-light);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; flex-shrink: 0;
}

/* ========== FOOTER ========== */
.hnc-footer {
    background: var(--navy-deep);
    padding: 44px 0 32px;
    color: rgba(255,255,255,.35);
    position: relative;
}

.hnc-footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--primary), var(--gold), transparent);
}

.hnc-footer__grid {
    display: grid; grid-template-columns: 1fr 1px 1fr; gap: 36px;
}

.hnc-footer__divider { background: rgba(255,255,255,.06); }

.hnc-footer h4 {
    font-size: 10px; text-transform: uppercase;
    letter-spacing: .12em; color: var(--gold); margin-bottom: 12px;
}

.hnc-footer p { font-size: 13px; line-height: 1.7; margin-bottom: 6px; }
.hnc-footer a { color: rgba(255,255,255,.45); }
.hnc-footer a:hover { color: var(--gold); }
.hnc-footer strong { color: rgba(255,255,255,.6); }

.hnc-footer__contact-label {
    font-size: 10px; text-transform: uppercase;
    letter-spacing: .08em; color: var(--gold);
}

.hnc-footer__contact-wrap { margin-top: 16px; }

.hnc-footer__bottom {
    margin-top: 28px; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.04);
    display: flex; justify-content: space-between;
    font-size: 11px; color: rgba(255,255,255,.2);
}

/* ========== SINGLE POST (detail udalosti/oznamu) ========== */

/* Single post uses cream background */
.hnc-single { background: var(--cream); }

/* Hide Divi wrappers injected by theme on HNČ pages */
.hnc-single #et-main-area,
.hnc-single #main-content,
.hnc-single #main-footer,
.hnc-single #et-footer-nav { display: none; }

.hnc-breadcrumb {
    background: var(--navy);
    padding: 12px 0;
    font-size: 13px;
}

.hnc-breadcrumb a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color 150ms;
}

.hnc-breadcrumb a:hover { color: var(--gold); }
.hnc-breadcrumb__sep { color: rgba(255,255,255,.3); margin: 0 8px; }
.hnc-breadcrumb__current { color: rgba(255,255,255,.7); }

.hnc-article-header {
    background: var(--cream);
    padding: 36px 0 32px;
    border-bottom: 1px solid var(--border);
}

.hnc-type-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.hnc-type-badge--oznam { background: var(--gold-light); color: var(--gold-dark); }
.hnc-type-badge--udalost { background: rgba(65,71,166,.1); color: var(--secondary); }

.hnc-article-title {
    font-family: 'Libre Bodoni', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 14px;
}

.hnc-article-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--muted);
}

.hnc-article-meta__item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hnc-article-meta .meta-icon {
    font-size: 16px;
    opacity: .6;
}

.hnc-article-hero-img {
    background: var(--cream);
    padding: 0 0 24px;
}

.hnc-article-hero-img img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
}

.hnc-article-body {
    padding: 32px 0 48px;
}

.hnc-article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

.hnc-article-content {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 40px;
    border: 1px solid var(--border);
}

.hnc-article-content p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.hnc-article-content strong {
    color: var(--ink);
}

.hnc-article-content h2 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.hnc-article-content ul,
.hnc-article-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.hnc-article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.hnc-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--r-md);
    margin: 16px 0;
}

/* Sidebar */
.hnc-article-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hnc-sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px;
    position: relative;
}

.hnc-sidebar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
}

.hnc-sidebar-card h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gold-dark);
    margin-bottom: 12px;
}

.hnc-sidebar-cta { text-align: center; }
.hnc-sidebar-cta p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }

.hnc-sidebar-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hnc-sidebar-info li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.hnc-sidebar-info li:last-child { border-bottom: none; }
.hnc-si-icon { font-size: 16px; opacity: .5; flex-shrink: 0; }

.hnc-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1.5px solid var(--border);
    color: var(--body);
    cursor: pointer;
    font-family: inherit;
    padding: 12px 24px;
    border-radius: var(--r-md);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 250ms;
}

.hnc-btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Dark section button override */
.hnc-section--dark .hnc-btn-outline {
    background: transparent;
    border-color: rgba(255,255,255,.2);
    color: rgba(255,255,255,.7);
    cursor: pointer;
}
.hnc-section--dark .hnc-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,.08);
}

/* Related */
.hnc-related { padding: 0 0 56px; }
.hnc-related h3 { font-size: 20px; margin-bottom: 20px; }

.hnc-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hnc-related-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 250ms, box-shadow 250ms;
}

.hnc-related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    color: inherit;
}

.hnc-related-card__body { padding: 16px; }
.hnc-related-type { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-dark); margin-bottom: 4px; }
.hnc-related-card h4 { font-size: 14px; font-weight: 700; line-height: 1.4; margin-bottom: 4px; }
.hnc-related-date { font-size: 12px; color: var(--light); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hnc-hero-grid { grid-template-columns: 1fr; }
    .hnc-hero-portrait { display: none; }
}

@media (max-width: 768px) {
    .hnc-page .container { width: 90%; }
    .hnc-hero { padding: 48px 0; }
    .hnc-hero h1 { font-size: 2rem; }
    .hnc-hero-theme { font-size: 17px; }
    .hnc-about-grid, .hnc-bio-layout, .hnc-cta-grid, .hnc-footer__grid { grid-template-columns: 1fr; }
    .hnc-steps-row { grid-template-columns: 1fr; }
    .hnc-details-grid { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); }
    .hnc-posts-grid { grid-template-columns: 1fr; }
    .hnc-section { padding: 32px 0; }
    .hnc-footer__divider { display: none; }
    .hnc-footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
    .hnc-nav { display: none; }
    .hnc-mobile-toggle { display: flex; position: relative; z-index: 101; }
    .hnc-nav.hnc-nav--open {
        display: flex;
        position: fixed;
        top: 60px; /* pod hlavičkou (58px + 2px gradient) */
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy-deep);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 24px 20px;
        z-index: 99;
        overflow-y: auto;
    }
    .hnc-nav.hnc-nav--open a {
        display: block;
        padding: 14px 16px;
        font-size: 16px;
        border-radius: var(--r-sm);
        color: #fff;
    }
    .hnc-nav.hnc-nav--open .hnc-nav__cta {
        margin: 8px 0 0;
        text-align: center;
        color: var(--navy-deep);
    }
    /* Hamburger X animation */
    .hnc-mobile-toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hnc-mobile-toggle--active span:nth-child(2) { opacity: 0; }
    .hnc-mobile-toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hnc-mobile-toggle span { transition: transform .2s, opacity .2s; transform-origin: center; }
    body.hnc-menu-open { overflow: hidden; }
    .hnc-stats-row { gap: 20px; }
    .hnc-hodza-box { flex-direction: column; }
    .hnc-cta-grid { padding: 28px; }
    .hnc-article-layout { grid-template-columns: 1fr; }
    .hnc-article-content { padding: 24px; }
    .hnc-article-sidebar { position: static; }
    .hnc-related-grid { grid-template-columns: 1fr; }
}
