body { padding-top: 8rem; }
main { padding-bottom: 6rem; }
.blog-header {
    margin: 2rem auto 4rem;
    padding: 5rem 4rem;
    max-width: 1100px;
    background: linear-gradient(180deg, rgba(20, 30, 25, 0.6) 0%, rgba(15, 23, 20, 0) 100%);
    border: 1px solid rgba(201,168,76,0.1);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: radial-gradient(rgba(201,168,76,0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
    pointer-events: none;
}
.blog-header-content {
    position: relative;
    z-index: 2;
}
.blog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--off-white);
    margin-bottom: 1rem;
    line-height: 1.05;
    max-width: 16ch;
}
.blog-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.8;
    max-width: 60ch;
    margin-bottom: 1.75rem;
}
.topic-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.topic-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(201,168,76,0.16);
    background: rgba(255,255,255,0.02);
    color: var(--off-white);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    cursor: none;
    font-family: 'DM Sans', sans-serif;
    border-radius: 999px;
}
.topic-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(201,168,76,0.36);
}
.topic-pill.is-active {
    background: rgba(45,106,79,0.18);
    border-color: var(--gold);
    color: var(--gold);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 4rem;
}
.blog-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(180deg, rgba(18,27,23,0.96) 0%, rgba(14,20,17,0.98) 100%);
    border: 1px solid rgba(201,168,76,0.1);
    padding: 2.2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    min-height: 100%;
    max-height: 520px;
    overflow: hidden;
}
.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,168,76,0.28);
}
.blog-card.is-filtered-out {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    border-width: 0;
    pointer-events: none;
    transform: none;
}
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.blog-card h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    line-height: 1.1;
}
.blog-card h2 a {
    color: var(--off-white);
    text-decoration: none;
}
.blog-card p {
    color: var(--text-muted);
    font-size: 0.97rem;
    margin: 0;
    line-height: 1.75;
}
.blog-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 0.5rem;
}
.read-more,
.secondary-link {
    display: inline-block;
    padding: 0.78rem 1.2rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.read-more {
    background: var(--gold);
    color: var(--accent-ink);
}
.secondary-link {
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--off-white);
}
.read-more:hover,
.secondary-link:hover {
    transform: translateY(-2px);
}
.blog-cta {
    margin: 3rem 4rem 0;
    padding: 2rem;
    border: 1px solid rgba(201,168,76,0.14);
    background: rgba(255,255,255,0.02);
    display: grid;
    gap: 1rem;
}
.blog-cta h2 {
    margin: 0;
    color: var(--off-white);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
}
.blog-cta p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 60ch;
}
.blog-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}
@media (max-width: 768px) {
    body { padding-top: 6rem; }
    .blog-header,
    .blog-grid,
    .blog-cta {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        margin-left: 0;
        margin-right: 0;
    }
    .blog-cta {
        padding-top: 1.6rem;
        padding-bottom: 1.6rem;
    }
}
