:root {
    --sfcs-blue: #2b84ea;
    --sfcs-blue-dark: #0b376f;
    --sfcs-blue-deep: #082d5d;
    --sfcs-blue-soft: #f2f7fd;
    --sfcs-text: #111111;
    --sfcs-muted: #666b75;
    --sfcs-border: #e1e6ed;
}

.sfcs-archive,
.sfcs-single {
    background: #f5f8fc;
    color: var(--sfcs-text);
    font-family: "Sen", sans-serif;
    min-height: 70vh;
    padding: 120px 0 96px;
}

.sfcs-container {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1240px;
    padding: 0 28px;
    width: 100%;
}

.sfcs-resources-heading h1 {
    font-size: clamp(38px, 3vw, 58px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin: 0 0 54px;
}

.sfcs-resource-tabs {
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--sfcs-border);
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(23, 66, 122, 0.08);
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-bottom: 50px;
    padding: 14px;
}

.sfcs-resource-tabs a {
    align-items: center;
    border-radius: 12px;
    color: #111111;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    min-height: 58px;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.sfcs-resource-tabs a:hover,
.sfcs-resource-tabs a:focus-visible,
.sfcs-resource-tabs a.is-active {
    background: #eaf3ff;
    color: var(--sfcs-blue);
}

.sfcs-section-title {
    border: 1px solid var(--sfcs-border);
    border-radius: 14px;
    margin-bottom: 30px;
    padding: 20px 28px;
}

.sfcs-section-title h2 {
    font-size: 24px;
    line-height: 1.25;
    margin: 0;
}

.sfcs-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sfcs-card {
    background: #ffffff;
    border: 1px solid var(--sfcs-border);
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(20, 48, 88, 0.06);
    display: flex;
    flex-direction: column;
    margin: 0;
    min-width: 0;
    overflow: hidden;
}

.sfcs-card__media {
    align-items: center;
    background: #ffffff;
    display: flex;
    height: 210px;
    justify-content: center;
    overflow: hidden;
    padding: 22px;
}

.sfcs-success-card__media {
    padding: 0;
    position: relative;
}

.sfcs-success-card__media img {
    height: 100%;
    max-height: none;
    max-width: none;
    object-fit: cover;
}

.sfcs-card__badge {
    background: rgba(7, 45, 91, 0.9);
    bottom: 14px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    left: 14px;
    padding: 7px 10px;
    position: absolute;
}

.sfcs-card__media img {
    height: 100%;
    max-height: 150px;
    max-width: 82%;
    object-fit: contain;
    width: 100%;
}

.sfcs-card__placeholder {
    color: var(--sfcs-blue-dark);
    font-size: 24px;
    font-weight: 700;
}

.sfcs-card__body {
    background: var(--sfcs-blue-soft);
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.sfcs-card__body h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px;
}

.sfcs-card__body h3 a {
    color: var(--sfcs-text);
    text-decoration: none;
}

.sfcs-card__body p {
    color: var(--sfcs-muted);
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 20px;
}

.sfcs-button {
    align-items: center;
    background: var(--sfcs-blue);
    border: 0;
    border-radius: 9px;
    color: #ffffff;
    display: inline-flex;
    font-size: 16px;
    font-weight: 700;
    gap: 10px;
    justify-content: center;
    min-height: 48px;
    padding: 10px 24px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.sfcs-button:hover,
.sfcs-button:focus-visible {
    background: #176dcf;
    color: #ffffff;
    transform: translateY(-1px);
}

.sfcs-button--card {
    margin-top: auto;
    width: 100%;
}

.sfcs-button--card span {
    font-size: 28px;
    font-weight: 400;
    line-height: 0;
}

.sfcs-pagination {
    margin-top: 44px;
}

.sfcs-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.sfcs-pagination .page-numbers {
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--sfcs-border);
    border-radius: 8px;
    color: var(--sfcs-text);
    display: inline-flex;
    justify-content: center;
    min-height: 42px;
    min-width: 42px;
    padding: 8px 12px;
    text-decoration: none;
}

.sfcs-pagination .page-numbers.current {
    background: var(--sfcs-blue);
    border-color: var(--sfcs-blue);
    color: #ffffff;
}

.sfcs-empty {
    background: #ffffff;
    border: 1px solid var(--sfcs-border);
    border-radius: 14px;
    padding: 38px;
    text-align: center;
}

.sfcs-resource-card__media {
    background: #eaf1f9;
    padding: 0;
    position: relative;
}

.sfcs-resource-card__media img,
.sfcs-card__media.sfcs-resource-card__media img {
    height: 100%;
    max-height: none;
    max-width: none;
    object-fit: cover;
    width: 100%;
}

.sfcs-resource-card .sfcs-card__meta {
    color: #738097;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.sfcs-legacy-notice {
    background: #ffffff;
    border: 1px solid var(--sfcs-border);
    border-left: 4px solid var(--sfcs-blue);
    border-radius: 10px;
    color: var(--sfcs-muted);
    line-height: 1.55;
    margin-bottom: 24px;
    padding: 16px 20px;
}

.sfcs-resource-detail {
    background: #ffffff;
    border: 1px solid var(--sfcs-border);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(23, 66, 122, 0.08);
    overflow: hidden;
}

.sfcs-resource-detail__header,
.sfcs-resource-detail__content,
.sfcs-resource-detail__action {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    padding-left: 42px;
    padding-right: 42px;
}

.sfcs-resource-detail__header {
    padding-bottom: 32px;
    padding-top: 46px;
}

.sfcs-resource-detail__header .sfcs-kicker {
    color: var(--sfcs-blue);
}

.sfcs-resource-detail__header h1 {
    font-size: clamp(36px, 5vw, 54px);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin: 0;
}

.sfcs-resource-detail__summary {
    color: var(--sfcs-muted);
    font-size: 19px;
    line-height: 1.6;
    margin: 18px 0 0;
}

.sfcs-resource-detail__media {
    background: #eaf1f9;
    max-height: 620px;
    overflow: hidden;
}

.sfcs-resource-detail__media img {
    display: block;
    height: auto;
    margin: 0 auto;
    max-height: 620px;
    max-width: 100%;
    object-fit: contain;
    width: auto;
}

.sfcs-resource-detail__content {
    padding-bottom: 24px;
    padding-top: 40px;
}

.sfcs-resource-detail__action {
    padding-bottom: 46px;
    padding-top: 12px;
}

.sfcs-back {
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--sfcs-border);
    border-radius: 8px;
    color: var(--sfcs-blue);
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    gap: 6px;
    margin-bottom: 28px;
    min-height: 44px;
    padding: 8px 18px;
    text-decoration: none;
}

.sfcs-back span {
    font-size: 26px;
    line-height: 0;
}

.sfcs-hero {
    background: linear-gradient(118deg, #062954 0%, #0b3c78 47%, #287fe2 100%);
    border-radius: 16px;
    box-shadow: 0 22px 44px rgba(16, 52, 97, 0.16);
    display: grid;
    gap: 46px;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    margin-bottom: 44px;
    overflow: hidden;
    padding: 44px;
    position: relative;
}

.sfcs-hero::before {
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.sfcs-hero__media,
.sfcs-hero__content {
    position: relative;
    z-index: 1;
}

.sfcs-hero__media {
    align-self: center;
    min-height: 330px;
}

.sfcs-hero__image {
    border: 2px solid rgba(255, 255, 255, 0.23);
    border-radius: 16px;
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.sfcs-hero__logo {
    align-items: center;
    background: #ffffff;
    border-radius: 11px;
    box-shadow: 0 8px 24px rgba(5, 24, 51, 0.18);
    display: flex;
    justify-content: center;
    max-width: 130px;
    padding: 10px 15px;
    position: absolute;
    right: 18px;
    top: 18px;
}

.sfcs-hero__logo img {
    height: auto;
    max-height: 54px;
    object-fit: contain;
    width: 100%;
}

.sfcs-hero__content {
    align-self: center;
    color: #ffffff;
}

.sfcs-eyebrow,
.sfcs-kicker {
    color: #f5b942;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.4;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.sfcs-hero h1 {
    color: #ffffff;
    font-size: clamp(30px, 4vw, 47px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.18;
    margin: 0 0 30px;
}

.sfcs-process {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
}

.sfcs-process span,
.sfcs-tags span {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
}

.sfcs-process b {
    color: #f5b942;
}

.sfcs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sfcs-tags span {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 7px;
}

.sfcs-tags span::before {
    color: #f5b942;
    content: "•";
    margin-right: 8px;
}

.sfcs-intro {
    margin: 0 0 38px;
}

.sfcs-intro .sfcs-kicker {
    color: var(--sfcs-blue);
    margin-bottom: 16px;
}

.sfcs-intro h2 {
    font-size: clamp(34px, 4vw, 48px);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0 0 14px;
}

.sfcs-intro > p:last-child {
    color: var(--sfcs-muted);
    font-size: 19px;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.sfcs-highlights {
    background: var(--sfcs-blue-deep);
    border-radius: 14px;
    color: #ffffff;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 34px;
    overflow: hidden;
}

.sfcs-highlights > div {
    padding: 30px 26px;
    text-align: center;
}

.sfcs-highlights > div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.sfcs-highlights h3 {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.sfcs-highlights p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.sfcs-summary-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 38px;
}

.sfcs-key-results,
.sfcs-profile {
    border-radius: 14px;
    padding: 30px;
}

.sfcs-key-results {
    background: var(--sfcs-blue-deep);
    color: #ffffff;
}

.sfcs-profile {
    background: #f7faff;
    border: 1px solid var(--sfcs-border);
}

.sfcs-key-results h2,
.sfcs-profile h2 {
    font-size: 15px;
    letter-spacing: 0.08em;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.sfcs-key-results h2 {
    color: #ffffff;
}

.sfcs-key-results ul {
    display: grid;
    gap: 11px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sfcs-key-results li {
    color: #ffffff;
    line-height: 1.55;
    padding-left: 18px;
    position: relative;
}

.sfcs-key-results li::before {
    color: #f5b942;
    content: "•";
    left: 0;
    position: absolute;
}

.sfcs-profile p {
    color: var(--sfcs-muted);
    line-height: 1.55;
    margin: 0 0 9px;
}

.sfcs-profile strong {
    color: #343943;
}

.sfcs-content-layout {
    align-items: start;
    display: grid;
    gap: 38px;
    grid-template-columns: 250px minmax(0, 1fr);
}

.sfcs-on-this-page {
    background: #ffffff;
    border: 1px solid var(--sfcs-border);
    border-radius: 14px;
    padding: 22px 0;
    position: sticky;
    top: 110px;
}

.sfcs-on-this-page > p {
    color: #61708b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin: 0;
    padding: 0 22px 13px;
    text-transform: uppercase;
}

.sfcs-on-this-page nav {
    display: grid;
}

.sfcs-on-this-page a {
    border-left: 3px solid transparent;
    color: #60708a;
    font-size: 14px;
    padding: 11px 22px;
    text-decoration: none;
}

.sfcs-on-this-page a:hover,
.sfcs-on-this-page a:focus-visible {
    background: #eff6ff;
    border-left-color: var(--sfcs-blue);
    color: var(--sfcs-blue);
}

.sfcs-story-content {
    min-width: 0;
}

.sfcs-story-content section {
    scroll-margin-top: 130px;
}

.sfcs-story-content section + section {
    margin-top: 48px;
}

.sfcs-story-content h2 {
    font-size: 28px;
    line-height: 1.25;
    margin: 0 0 18px;
}

.sfcs-rich-text,
.sfcs-rich-text p,
.sfcs-rich-text li {
    color: var(--sfcs-muted);
    font-size: 17px;
    line-height: 1.75;
}

.sfcs-rich-text > :first-child {
    margin-top: 0;
}

.sfcs-rich-text > :last-child {
    margin-bottom: 0;
}

.sfcs-cta {
    align-items: center;
    background: linear-gradient(120deg, var(--sfcs-blue-deep), #145daf);
    border-radius: 16px;
    color: #ffffff;
    display: flex;
    gap: 32px;
    justify-content: space-between;
    margin-top: 60px;
    padding: 38px;
}

.sfcs-cta h2 {
    color: #ffffff;
    font-size: 28px;
    margin: 0 0 8px;
}

.sfcs-cta p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .sfcs-resource-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sfcs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sfcs-hero {
        gap: 30px;
        grid-template-columns: 1fr 1fr;
        padding: 32px;
    }

    .sfcs-content-layout {
        grid-template-columns: 210px minmax(0, 1fr);
    }
}

@media (max-width: 767px) {
    .sfcs-archive,
    .sfcs-single {
        padding: 32px 0 64px;
    }

    .sfcs-container {
        padding: 0 18px;
    }

    .sfcs-resources-heading h1 {
        margin-bottom: 32px;
    }

    .sfcs-resource-tabs {
        display: flex;
        margin: 0 -18px 34px;
        overflow-x: auto;
        padding: 10px 18px;
        scroll-snap-type: x proximity;
    }

    .sfcs-resource-tabs a {
        flex: 0 0 auto;
        min-height: 48px;
        scroll-snap-align: start;
    }

    .sfcs-grid,
    .sfcs-hero,
    .sfcs-summary-grid,
    .sfcs-content-layout {
        grid-template-columns: 1fr;
    }

    .sfcs-hero {
        padding: 22px;
    }

    .sfcs-hero__media {
        min-height: 245px;
    }

    .sfcs-hero h1 {
        font-size: 32px;
    }

    .sfcs-highlights {
        grid-template-columns: 1fr;
    }

    .sfcs-highlights > div + div {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .sfcs-on-this-page {
        position: static;
    }

    .sfcs-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .sfcs-resource-detail__header,
    .sfcs-resource-detail__content,
    .sfcs-resource-detail__action {
        padding-left: 22px;
        padding-right: 22px;
    }
}

/* Resource archive filters and cards — intentionally placed last so the
   legacy Resources-page styles cannot override the new archive layout. */
.sfcs-archive .sfcs-filter-heading {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    margin-bottom: 28px;
}

.sfcs-archive .sfcs-filter-heading h2 {
    color: var(--sfcs-text);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

.sfcs-archive .sfcs-search-form {
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--sfcs-border);
    border-radius: 12px;
    color: #556e95;
    display: flex;
    gap: 13px;
    min-height: 58px;
    padding: 0 20px;
    position: relative;
}

.sfcs-archive .sfcs-search-form input[type="search"] {
    appearance: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: var(--sfcs-text);
    flex: 1;
    font-family: inherit;
    font-size: 16px;
    height: 56px;
    min-width: 0;
    outline: 0;
    padding: 0;
    width: 100%;
}

.sfcs-archive .sfcs-search-form input[type="search"]::placeholder {
    color: #7d8490;
    opacity: 1;
}

.sfcs-archive .screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}

.sfcs-archive .sfcs-search-form .sfcs-search-submit {
    align-items: center;
    background: transparent;
    border: 0;
    color: #556e95;
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 28px;
    height: 40px;
    justify-content: center;
    padding: 0;
    position: static;
    width: 28px;
}

.sfcs-archive .sfcs-search-form .sfcs-search-submit:hover,
.sfcs-archive .sfcs-search-form .sfcs-search-submit:focus-visible {
    color: var(--sfcs-blue);
}

.sfcs-archive .sfcs-filter-pills {
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--sfcs-border);
    border-radius: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 36px;
    padding: 18px 24px;
}

.sfcs-archive .sfcs-filter-pill {
    align-items: center;
    background: #ffffff;
    border: 1px solid #d9e3ef;
    border-radius: 999px;
    color: #183b69;
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.2;
    min-height: 46px;
    padding: 10px 22px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sfcs-archive .sfcs-filter-pill:hover,
.sfcs-archive .sfcs-filter-pill:focus-visible,
.sfcs-archive .sfcs-filter-pill.is-active {
    background: var(--sfcs-blue);
    border-color: var(--sfcs-blue);
    color: #ffffff;
}

.sfcs-archive .sfcs-grid {
    align-items: stretch;
    gap: 36px 28px;
}

.sfcs-archive .sfcs-resource-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    min-height: 430px;
    overflow: visible;
}

.sfcs-archive .sfcs-resource-card .sfcs-resource-card__media {
    aspect-ratio: 1.95 / 1;
    background: #eaf1f9;
    border-radius: 14px;
    box-sizing: border-box;
    height: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%;
}

.sfcs-archive .sfcs-resource-card .sfcs-resource-card__media img {
    display: block;
    height: 100% !important;
    margin: 0 !important;
    max-height: none !important;
    max-width: none !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
    width: 100% !important;
}

.sfcs-archive .sfcs-resource-card--contain .sfcs-resource-card__media {
    background: #ffffff;
    border: 1px solid var(--sfcs-border);
    padding: 28px;
}

.sfcs-archive .sfcs-resource-card--contain .sfcs-resource-card__media img {
    object-fit: contain !important;
}

.sfcs-archive .sfcs-resource-card:hover .sfcs-resource-card__media img {
    transform: scale(1.025);
}

.sfcs-archive .sfcs-resource-card .sfcs-card__badge {
    align-items: center;
    background: rgba(24, 31, 38, 0.86) !important;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 8px;
    bottom: auto !important;
    color: #ffffff !important;
    display: inline-flex !important;
    font-size: 13px !important;
    font-weight: 600;
    height: auto !important;
    left: 18px !important;
    line-height: 1.25;
    margin: 0 !important;
    max-width: calc(100% - 36px);
    padding: 9px 14px !important;
    position: absolute !important;
    right: auto !important;
    text-align: left;
    top: 18px !important;
    width: auto !important;
    z-index: 2;
}

.sfcs-archive .sfcs-resource-card .sfcs-card__body {
    background: transparent;
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 218px;
    padding: 18px 22px 0;
}

.sfcs-archive .sfcs-resource-card .sfcs-card__body h3 {
    display: -webkit-box;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.sfcs-archive .sfcs-resource-card .sfcs-card__body h3 a {
    color: var(--sfcs-text);
}

.sfcs-archive .sfcs-resource-card .sfcs-card__body > p {
    display: -webkit-box;
    line-height: 1.55;
    margin: 10px 0 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.sfcs-archive .sfcs-card__footer {
    align-items: flex-end;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin: 0px -22px 0 0;
    padding-top: 10px;
}

.sfcs-archive .sfcs-reading-time {
    color: #667085;
    font-size: 14px;
    line-height: 1.4;
    padding-bottom: 16px;
}

.sfcs-archive .sfcs-card__arrow {
    align-items: center;
    background: transparent;
    border: 1px solid #dbe3ed;
    border-radius: 12px 0 12px 0;
    color: var(--sfcs-blue);
    display: inline-flex;
    flex: 0 0 66px;
    font-size: 39px;
    font-weight: 300;
    height: 66px;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sfcs-archive .sfcs-card__arrow:hover,
.sfcs-archive .sfcs-card__arrow:focus-visible {
    background: var(--sfcs-blue);
    border-color: var(--sfcs-blue);
    color: #ffffff;
}

.sfcs-archive .sfcs-pagination .nav-links {
    gap: 14px;
}

.sfcs-archive .sfcs-pagination .page-numbers {
    border-color: #9eb7d5;
    border-radius: 999px;
    min-height: 48px;
    min-width: 48px;
}

@media (max-width: 1024px) {
    .sfcs-archive .sfcs-filter-heading {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    }
}

@media (max-width: 767px) {
    .sfcs-archive .sfcs-filter-heading {
        align-items: stretch;
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .sfcs-archive .sfcs-filter-pills {
        flex-wrap: nowrap;
        margin-left: -18px;
        margin-right: -18px;
        overflow-x: auto;
        padding-left: 18px;
        padding-right: 18px;
        scrollbar-width: thin;
    }

    .sfcs-archive .sfcs-filter-pill {
        flex: 0 0 auto;
    }

    .sfcs-archive .sfcs-resource-card {
        min-height: 0;
    }

    .sfcs-archive .sfcs-resource-card .sfcs-card__body {
        min-height: 205px;
    }
}
