/* =====================================================
   EDITORIAL MAGAZIN STYLE (BAZAAR INSPIRED)
===================================================== */

/* GLOBAL RESET FÜR EDITORIAL LOOK */
.featured-post,
.subpage-grid,
.post-list {
    max-width: 1400px;
    margin: 0 auto;
}


/* =====================================================
   HERO / FEATURED ARTICLE
===================================================== */

.featured-post {
    margin: 3rem auto 6rem;
    padding: 0 3rem;
}

.featured-link {
    display: block;
    text-decoration: none;
    color: #000;
}

.featured-link img {
    width: 100%;
    height: 65vh;
    object-fit: cover;
    margin-bottom: 2rem;
}

.featured-overlay {
    max-width: 900px;
}

.featured-overlay .category {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 1.2rem;
}

.featured-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.05;
    font-weight: 700;
}


/* =====================================================
   TOP GRID – EDITORIAL 2-SPALTIG
===================================================== */

.subpage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem 3rem;
    padding: 0 3rem 7rem;
}

.subpage-item {
    text-decoration: none;
    color: #000;
}

.subpage-item img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.subpage-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    line-height: 1.15;
    margin-bottom: 0.6rem;
}

.subpage-item .tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #000;
}


/* =====================================================
   OLDER POSTS – ZEITUNGSLISTE
===================================================== */

.post-list {
    padding: 0 3rem 6rem;
}

.post-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    text-decoration: none;
    color: #000;
    border-top: 1px solid #000;
}

.post-row:last-child {
    border-bottom: 1px solid #000;
}

.post-row img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.post-row .category {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.post-row h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.post-row .excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 700px;
}


/* =====================================================
   KEINE SPIELEREIEN – EDITORIAL RULE
===================================================== */

.featured-link:hover img,
.subpage-item:hover img,
.post-row:hover img {
    transform: none;
}


/* =====================================================
   RESPONSIVE
===================================================== */


@media (max-width: 768px) {
    .featured-link img {
        height: 50vh;
    }

    .featured-overlay h1 {
        font-size: 2.2rem;
    }

    .post-row {
        grid-template-columns: 1fr;
    }

    .post-row img {
        height: auto;
        aspect-ratio: 3 / 2;
    }
}


/* =====================================================
   MOBILE + TABLET – MEHR BREITE
   FEATURED POST + POST LIST
===================================================== */

/* 📱 MOBILE */
@media (max-width: 768px) {

    /* Einzelner Featured Post */
    .featured-post {
        
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Untere Post-Liste */
    .post-list {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* 💻 TABLET */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Einzelner Featured Post */
    .featured-post {
        padding-left: 40px;
        padding-right: 40px;
    }

    /* Untere Post-Liste */
    .post-list {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* Mobile launch polish: less bottom whitespace on category pages */
@media (max-width: 768px) {
  .featured-post {
    margin-bottom: 3rem;
  }

  .post-list {
    padding-bottom: 2.5rem;
  }
}
