.blog-page {
    background: #ffffff;
}

.blog-hero {
    padding-top: 152px;
    padding-bottom: 64px;
    background: #ffffff;
}

.blog-hero__title {
    max-width: 900px;
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.08;
}

.blog-hero__lead {
    max-width: 760px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
}

.blog-feed {
    padding-top: 36px;
    background: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.blog-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(11, 36, 56, 0.12);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(11, 36, 56, 0.07);
    transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.blog-card__media {
    display: grid;
    width: 100%;
    aspect-ratio: 16 / 10;
    place-items: center;
    overflow: hidden;
}

.blog-card__media--dark {
    background: #0b2438;
}

.blog-card__media--warm {
    background: #f4eddf;
}

.blog-card__media--contain {
    padding: 18px;
    background: #eef3f7;
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.blog-card__media--contain img {
    object-fit: contain;
}

.blog-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

.blog-card__eyebrow {
    color: var(--gold-700);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-card h3 {
    margin: 12px 0 14px;
    font-size: 20px;
    line-height: 1.35;
}

.blog-card p {
    flex: 1;
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

.blog-card__link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 700;
}

.blog-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform 250ms ease;
}

.blog-card__link:focus-visible {
    outline: 3px solid rgba(208, 164, 37, 0.35);
    outline-offset: 5px;
}

@media (min-width: 700px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1080px) {
    .blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px;
    }
}

@media (hover: hover) {
    .blog-card:hover {
        transform: translateY(-5px);
        border-color: rgba(208, 164, 37, 0.34);
        box-shadow: 0 20px 44px rgba(11, 36, 56, 0.11);
    }

    .blog-card:hover img {
        transform: scale(1.025);
    }

    .blog-card__link:hover svg {
        transform: translateX(3px);
    }
}

@media (max-width: 699px) {
    .blog-hero {
        padding-top: 112px;
        padding-bottom: 44px;
    }

    .blog-hero__lead {
        font-size: 16px;
    }

    .blog-feed {
        padding-top: 20px;
    }

    .blog-card__body {
        padding: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-card,
    .blog-card__media img,
    .blog-card__link svg {
        transition: none;
    }
}
