/* Scoped presentation for Programming/Scorecards pages. */
.scorecards-page {
    background: #f3f6fa;
    color: #142235;
    font-family: 'Poppins', Arial, sans-serif;
}

.scorecards-page * {
    box-sizing: border-box;
}

.sc-wrap {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.sc-hero {
    min-height: 390px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(5, 13, 27, .94), rgba(15, 42, 62, .76)),
        url('/images/hero.jpg') center/cover no-repeat;
}

.sc-hero--article {
    min-height: 340px;
}

.sc-hero .sc-wrap {
    padding: 76px 0;
}

.sc-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #f3b33d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sc-hero h1,
.sc-panel h2,
.sc-section h2,
.sc-band h2,
.sc-cta h2,
.sc-article h2 {
    margin: 0;
    color: #071d36;
    font-weight: 800;
    line-height: 1.12;
}

.sc-hero h1 {
    max-width: 900px;
    color: #fff;
    font-size: 54px;
    font-weight: 700;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .34);
}

.sc-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .92) !important;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 1px 14px rgba(0, 0, 0, .42);
}

.sc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.sc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 6px;
    background: #b51f31;
    border: 1px solid #b51f31;
    color: #fff !important;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(181, 31, 49, .24);
}

.sc-button:hover {
    background: #941927;
    border-color: #941927;
    color: #fff !important;
    text-decoration: none;
}

.sc-button--alt {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .38);
    box-shadow: none;
}

.sc-main {
    padding: 72px 0;
}

.sc-intro,
.sc-band,
.sc-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
    gap: 24px;
    align-items: start;
}

.sc-panel,
.sc-section,
.sc-band,
.sc-related,
.sc-cta,
.sc-article,
.sc-sidebar {
    background: #fff;
    border: 1px solid #d6e0ec;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.sc-panel,
.sc-section,
.sc-related,
.sc-cta,
.sc-article,
.sc-sidebar {
    padding: 36px;
}

.sc-section,
.sc-band,
.sc-related,
.sc-cta {
    margin-top: 28px;
}

.sc-band {
    padding: 40px;
    background: linear-gradient(135deg, #102033, #24384d);
    color: #fff;
}

.sc-band h2,
.sc-band p,
.sc-cta h2,
.sc-cta p {
    color: #fff !important;
}

.sc-band p {
    color: rgba(255, 255, 255, .84) !important;
}

.sc-rule {
    display: block;
    width: 76px;
    height: 4px;
    margin-bottom: 26px;
    background: #b51f31;
    border-radius: 999px;
}

.sc-panel p,
.sc-section p,
.sc-related p,
.sc-article p,
.sc-sidebar p,
.sc-panel li,
.sc-section li,
.sc-article li {
    color: #3e4c5d;
    font-size: 17px;
    line-height: 1.72;
}

.sc-panel p,
.sc-section p,
.sc-article p {
    margin: 18px 0 0;
}

.sc-panel h3,
.sc-card h3,
.sc-step h3,
.sc-sidebar h3,
.sc-article h3 {
    margin: 0 0 14px;
    color: #102033;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}

.sc-grid,
.sc-steps,
.sc-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.sc-card,
.sc-step,
.sc-faq {
    padding: 24px;
    background: #f8fafc;
    border: 1px solid #dce6f1;
    border-left: 4px solid #b51f31;
    border-radius: 8px;
}

.sc-step span {
    display: inline-flex;
    margin-bottom: 16px;
    color: #b51f31;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}

.sc-proof {
    display: grid;
    gap: 12px;
}

.sc-proof div {
    padding: 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
}

.sc-proof strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 20px;
}

.sc-proof span {
    color: rgba(255, 255, 255, .78);
    line-height: 1.5;
}

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

.sc-link-grid a,
.sc-sidebar a,
.sc-article-nav a,
.sc-article-nav span {
    color: #145b8e;
    font-weight: 800;
    text-decoration: none;
}

.sc-link-grid a {
    display: block;
    padding: 18px;
    background: #f8fafc;
    border: 1px solid #dce6f1;
    border-radius: 8px;
}

.sc-link-grid a:hover,
.sc-sidebar a:hover,
.sc-article-nav a:hover {
    color: #b51f31;
    text-decoration: none;
}

.sc-cta {
    background: #111827;
    color: #fff;
}

.sc-article-layout {
    align-items: start;
}

.sc-article h2 {
    margin-bottom: 18px;
    font-size: 36px;
}

.sc-article h3 {
    margin-top: 28px;
}

.sc-article ul,
.sc-article ol {
    margin: 18px 0 0;
    padding-left: 22px;
}

.sc-article li + li {
    margin-top: 10px;
}

.sc-article-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.sc-article-nav--bottom {
    margin: 34px 0 0;
    padding-top: 24px;
    border-top: 1px solid #dce6f1;
}

.sc-article-nav a,
.sc-article-nav span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid #dce6f1;
    border-radius: 6px;
    background: #f8fafc;
}

.sc-article-nav__all {
    background: #b51f31 !important;
    border-color: #b51f31 !important;
    color: #fff !important;
}

.sc-sidebar {
    position: sticky;
    top: 24px;
}

.sc-sidebar a {
    display: block;
    padding: 11px 0;
    border-top: 1px solid #e5edf5;
    line-height: 1.35;
}

.sc-faq-list {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 980px) {
    .sc-intro,
    .sc-band,
    .sc-grid,
    .sc-steps,
    .sc-link-grid,
    .sc-article-layout {
        grid-template-columns: 1fr;
    }

    .sc-wrap {
        width: min(100% - 28px, 1120px);
    }

    .sc-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .sc-hero {
        min-height: auto;
    }

    .sc-hero .sc-wrap,
    .sc-main {
        padding: 44px 0;
    }

    .sc-panel,
    .sc-section,
    .sc-band,
    .sc-related,
    .sc-cta,
    .sc-article,
    .sc-sidebar {
        padding: 24px;
    }

    .sc-hero h1 {
        font-size: 38px;
    }

    .sc-hero p {
        font-size: 18px;
    }
}

