/* Scoped presentation for Fillable PDF pages. */
.fillable-pdf-page {
    background: #f3f6fa;
    color: #142235;
    font-family: 'Poppins', Arial, sans-serif;
}

.fillable-pdf-page * {
    box-sizing: border-box;
}

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

.pdf-hero {
    min-height: 410px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(5, 13, 27, .95), rgba(17, 53, 77, .78)),
        url('/images/hero.jpg') center/cover no-repeat;
}

.pdf-hero--article {
    min-height: 345px;
}

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

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

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

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

.pdf-hero p {
    max-width: 780px;
    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);
}

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

.pdf-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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .pdf-sidebar {
        position: static;
    }
}

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

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

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

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

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