/* ===========================
   BLOG LISTING — HERO
=========================== */
.bl-hero {
    padding: 8rem 0 6rem;
    background: #faf9f7;
    border-bottom: 1px solid #ede9e3;
}

.bl-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #1c1c1e;
    margin: 1.4rem 0 2rem;
}

.bl-hero-title em {
    font-style: italic;
    font-weight: 300;
}

.bl-hero-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #8a8480;
    line-height: 1.85;
    max-width: 480px;
}

/* ===========================
   GRID SECTION
=========================== */
.bl-grid-section {
    background: #faf9f7;
    padding: 7rem 0 9rem;
}

.bl-empty {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #b0a898;
    letter-spacing: 0.04em;
    padding: 4rem 0;
}

/* ===========================
   FEATURED POST (first card)
=========================== */
.bl-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #ede9e3;
    text-decoration: none;
    color: inherit;
    margin-bottom: 3rem;
    transition: border-color 0.3s ease;
}

.bl-featured:hover { border-color: #D4C9B8; }

.bl-featured-img {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.bl-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.bl-featured:hover .bl-featured-img img { transform: scale(1.04); }

.bl-img-placeholder {
    width: 100%;
    height: 100%;
    background: #EDE6D8;
}

.bl-featured-body {
    padding: 3rem 3rem 2.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.bl-featured-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(1.6rem, 2.4vw, 2.4rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1c1c1e;
    margin: 0.8rem 0 1rem;
}

.bl-excerpt,
.bl-card-excerpt {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    color: #8a8480;
    line-height: 1.8;
    margin-bottom: 1.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bl-read-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: #b01c0a;
    margin-top: auto;
    transition: letter-spacing 0.25s ease;
}

.bl-featured:hover .bl-read-link { letter-spacing: 0.2em; }

/* ===========================
   META ROW (category · read time)
=========================== */
.bl-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.bl-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b0a898;
}

.bl-dot {
    color: #b01c0a;
    font-size: 0.65rem;
}

.bl-read-time {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: #c8c0b4;
}

.bl-byline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid #f0ece6;
}

.bl-author {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: #8a8480;
}

.bl-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: #b0a898;
}

/* ===========================
   POSTS GRID (remaining cards)
=========================== */
.bl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bl-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid #ede9e3;
    background: #fff;
    transition: border-color 0.3s ease;
}

.bl-card:hover { border-color: #D4C9B8; }

.bl-card-img {
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.bl-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.bl-card:hover .bl-card-img img { transform: scale(1.04); }

.bl-card-img .bl-img-placeholder {
    aspect-ratio: 3 / 2;
    height: auto;
}

.bl-card-body {
    padding: 1.6rem 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bl-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: #1c1c1e;
    margin: 0.6rem 0 0.8rem;
}

.bl-card-excerpt {
    -webkit-line-clamp: 2;
    margin-bottom: 1rem;
}

/* ===========================
   FOOTER CONTACT BLOCK
=========================== */
.footer-contact {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.8rem;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-contact-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #B0A090;
}

.footer-contact-val {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    color: #1C1A16;
    line-height: 1.8;
}

.footer-contact-val a {
    color: #1C1A16;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-val a:hover {
    color: #b01c0a;
}

/* ===========================
   MOBILE
=========================== */
@media (max-width: 768px) {
    .bl-hero {
        padding: 5rem 0 3.5rem;
    }

    .bl-featured {
        grid-template-columns: 1fr;
    }

    .bl-featured-img {
        aspect-ratio: 16 / 9;
    }

    .bl-featured-body {
        padding: 1.8rem 1.4rem;
    }

    .bl-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .bl-grid-section {
        padding: 4rem 0 calc(6rem + 90px + env(safe-area-inset-bottom, 0px));
    }

    footer {
        padding-bottom: calc(3rem + 90px + env(safe-area-inset-bottom, 0px));
    }

    .footer-contact {
        flex-direction: column;
        gap: 1.2rem;
    }
}
