/* ==========================================================================
   DAYNIGHTIS — Master Atelier Ultra Luxury Editorial Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,600;0,6..72,700;1,6..72,400;1,6..72,600&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --paper-base: #F8F6F0;
    --paper-surface: #FFFFFF;
    --paper-dark: #EDE7DC;
    --paper-darker: #E2DBD0;
    --ink-black: #111317;
    --ink-charcoal: #2A2E37;
    --ink-muted: #525866;
    --ink-faint: #8E94A0;
    --terracotta: #C04A26;
    --terracotta-hover: #A03818;
    --gold-accent: #C59B27;
    --border-heavy: #111317;
    --border-light: rgba(17, 19, 23, 0.12);
    --border-refined: rgba(17, 19, 23, 0.2);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-reading: 'Newsreader', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1400px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--paper-base) !important;
    color: var(--ink-black) !important;
    font-family: var(--font-sans) !important;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

a { text-decoration: none !important; color: inherit; transition: all 0.25s ease; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }

/* Top Issue Strip */
.top-issue-strip {
    border-bottom: 2px solid var(--border-heavy);
    padding: 12px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: #EDE8DE;
    color: var(--ink-charcoal);
}
.strip-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.strip-badge {
    background: var(--ink-black);
    color: #FFF;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 800;
    margin-right: 10px;
}

/* Master Architectural Header */
.master-header {
    border-bottom: 2px solid var(--border-heavy);
    background: var(--paper-base);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.header-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px 0;
    gap: 30px;
}
.nav-column-left, .nav-column-right {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}
.nav-column-right { justify-content: flex-end; }
.nav-item-link {
    position: relative;
    padding: 8px 0;
    color: var(--ink-black) !important;
    display: inline-block;
}
.nav-item-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--terracotta);
    transition: width 0.25s ease;
}
.nav-item-link:hover { color: var(--terracotta) !important; }
.nav-item-link:hover::after { width: 100%; }

.brand-center {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.brand-center img {
    height: 72px !important;
    width: auto !important;
    object-fit: contain;
    filter: contrast(1.1);
    transition: transform 0.3s ease;
}
.brand-center:hover img { transform: scale(1.03); }

.header-btn {
    background: var(--ink-black) !important;
    color: #FFF !important;
    padding: 12px 26px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border: 2px solid var(--ink-black) !important;
    border-radius: 2px !important;
    display: inline-block;
}
.header-btn:hover {
    background: var(--terracotta) !important;
    border-color: var(--terracotta) !important;
    color: #FFF !important;
    box-shadow: 4px 4px 0px var(--border-heavy);
}

/* Breaking Ticker */
.headline-ticker-bar {
    border-bottom: 1px solid var(--border-refined);
    padding: 14px 0;
    background: var(--paper-surface);
    display: flex;
    align-items: center;
    font-size: 14px;
}
.ticker-tag {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--terracotta);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
}
.ticker-tag::after { content: '•'; color: var(--ink-muted); }
.ticker-text {
    color: var(--ink-charcoal);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Master Hero Section */
.hero-cover-section {
    padding: 70px 0 90px;
    border-bottom: 2px solid var(--border-heavy);
}
.hero-headline-deck {
    text-align: center;
    margin-bottom: 45px;
}
.issue-vol {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 800;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.issue-vol::before, .issue-vol::after {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--terracotta);
}
.hero-main-title {
    font-family: var(--font-serif);
    font-size: 64px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.5px;
    max-width: 1100px;
    margin: 0 auto;
    color: var(--ink-black);
}
.hero-main-title a:hover { color: var(--terracotta) !important; }

.hero-split-stage {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}
.cover-art-frame {
    border: 2px solid var(--border-heavy);
    padding: 14px;
    background: var(--paper-surface);
    box-shadow: 16px 16px 0px var(--border-heavy);
    position: relative;
}
.cover-art-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.cover-art-frame:hover img { transform: scale(1.02); }
.cover-badge-top {
    position: absolute;
    top: 28px; left: 28px;
    background: var(--ink-black);
    color: #FFF;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    z-index: 2;
}

.cover-essay-meta-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.essay-lead-quote {
    font-family: var(--font-reading);
    font-size: 26px;
    line-height: 1.45;
    font-style: italic;
    color: var(--ink-charcoal);
    border-left: 4px solid var(--terracotta);
    padding-left: 20px;
    font-weight: 600;
}
.essay-body-summary {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.75;
    font-weight: 500;
}

.audio-player-pill {
    background: var(--paper-dark);
    border: 1.5px solid var(--border-heavy);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
}
.audio-play-circle {
    width: 44px; height: 44px;
    background: var(--ink-black);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.2s;
}
.audio-play-circle:hover { background: var(--terracotta); transform: scale(1.05); }

.btn-atelier-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 40px;
    background: var(--ink-black) !important;
    color: #FFFFFF !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    align-self: flex-start;
    border: 2px solid var(--ink-black) !important;
    box-shadow: 6px 6px 0px var(--border-heavy);
}
.btn-atelier-primary:hover {
    background: var(--terracotta) !important;
    border-color: var(--terracotta) !important;
    box-shadow: 8px 8px 0px var(--border-heavy);
    transform: translate(-2px, -2px);
}

/* Broadside Highlights Strip */
.broadside-highlights {
    padding: 90px 0;
    border-bottom: 2px solid var(--border-heavy);
}
.section-roof {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-heavy);
}
.roof-title {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.roof-sub {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 6px;
}

.highlight-triplet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.broadside-post-card {
    border: 2px solid var(--border-heavy);
    background: var(--paper-surface);
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 8px 8px 0px var(--border-heavy);
    transition: all 0.3s ease;
}
.broadside-post-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 14px 14px 0px var(--terracotta);
}
.post-card-img {
    height: 220px;
    border: 1px solid var(--border-heavy);
    overflow: hidden;
    margin-bottom: 20px;
}
.post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-cat-tag {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 10px;
}
.post-card-h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 12px;
}
.post-card-h3 a:hover { color: var(--terracotta) !important; }
.post-card-snippet {
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.post-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-muted);
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    letter-spacing: 0.5px;
}

/* The Author Spotlight */
.author-atelier-spotlight {
    padding: 100px 0;
    background: #EDE7DC;
    border-bottom: 2px solid var(--border-heavy);
}
.author-desk-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 70px;
    align-items: center;
}
.author-portrait-frame {
    border: 2px solid var(--border-heavy);
    background: var(--paper-surface);
    padding: 24px;
    box-shadow: 16px 16px 0px var(--border-heavy);
    text-align: center;
}
.author-avatar-large {
    width: 170px; height: 170px;
    border-radius: 50%;
    background: var(--terracotta);
    color: #FFF;
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 20px;
    border: 3px solid var(--border-heavy);
}
.author-desk-content h2 {
    font-family: var(--font-serif);
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
}
.author-quote-banner {
    font-family: var(--font-reading);
    font-size: 24px;
    font-style: italic;
    line-height: 1.4;
    color: var(--terracotta);
    margin: 20px 0;
    font-weight: 600;
}

/* Instagram Visual Aphorisms */
.insta-master-section {
    padding: 100px 0;
    border-bottom: 2px solid var(--border-heavy);
    background: var(--paper-base);
}
.insta-matrix-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.insta-broadside-box {
    background: var(--paper-surface);
    border: 2px solid var(--border-heavy);
    padding: 34px 28px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 8px 8px 0px var(--border-heavy);
    transition: all 0.3s ease;
}
.insta-broadside-box:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px var(--terracotta);
}
.insta-text-quote {
    font-family: var(--font-reading);
    font-size: 20px;
    line-height: 1.5;
    font-style: italic;
    color: var(--ink-charcoal);
    font-weight: 600;
}
.insta-bottom-tag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--terracotta);
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
    letter-spacing: 0.5px;
}

/* Sunday Letter */
.sunday-vault-section {
    padding: 100px 0;
    background: var(--ink-black);
    color: #FFF;
    text-align: center;
    border-bottom: 2px solid var(--border-heavy);
}
.vault-container { max-width: 720px; margin: 0 auto; }
.vault-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #FAF6EE;
}
.vault-desc {
    font-size: 16px;
    color: #A0A4B0;
    line-height: 1.8;
    margin-bottom: 36px;
}
.vault-form {
    display: flex;
    max-width: 520px;
    margin: 0 auto;
    border: 2px solid #FFF;
    background: #FFF;
}
.vault-form input {
    flex: 1;
    padding: 16px 22px;
    border: none;
    font-size: 15px;
    outline: none;
    color: var(--ink-black);
    font-family: var(--font-sans);
}
.vault-form button {
    background: var(--terracotta);
    color: #FFF;
    border: none;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-sans);
}

/* Master Editorial Footer */
.master-footer {
    padding: 80px 0 40px;
    background: var(--paper-base);
}
.footer-four-col {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid var(--border-heavy);
}
.footer-heading {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 20px;
}
.footer-nav-list { list-style: none; margin: 0; padding: 0; }
.footer-nav-list li { margin-bottom: 12px; }
.footer-nav-list a {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-charcoal);
}
.footer-nav-list a:hover { color: var(--terracotta); padding-left: 6px; }

.footer-baseline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--ink-muted);
}

/* ==========================================================================
   Inner Page Styles: Article Details, Category Pages, Static Pages
   ========================================================================== */

/* Category Page Header */
.category-page-masthead {
    padding: 60px 0 50px;
    border-bottom: 2px solid var(--border-heavy);
    background: #EDE8DE;
    text-align: center;
}
.category-eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}
.category-page-title {
    font-family: var(--font-serif);
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 16px;
}
.category-page-desc {
    font-size: 17px;
    color: var(--ink-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* Article Detail Layout */
.article-detail-section {
    padding: 70px 0 100px;
}
.article-header-center {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}
.article-meta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.article-single-title {
    font-family: var(--font-serif);
    font-size: 56px;
    line-height: 1.18;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--ink-black);
}
.article-hero-image-wrap {
    max-width: 1100px;
    margin: 0 auto 60px;
    border: 2px solid var(--border-heavy);
    box-shadow: 16px 16px 0px var(--border-heavy);
    background: var(--paper-surface);
    padding: 14px;
}
.article-hero-image-wrap img { width: 100%; height: auto; object-fit: cover; }

.article-content-body {
    max-width: 820px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.85;
    color: var(--ink-charcoal);
}
.article-content-body p { margin-bottom: 30px; }
.article-content-body h2, .article-content-body h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    margin: 50px 0 24px;
    color: var(--ink-black);
}
.article-content-body blockquote {
    font-family: var(--font-reading);
    font-size: 28px;
    line-height: 1.45;
    font-style: italic;
    color: var(--ink-black);
    border-left: 4px solid var(--terracotta);
    padding: 10px 0 10px 28px;
    margin: 40px 0;
    font-weight: 600;
}
.article-content-body img {
    border: 2px solid var(--border-heavy);
    box-shadow: 10px 10px 0px var(--border-heavy);
    margin: 40px 0;
}

/* Static Pages (About, Manifesto, Contact) */
.static-page-hero {
    padding: 80px 0 60px;
    border-bottom: 2px solid var(--border-heavy);
    text-align: center;
    background: #EDE8DE;
}
.static-page-content {
    max-width: 860px;
    margin: 70px auto 100px;
    font-size: 19px;
    line-height: 1.85;
}

@media(max-width: 992px) {
    .header-layout { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .nav-column-left, .nav-column-right { justify-content: center; flex-wrap: wrap; }
    .hero-main-title { font-size: 42px; }
    .hero-split-stage { grid-template-columns: 1fr; }
    .highlight-triplet-grid { grid-template-columns: 1fr; }
    .author-desk-layout { grid-template-columns: 1fr; }
    .insta-matrix-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-four-col { grid-template-columns: 1fr; }
    .article-single-title { font-size: 38px; }
}

/* EDITORIAL SNIPPETS & CALLOUT BOXES */
.editorial-pullquote, blockquote.editorial-quote {
    background: #FAF7F2;
    border-left: 4px solid var(--terracotta) !important;
    padding: 28px 36px;
    margin: 40px 0;
    font-family: var(--font-reading) !important;
    font-size: 23px !important;
    line-height: 1.6 !important;
    font-style: italic !important;
    color: var(--ink-charcoal) !important;
    box-shadow: 6px 6px 0px rgba(17, 19, 23, 0.06);
    border-radius: 0 4px 4px 0;
}

.editorial-callout-tip {
    background: #EDE6D8;
    border: 2px solid var(--border-heavy);
    padding: 26px 32px;
    margin: 40px 0;
    box-shadow: 8px 8px 0px var(--border-heavy);
}
.editorial-callout-tip-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--terracotta);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.editorial-section-block {
    background: #FFFFFF;
    border: 2px solid var(--border-heavy);
    padding: 36px;
    margin: 50px 0;
    box-shadow: 10px 10px 0px var(--border-heavy);
}
.editorial-section-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--ink-black);
    margin-bottom: 16px;
    border-bottom: 2px solid var(--border-heavy);
    padding-bottom: 12px;
}

/* ==========================================================================
   DAYNIGHTIS — Master Atelier Ultra Luxury Lightbox & Gallery
   ========================================================================== */

.atelier-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 13, 17, 0.95);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(8px);
}
.atelier-lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-stage {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-main-img {
    max-width: 90vw;
    max-height: 84vh;
    object-fit: contain;
    border: 2px solid rgba(250, 246, 238, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    user-select: none;
    transition: transform 0.25s ease;
}

.lightbox-btn-close {
    position: absolute;
    top: 25px;
    right: 35px;
    background: transparent;
    border: 2px solid rgba(250, 246, 238, 0.3);
    color: #FAF6EE;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 100000;
}
.lightbox-btn-close:hover {
    background: #C04A26;
    border-color: #C04A26;
    transform: rotate(90deg);
}

.lightbox-btn-prev, .lightbox-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(17, 19, 23, 0.6);
    border: 2px solid rgba(250, 246, 238, 0.3);
    color: #FAF6EE;
    font-size: 26px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 100000;
}
.lightbox-btn-prev { left: 30px; }
.lightbox-btn-next { right: 30px; }
.lightbox-btn-prev:hover, .lightbox-btn-next:hover {
    background: #C04A26;
    border-color: #C04A26;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter-badge {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(17, 19, 23, 0.8);
    border: 1px solid rgba(250, 246, 238, 0.2);
    color: #FAF6EE;
    padding: 6px 18px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* YOUTUBE RESPONSIVE VIDEO WRAPPER */
.editorial-video-wrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    margin: 40px 0;
    border: 2px solid var(--border-heavy);
    box-shadow: 10px 10px 0px var(--border-heavy);
    background: #000;
}
.editorial-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* EDITORIAL MULTI-IMAGE GRID BLOCKS */
.editorial-gallery-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}
.editorial-gallery-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 40px 0;
}
.editorial-gallery-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 40px 0;
}
.editorial-gallery-thumb {
    border: 2px solid var(--border-heavy);
    box-shadow: 6px 6px 0px var(--border-heavy);
    overflow: hidden;
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.editorial-gallery-thumb:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px var(--border-heavy);
}
.editorial-gallery-thumb img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* SIDE-BY-SIDE IMAGE & TEXT BLOCKS */
.editorial-media-text-left {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    align-items: center;
    margin: 46px 0;
}
.editorial-media-text-right {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 36px;
    align-items: center;
    margin: 46px 0;
}
@media(max-width: 768px) {
    .editorial-media-text-left, .editorial-media-text-right {
        grid-template-columns: 1fr;
    }
    .editorial-gallery-grid-2, .editorial-gallery-grid-3, .editorial-gallery-grid-4 {
        grid-template-columns: 1fr;
    }
    .editorial-comparison-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   15+ SUPER EDITORIAL COMPONENTS (ATELIER LUXURY CMS)
   ========================================================================== */

/* 1. Comparison & Contrast Block (İkili Karşılaştırma Bloğu) */
.editorial-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 44px 0;
}
.editorial-compare-card {
    border: 2px solid var(--border-heavy);
    padding: 28px;
    box-shadow: 8px 8px 0px var(--border-heavy);
    background: #FFF;
}
.editorial-compare-card.positive {
    background: #F4F7F2;
    border-top: 6px solid #2B6E44;
}
.editorial-compare-card.negative {
    background: #FAF2F2;
    border-top: 6px solid #C04A26;
}
.editorial-compare-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 2. Step-by-Step / Chronology Timeline (Numaralı Süreç & Rehber) */
.editorial-steps-wrap {
    margin: 44px 0;
}
.editorial-step-item {
    display: flex;
    gap: 22px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.editorial-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink-black);
    color: #FFF;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--border-heavy);
    box-shadow: 4px 4px 0px var(--terracotta);
}
.editorial-step-body {
    background: #FFF;
    border: 2px solid var(--border-heavy);
    padding: 20px 24px;
    box-shadow: 6px 6px 0px var(--border-heavy);
    flex-grow: 1;
}

/* 3. Notice / Warning Box (Zarif Dikkat & Uyarı Kartı) */
.editorial-notice-box {
    background: #FFF9E6;
    border: 2px solid #D9A016;
    border-left: 8px solid #D9A016;
    padding: 24px 30px;
    margin: 40px 0;
    box-shadow: 8px 8px 0px rgba(217, 160, 22, 0.2);
}
.editorial-notice-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: #8C6500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 4. Podcast / Audio Simulation Box (Ses & Podcast Kutusu) */
.editorial-podcast-card {
    background: #111317;
    color: #FAF6EE;
    border: 2px solid var(--border-heavy);
    padding: 26px 32px;
    margin: 44px 0;
    box-shadow: 10px 10px 0px var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.editorial-podcast-meta h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #FAF6EE;
}
.editorial-podcast-meta small {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #C5A059;
}

/* 5. Glossary Definition Box (Terim Tanım Kutusu) */
.editorial-glossary-box {
    background: #EDE8DE;
    border: 2px solid var(--border-heavy);
    padding: 24px 30px;
    margin: 40px 0;
    box-shadow: 8px 8px 0px var(--border-heavy);
}
.editorial-glossary-term {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 2px;
}
.editorial-glossary-phonetic {
    font-size: 13px;
    font-style: italic;
    color: var(--ink-muted);
    margin-bottom: 12px;
}

/* 6. Contemplative Question / Reflection (Okura Soru Molası) */
.editorial-reflection-box {
    background: #2A2E37;
    color: #FFF;
    border: 2px solid var(--border-heavy);
    padding: 34px 40px;
    margin: 48px 0;
    text-align: center;
    box-shadow: 10px 10px 0px var(--border-heavy);
}
.editorial-reflection-sub {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #C5A059;
    margin-bottom: 12px;
}
.editorial-reflection-q {
    font-family: var(--font-reading);
    font-size: 26px;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

/* 7. Author Sign-Off & Seal (Yazar İmzası Bloğu) */
.editorial-signoff-wrap {
    border-top: 2px dashed var(--border-heavy);
    margin: 50px 0 20px;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.editorial-signoff-quote {
    font-family: var(--font-reading);
    font-style: italic;
    font-size: 19px;
    color: var(--ink-muted);
}
.editorial-signoff-badge {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
}