/* ============================================
   HERO BANNER (full-width)
   ============================================ */
.hero-banner {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 64px 0;
    text-align: center;
}

/* Purely visual hero variant - centered content */
.hero-banner--visual {
    min-height: 60vh;
}

.hero-banner--visual .hero-banner__content {
    margin: 0 auto;
}

.hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.hero-banner__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-banner__edition-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sage);
    margin-bottom: 12px;
}

.hero-banner__title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
}

.hero-banner__title a {
    color: #fff;
    text-decoration: none;
}

.hero-banner__title a:hover {
    color: var(--sage);
}

.hero-banner__excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    max-width: 560px;
}

.hero-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.gp-btn--light {
    background: #fff;
    color: var(--charcoal);
}

.gp-btn--light:hover {
    background: var(--sage);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.gp-btn--outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.gp-btn--outline-light:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 400px;
        padding: 40px 0;
    }
    .hero-banner--visual {
        min-height: 50vh;
    }
    .hero-banner__title {
        font-size: 1.8rem;
    }
    .hero-banner__actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-banner__actions .gp-btn {
        text-align: center;
        justify-content: center;
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================
   HERO / LATEST EDITION (legacy — kept for edition pages)
   ============================================ */
.hero {
    padding: 48px 0 0;
}

.hero__grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
}

.hero__cover {
    position: relative;
}

.hero__cover-image-wrap {
    position: relative;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.4s, box-shadow 0.4s;
    display: block;
}

.hero__cover-image-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

.hero__cover-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 2px;
}

.hero__cover-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--charcoal);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(70,55,48,0.3);
}

.hero__cover-caption {
    text-align: center;
    margin-top: 16px;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: var(--ink-muted);
}

.hero__content {
    padding-top: 8px;
}

.hero__edition-label {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sage-dark);
    margin-bottom: 12px;
}

.hero__edition-title {
    font-family: var(--font-headline);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 8px;
}

.hero__edition-date {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--ink-muted);
    margin-bottom: 24px;
}

.hero__edition-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink-light);
    margin-bottom: 28px;
    max-width: 560px;
}

/* Table of contents */
.hero__toc {
    list-style: none;
    margin-bottom: 28px;
}

.hero__toc-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: baseline;
    gap: 14px;
    cursor: pointer;
    transition: padding-left 0.2s;
}

.hero__toc-item:first-child {
    border-top: 1px solid var(--rule);
}

.hero__toc-item:hover {
    padding-left: 8px;
}

.hero__toc-page {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--ink-muted);
    min-width: 28px;
    text-align: right;
}

.hero__toc-title {
    font-family: var(--font-headline);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    transition: color 0.2s;
}

.hero__toc-item:hover .hero__toc-title {
    color: var(--accent);
}

.hero__toc-author {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: var(--ink-muted);
    margin-left: auto;
    white-space: nowrap;
}

.hero__read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--charcoal);
    padding: 14px 32px;
    border-radius: 4px;
    transition: all 0.2s;
}

.hero__read-btn:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(55,52,53,0.25);
}

.hero__read-btn svg { transition: transform 0.2s; }
.hero__read-btn:hover svg { transform: translateX(3px); }

/* News grid/card styles are now in base.css */

/* ============================================
   FEATURED ARTICLE (full-width)
   ============================================ */
.featured {
    background: var(--ink);
    color: var(--paper);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-width='0.3' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.featured__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
}

.featured__image-wrap {
    border-radius: 4px;
    overflow: hidden;
}

.featured__image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.featured__label {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--sage);
    margin-bottom: 16px;
}

.featured__title {
    font-family: var(--font-headline);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.featured__text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(248, 245, 240, 0.8);
    margin-bottom: 24px;
}

.featured__dropcap::first-letter {
    font-family: var(--font-headline);
    font-size: 3.5rem;
    float: left;
    line-height: 1;
    margin-right: 8px;
    margin-top: 4px;
    color: var(--sage);
    font-weight: 900;
}

.featured__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage);
    padding: 12px 0;
    border-bottom: 2px solid var(--sage);
    transition: all 0.3s;
}

.featured__cta:hover {
    color: #fff;
    border-color: #fff;
    padding-left: 8px;
}

.featured__cta svg { transition: transform 0.3s; }
.featured__cta:hover svg { transform: translateX(4px); }

/* ============================================
   OPINION / COLUMNS
   ============================================ */
.columns-section {
    padding: 48px 0;
}

.columns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.column-piece {
    padding: 0 28px;
    border-right: 1px solid var(--rule);
    cursor: pointer;
}

.column-piece:first-child { padding-left: 0; }
.column-piece:last-child { border-right: none; padding-right: 0; }

.column-piece__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--paper-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headline);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink-muted);
    overflow: hidden;
}

.column-piece__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.column-piece__author {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage-dark);
    margin-bottom: 8px;
}

.column-piece__title {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--ink);
    transition: color 0.2s;
}

.column-piece:hover .column-piece__title { color: var(--accent); }

.column-piece__text {
    font-size: 0.92rem;
    color: var(--ink-light);
    line-height: 1.65;
}

/* ============================================
   EVENTS STRIP
   ============================================ */
.events-strip {
    background: var(--charcoal);
    color: #fff;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.events-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

.events-strip .section-header__title { color: #fff; }
.events-strip .section-header__line { background: rgba(255,255,255,0.3); }
.events-strip .section-header__line::after { background: rgba(255,255,255,0.1); }

.events-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.event-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 24px;
    transition: all 0.3s;
    cursor: pointer;
}

.event-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.event-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 8px;
    margin-bottom: 16px;
}

.event-card__day {
    font-family: var(--font-headline);
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    color: var(--sage);
}

.event-card__month {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.event-card__title {
    font-family: var(--font-headline);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.event-card__detail {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    opacity: 0.7;
}

/* ============================================
   WEATHER & INFO BAR
   ============================================ */
.info-bar {
    background: var(--paper-dark);
    padding: 32px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.info-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.info-item__icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.info-item__label {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-muted);
    margin-bottom: 4px;
}

.info-item__value {
    font-family: var(--font-headline);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
}

/* ============================================
   GALLERY / PHOTO JOURNAL
   ============================================ */
.gallery-section {
    padding: 48px 0;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
}

.gallery-mosaic__item {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-mosaic__item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-mosaic__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='1' height='1' fill='%23000' opacity='0.03'/%3E%3C/svg%3E") repeat;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.gallery-mosaic__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: contrast(1.02) saturate(0.92);
}

.gallery-mosaic__item:hover img { transform: scale(1.05); }

.gallery-mosaic__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s;
    z-index: 2;
}

.gallery-mosaic__item:hover .gallery-mosaic__overlay {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE HOMEPAGE
   ============================================ */
@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 260px 1fr; gap: 32px; }
    .hero__toc-author { display: none; }
    .events-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__cover { max-width: 280px; margin: 0 auto; }
    .hero__toc-author { display: none; }
    .news-grid { grid-template-columns: 1fr; }
    .columns-grid { grid-template-columns: 1fr; }
    .column-piece { padding: 24px 0; border-right: none; border-bottom: 1px solid var(--rule); }
    .column-piece:last-child { border-bottom: none; }
    .events-grid { grid-template-columns: 1fr; }
    .featured__grid { grid-template-columns: 1fr; }
    .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-mosaic__item:nth-child(1) { grid-column: 1 / 3; }
    .info-bar__grid { grid-template-columns: repeat(2, 1fr); }
}
