/* Modern, text-first blog listing. Loaded after the legacy page bundle. */
.breadcrumbs .breadcrumbs-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs .breadcrumbs-item:not(:last-of-type) {
    padding-right: 22px;
}

.breadcrumbs .breadcrumbs-item:not(:last-of-type)::before {
    position: absolute;
    top: 50%;
    right: 7px;
    width: auto;
    height: auto;
    color: #9aa0a6;
    background: transparent;
    border-radius: 0;
    content: "/";
    transform: translateY(-50%);
}

.blog-page {
    max-width: 1280px;
    padding-top: 24px;
    padding-bottom: 88px;
}

.blog-page__header {
    max-width: 760px;
    margin-bottom: 36px;
}

.blog-page__eyebrow {
    margin: 0 0 12px;
    color: #c81e2b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.blog-page h1 {
    margin: 0;
    color: #17191c;
    font-size: clamp(34px, 6vw, 58px);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.08;
    text-transform: none;
}

.blog-page__intro {
    max-width: 680px;
    margin: 18px 0 0;
    color: #5d626a;
    font-size: 16px;
    line-height: 1.7;
}

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

.blog-card {
    min-width: 0;
    margin: 0;
}

.blog-card__link {
    display: flex;
    min-height: 220px;
    height: 100%;
    padding: 24px;
    flex-direction: column;
    color: #17191c;
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 16px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.blog-card__link:hover {
    color: #17191c;
    border-color: #c9cdd3;
    box-shadow: 0 16px 34px rgba(22, 25, 29, .07);
    transform: translateY(-2px);
}

.blog-card__link:focus-visible {
    outline: 3px solid rgba(200, 30, 43, .22);
    outline-offset: 3px;
}

.blog-card__meta {
    display: block;
    margin-bottom: 18px;
    color: #777d86;
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    letter-spacing: .08em;
}

.blog-card__title {
    margin: 0;
    color: inherit;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.018em;
    line-height: 1.3;
    text-transform: none;
}

.blog-card__excerpt {
    display: -webkit-box;
    margin: 16px 0 24px;
    overflow: hidden;
    color: #626872;
    font-size: 15px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog-card__cta {
    display: inline-flex;
    min-height: 44px;
    margin-top: auto;
    align-items: center;
    gap: 10px;
    color: #a81824;
    font-size: 14px;
    font-weight: 600;
}

.blog-card__cta span {
    font-size: 18px;
    transition: transform .2s ease;
}

.blog-card__link:hover .blog-card__cta span {
    transform: translateX(4px);
}

.blog-page .pagination-holder {
    margin: 40px 0 0;
}

.blog-page .pagination-holder a,
.blog-page .pagination-holder span {
    min-width: 42px;
    min-height: 42px;
}

@media (min-width: 768px) {
    .blog-page {
        padding-top: 34px;
        padding-bottom: 110px;
    }

    .blog-page__header {
        margin-bottom: 48px;
    }

    .blog-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .blog-card__link {
        min-height: 270px;
        padding: 30px;
    }

    .blog-card__title {
        font-size: 26px;
        line-height: 1.25;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-card__link,
    .blog-card__cta span {
        transition: none;
    }
}
