:root {
    --burgundy: #8d001c;
    --burgundy-dark: #620012;
    --gold: #d6a13a;
    --brand-blue: #1e73be;
    --brand-navy: #0e2a47;
    --brand-navy-deep: #091d33;
    --ink: #191923;
    --muted: #5e6272;
    --line: #e5e7eb;
    --surface: #ffffff;
    --soft: #f6f4f1;
    --header-width: min(1500px, calc(100% - 2rem));
    --hero-width: min(1420px, calc(100% - 5rem));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    color: var(--ink);
    font-family: "Inter", "Open Sans", Arial, sans-serif;
    line-height: 1.45;
}

body {
    margin: 0;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin: 0;
}

.site-shell {
    min-height: 100vh;
    background: var(--surface);
}

.header-shell {
    background: #fff;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    background: linear-gradient(90deg, var(--brand-navy-deep), var(--brand-navy), var(--brand-navy-deep));
    color: #fff;
    font-size: 0.94rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(8, 26, 45, 0.12);
}

.topbar .main-nav {
    width: var(--header-width);
    justify-content: flex-start;
    padding: 0.65rem 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
}

.topbar a {
    opacity: 1;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--header-width);
    margin: 0 auto;
    min-height: 126px;
    background: #fff;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: 82px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    color: #23314a;
    font-size: 0.9rem;
    white-space: nowrap;
}

.main-nav a {
    position: relative;
    z-index: 0;
    overflow: hidden;
    padding: 0.38rem 0.95rem;
    border-radius: 999px;
    transition: color 0.25s ease;
}

.main-nav .policy-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 11.8rem;
    min-height: 2.7rem;
    text-align: center;
    line-height: 1.18;
    white-space: normal;
}

.main-nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s ease;
}

.main-nav a.active {
    color: var(--brand-navy-deep);
    font-weight: 700;
}

.main-nav a.active::before {
    transform: scaleX(1);
}

.topbar .main-nav a:hover,
.topbar .main-nav a:focus-visible {
    color: var(--brand-navy-deep);
}

.topbar .main-nav a:hover::before,
.topbar .main-nav a:focus-visible::before {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-left: auto;
}

.header-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-navy);
    font-size: 0.98rem;
    font-weight: 600;
    padding-right: 0.15rem;
}

.contact-icon {
    display: block;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.incident-button,
.primary-button,
.secondary-button,
.contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 4px;
    font-weight: 750;
}

.incident-button {
    min-height: 48px;
    padding: 0 1.15rem;
    background: var(--brand-blue);
    color: #fff;
    font-size: 0.96rem;
    box-shadow: 0 12px 28px rgba(30, 115, 190, 0.22);
}

.incident-button span {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand-blue);
}

.hero {
    width: var(--hero-width);
    margin: 4.4rem auto 3.4rem;
    min-height: 420px;
    overflow: hidden;
    position: relative;
    background: #0c2340;
    border-radius: 0;
    box-shadow: 0 26px 60px rgba(9, 29, 51, 0.18);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 50%, rgba(41, 63, 96, 0.34), transparent 30%),
        linear-gradient(90deg, #10192c 0%, #141f37 58%, #1a2743 100%);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 76% center;
    display: block;
    transform: scale(1.03);
}

.hero-slide-campus-alt .hero-media img,
.hero-slide-lab .hero-media img,
.hero-slide-health .hero-media img,
.hero-slide-campus-green .hero-media img,
.hero-fit-contain .hero-media img {
    object-fit: contain;
    transform: scale(0.94);
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 29, 51, 0.97) 0%, rgba(9, 29, 51, 0.9) 24%, rgba(14, 42, 71, 0.7) 52%, rgba(14, 42, 71, 0.22) 100%),
        linear-gradient(135deg, rgba(30, 115, 190, 0.22), transparent 42%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding: 0 5.2rem;
    color: #fff;
}

.eyebrow {
    margin-bottom: 0.65rem;
    color: #bfdcff;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1 {
    max-width: 650px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 3.5vw, 3.55rem);
    line-height: 1.08;
    font-weight: 800;
}

.hero p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 1rem;
    font-size: 1.05rem;
    text-wrap: balance;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.7rem;
}

.primary-button,
.secondary-button {
    min-width: 205px;
    min-height: 50px;
    padding: 0 1.2rem;
}

.primary-button {
    background: var(--brand-blue);
    color: #fff;
}

.secondary-button {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.primary-button::after,
.secondary-button::after {
    content: ">";
    font-size: 1.2rem;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(9, 29, 51, 0.42);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(30, 115, 190, 0.72);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-arrow-prev {
    left: 1rem;
}

.hero-arrow-next {
    right: 1rem;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 1.55rem;
    z-index: 3;
    display: flex;
    gap: 0.7rem;
    transform: translateX(-50%);
}

.hero-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    background: #fff;
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .hero {
        width: min(1320px, calc(100% - 2.5rem));
        min-height: 460px;
        margin: 3rem auto 3rem;
    }

    .hero-content {
        padding: 0 3.4rem;
    }

    .hero h1 {
        max-width: 600px;
        font-size: clamp(2.2rem, 5vw, 3.4rem);
    }

    .hero p:not(.eyebrow) {
        max-width: 560px;
        font-size: 1.08rem;
    }

}

.role-grid,
.content-band,
.resource-section,
.resource-hero-grid,
.news-alerts-section {
    width: min(1100px, calc(100% - 2rem));
    margin: 0 auto;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
    padding: 2rem 0 1.15rem;
}

.role-card,
.service-card,
.info-panel,
.faq-list button,
.contact-form input,
.contact-form textarea {
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 12px 34px rgba(18, 28, 45, 0.05);
}

.role-card {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0;
    min-height: 320px;
    padding: 0;
    border: 1px solid rgba(17, 39, 68, 0.08);
    border-radius: 18px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.role-card::before {
    content: none;
}

.role-card h2,
.info-panel h2,
.section-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 800;
}

.role-card h2 {
    margin-top: 0;
    font-size: 1.18rem;
    line-height: 1.16;
    color: #14233c;
}

.role-card p,
.service-card p {
    color: var(--muted);
    font-size: 0.9rem;
}

.role-card p {
    margin-top: 0.7rem;
    font-size: 0.93rem;
    line-height: 1.58;
    color: #4c5d73;
}

.role-card-media {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 152px;
    padding: 1rem 1.2rem 0.95rem;
    overflow: hidden;
}

.role-card-media > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.role-card-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 20, 38, 0.14), rgba(8, 20, 38, 0.46));
}

.role-card-media::after {
    content: "";
    position: absolute;
    inset: auto -18px -44px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.role-card-media-blue {
    background:
        linear-gradient(135deg, #0a4f99, #1e73be 58%, #3f96e4);
}

.role-card-media-gold {
    background:
        linear-gradient(135deg, #9b6a10, #d7a437 55%, #e8c36b);
}

.role-card-media-burgundy {
    background:
        linear-gradient(135deg, #5d0c22, #8d1734 55%, #b32a4d);
}

.role-card-tag {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.role-card-body {
    display: grid;
    align-content: start;
    gap: 0;
    padding: 1.25rem 1.2rem 1.2rem;
}

.role-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    color: var(--brand-blue);
    font-size: 0.84rem;
    font-weight: 700;
}

.role-card-link::after {
    content: ">";
    font-size: 1rem;
}

.line-icon,
.service-icon {
    display: inline-block;
    color: var(--burgundy);
    position: relative;
}

.line-icon {
    position: absolute;
    z-index: 1;
    left: 1.2rem;
    bottom: 1rem;
    width: 62px;
    height: 62px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        0 12px 24px rgba(11, 25, 46, 0.14);
}

.shield-icon::after {
    content: "";
    position: absolute;
    inset: 15px 19px 14px;
    border: 3px solid currentColor;
    border-top-width: 4px;
    clip-path: polygon(50% 0, 100% 18%, 88% 75%, 50% 100%, 12% 75%, 0 18%);
}

.shield-icon {
    color: #fff;
}

.user-icon {
    color: #fff;
}

.user-icon::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 14px;
    width: 18px;
    height: 18px;
    border: 3px solid currentColor;
    border-radius: 50%;
}

.user-icon::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 34px;
    width: 34px;
    height: 14px;
    border: 3px solid currentColor;
    border-radius: 18px 18px 0 0;
    border-bottom: 0;
}

.checklist-icon {
    color: #fff;
}

.checklist-icon::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 14px;
    width: 24px;
    height: 31px;
    border: 3px solid currentColor;
    border-radius: 5px;
}

.checklist-icon::after {
    content: "";
    position: absolute;
    left: 25px;
    top: 27px;
    width: 13px;
    height: 8px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(-45deg);
}

.content-band {
    display: block;
    padding: 0.5rem 0 1.5rem;
}

.section-heading h2 {
    font-size: 1.35rem;
}

.section-heading h2::after,
.info-panel h2::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-top: 0.45rem;
    background: var(--burgundy);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.service-card {
    min-height: 205px;
    padding: 1.05rem 0.75rem;
    border-radius: 8px;
    text-align: center;
}

.service-card h3 {
    min-height: 45px;
    margin-top: 0.75rem;
    font-size: 0.96rem;
    line-height: 1.18;
    font-weight: 800;
}

.service-card p {
    margin-top: 0.45rem;
    font-size: 0.76rem;
}

.service-card::after,
.document-panel a::after,
.faq-list button::after {
    content: ">";
    display: block;
    margin-top: 0.8rem;
    color: var(--ink);
    font-size: 1.25rem;
    line-height: 1;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--burgundy);
    color: #fff;
}

.service-card:nth-child(even) .service-icon {
    background: var(--gold);
}

.service-icon::before,
.service-icon::after {
    content: "";
    position: absolute;
}

.person-icon::before {
    left: 18px;
    top: 11px;
    width: 14px;
    height: 14px;
    border: 3px solid currentColor;
    border-radius: 50%;
}

.person-icon::after {
    left: 13px;
    top: 30px;
    width: 24px;
    height: 11px;
    border: 3px solid currentColor;
    border-radius: 16px 16px 0 0;
    border-bottom: 0;
}

.alert-icon::before {
    left: 15px;
    top: 11px;
    width: 20px;
    height: 20px;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 28px solid currentColor;
    background: transparent;
}

.alert-icon::after {
    left: 24px;
    top: 26px;
    width: 3px;
    height: 10px;
    background: var(--gold);
    box-shadow: 0 14px 0 var(--gold);
}

.document-icon::before {
    left: 15px;
    top: 10px;
    width: 22px;
    height: 30px;
    border: 3px solid currentColor;
    border-radius: 3px;
}

.document-icon::after {
    left: 21px;
    top: 22px;
    width: 12px;
    height: 3px;
    background: currentColor;
    box-shadow: 0 7px 0 currentColor;
}

.cap-icon::before {
    left: 10px;
    top: 16px;
    width: 30px;
    height: 18px;
    border: 3px solid currentColor;
    transform: skewX(-22deg) rotate(-18deg);
}

.cap-icon::after {
    left: 18px;
    top: 31px;
    width: 21px;
    height: 9px;
    border-bottom: 3px solid currentColor;
    border-radius: 0 0 50% 50%;
}

.info-panel {
    min-height: 235px;
    padding: 1.35rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff, #f7f7f7);
}

.info-panel h2 {
    font-size: 1.05rem;
    line-height: 1.2;
}

.check-list {
    display: grid;
    gap: 0.92rem;
    margin: 1.25rem 0 0;
    padding: 0;
    color: var(--muted);
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.9rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.18rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--burgundy);
}

.check-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 0.52rem;
    width: 7px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.document-panel {
    display: grid;
    align-content: start;
    gap: 0.9rem;
}

.document-panel a {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.75rem;
    color: #303442;
    font-size: 0.84rem;
}

.document-panel a::after {
    margin: 0;
    font-size: 1rem;
    color: var(--muted);
}

.resource-hero-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
    padding: 1rem 0 1.6rem;
}

.resource-hero-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 300px;
    min-height: 300px;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(180deg, #07182f 0%, #020c19 100%);
    box-shadow: 0 18px 42px rgba(9, 29, 51, 0.14);
}

.resource-hero-card > img {
    width: 100%;
    height: 60%;
    object-fit: cover;
    object-position: center top;
    display: block;
    flex: 0 0 auto;
}

.resource-hero-overlay {
    position: absolute;
    right: 0;
    left: 0;
    top: calc(60% - 52px);
    z-index: 1;
    height: 82px;
    background: linear-gradient(180deg, rgba(3, 13, 27, 0) 0%, rgba(3, 13, 27, 0.18) 36%, rgba(3, 13, 27, 0.58) 70%, #030d1b 100%);
    pointer-events: none;
}

.resource-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 auto;
    min-height: 112px;
    margin-top: -38px;
    padding: 3rem 1.35rem 1.25rem;
    background:
        radial-gradient(circle at 22% 20%, rgba(30, 115, 190, 0.16), transparent 38%),
        linear-gradient(180deg, rgba(3, 13, 27, 0) 0%, rgba(3, 13, 27, 0.82) 26%, #030d1b 42%, #020915 100%);
    color: #fff;
}

.resource-hero-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    line-height: 1.12;
    font-weight: 800;
}

.resource-heading-link {
    display: grid;
    gap: 0.28rem;
    color: #fff;
}

.resource-heading-link span {
    color: #bfdcff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.resource-heading-link strong {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.75rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    line-height: 1.12;
    font-weight: 800;
}

.resource-heading-link strong::after {
    content: ">";
    font-family: "Inter", "Open Sans", Arial, sans-serif;
    font-size: 1.05rem;
}

.news-alerts-section {
    margin-top: 0.2rem;
    padding: 1.4rem 0 1.2rem;
}

.news-alerts-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.news-alerts-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.1rem;
    color: var(--brand-blue);
    font-size: 0.86rem;
    font-weight: 800;
}

.news-alerts-heading > a::after {
    content: ">";
    font-size: 1.15rem;
    line-height: 1;
}

.news-alerts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 1.05rem;
}

.template-newsindexpage .news-alerts-grid {
    max-width: 780px;
    margin: 1.05rem auto 0;
    grid-template-columns: repeat(2, 1fr);
}

.news-index-tabs {
    max-width: 780px;
    margin: 1.45rem auto 0;
}

.news-alert-card {
    overflow: hidden;
    border: 1px solid rgba(17, 39, 68, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(18, 28, 45, 0.06);
}

.news-alert-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--brand-navy);
}

.news-alert-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-alert-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 29, 51, 0.1), rgba(9, 29, 51, 0.28));
}

.news-alert-tag {
    position: absolute;
    left: 0.8rem;
    bottom: 0;
    z-index: 1;
    width: fit-content;
    min-height: 28px;
    padding: 0.34rem 0.65rem;
    border-radius: 4px 4px 0 0;
    background: var(--brand-blue);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
}

.news-video-badge {
    position: absolute;
    right: 0.75rem;
    bottom: 0.65rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    min-height: 28px;
    padding: 0.32rem 0.6rem;
    border-radius: 999px;
    background: rgba(2, 12, 25, 0.82);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
}

.news-video-badge::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid currentColor;
}

.news-alert-body {
    padding: 0.85rem 0.9rem 1rem;
}

.news-alert-body time {
    display: block;
    color: #6b7280;
    font-size: 0.74rem;
    font-weight: 650;
}

.news-alert-body .news-alert-section {
    margin-top: 0.24rem;
    color: var(--brand-blue);
    font-size: 0.72rem;
    line-height: 1.35;
    font-weight: 800;
}

.news-alert-body h3 {
    margin-top: 0.35rem;
    color: #14233c;
    font-size: 0.94rem;
    line-height: 1.22;
    font-weight: 800;
}

.news-alert-body p {
    margin-top: 0.55rem;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

.news-alert-body a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.8rem;
    color: var(--brand-blue);
    font-size: 0.8rem;
    font-weight: 800;
}

.news-alert-body a::after {
    content: ">";
    font-size: 1rem;
}

.content-page {
    width: min(1100px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 3rem 0 3.5rem;
}

.content-page-header {
    max-width: 760px;
    margin-bottom: 1.4rem;
}

.content-page-header h1 {
    color: #14233c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 800;
}

.content-page-header > p:not(.eyebrow) {
    margin-top: 0.85rem;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.article-hero-image {
    display: block;
    width: 100%;
    max-height: 520px;
    margin: 1.4rem 0;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(9, 29, 51, 0.12);
}

.article-hero-image-politica-de-privacidad {
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center center;
}

.article-video-player {
    width: min(780px, 100%);
    margin: 1.25rem auto;
    overflow: hidden;
    border-radius: 8px;
    background: #061a33;
    box-shadow: 0 18px 42px rgba(9, 29, 51, 0.12);
}

.article-video-player iframe,
.article-video-player video,
.article-video-player embed,
.article-video-player object {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
}

.article-video-fallback {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-height: 168px;
    padding: 1.25rem;
    background:
        linear-gradient(135deg, rgba(30, 115, 190, 0.28), transparent 52%),
        linear-gradient(180deg, #07182f, #020c19);
    color: #fff;
}

.article-video-player iframe + .article-video-fallback {
    display: none;
}

.article-video-play {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--brand-blue);
    box-shadow: 0 12px 28px rgba(30, 115, 190, 0.28);
}

.article-video-play::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #fff;
}

.article-video-fallback strong,
.article-video-fallback small {
    display: block;
}

.article-video-fallback strong {
    font-size: 1rem;
    font-weight: 800;
}

.article-video-fallback small {
    margin-top: 0.2rem;
    color: #bfdcff;
    font-size: 0.82rem;
    line-height: 1.45;
}

.role-detail-page .article-hero-image {
    width: min(780px, 100%);
    height: 370px;
    max-height: 370px;
    margin-right: auto;
    margin-left: auto;
    background: #061a33;
    object-fit: contain;
    object-position: center center;
}

.role-detail-page .content-page-header,
.role-detail-page .article-body {
    margin-right: auto;
    margin-left: auto;
}

.role-detail-page .content-page-header {
    text-align: left;
}

.role-detail-page .content-page-header h1 {
    font-size: clamp(1.75rem, 3.2vw, 2.45rem);
}

.role-detail-page .content-page-header > p:not(.eyebrow),
.role-detail-page .article-body,
.role-detail-page .role-function-item p,
.role-detail-page .role-source-note {
    text-align: justify;
}

.template-resourcepage .content-page-header,
.template-resourcepage .article-body,
.template-newspage .content-page-header,
.template-newspage .article-body,
.template-normative-documents-page .content-page-header,
.template-normative-documents-page .article-body,
.template-faq-page .content-page-header,
.template-faq-page .article-body,
.template-newsindexpage .content-page-header {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
}

.template-resourcepage .article-hero-image,
.template-newspage .article-hero-image,
.template-normative-documents-page .article-hero-image,
.template-faq-page .article-hero-image {
    width: min(780px, 100%);
    height: 370px;
    max-height: 370px;
    margin-right: auto;
    margin-left: auto;
    background: #061a33;
    object-fit: contain;
    object-position: center center;
}

.template-resourcepage .content-page-header h1,
.template-newspage .content-page-header h1,
.template-normative-documents-page .content-page-header h1,
.template-faq-page .content-page-header h1,
.template-newsindexpage .content-page-header h1 {
    font-size: clamp(1.75rem, 3.2vw, 2.45rem);
}

.template-resourcepage .content-page-header > p:not(.eyebrow),
.template-resourcepage .article-body,
.template-newspage .content-page-header > p:not(.eyebrow),
.template-newspage .article-body,
.template-normative-documents-page .content-page-header > p:not(.eyebrow),
.template-normative-documents-page .article-body,
.template-faq-page .content-page-header > p:not(.eyebrow),
.template-faq-page .article-body,
.template-newsindexpage .content-page-header > p:not(.eyebrow),
.template-newsindexpage .news-alert-body p,
.template-normative-documents-page .document-library-card p,
.template-faq-page .faq-topic-button small,
.template-faq-page .faq-answer {
    text-align: justify;
}

.article-body {
    max-width: 780px;
    color: #303442;
    font-size: 1rem;
    line-height: 1.75;
}

.article-body h2,
.article-body h3 {
    margin-top: 1.5rem;
    color: #14233c;
    line-height: 1.2;
}

.article-body p,
.article-body ul,
.article-body ol {
    margin-top: 1rem;
}

.support-hub {
    display: grid;
    gap: 0.95rem;
    margin-top: 1.25rem;
}

.support-hub-premium {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
}

.support-hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
    gap: 1.1rem;
    align-items: end;
    overflow: hidden;
    padding: 1.35rem;
    border-radius: 8px;
    background:
        radial-gradient(circle at 18% 0%, rgba(30, 115, 190, 0.34), transparent 34%),
        linear-gradient(135deg, #07182f 0%, #020915 100%);
    color: #fff;
    box-shadow: 0 18px 42px rgba(9, 29, 51, 0.16);
}

.support-hero-panel h2 {
    max-width: 620px;
    margin-top: 0.35rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    line-height: 1.08;
}

.support-hero-panel p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 0.75rem;
    color: #dbeafe;
    line-height: 1.6;
}

.support-editable-summary {
    max-width: 620px;
    margin-top: 0.75rem;
    color: #dbeafe;
    font-size: 0.95rem;
    line-height: 1.62;
}

.support-editable-summary > * + * {
    margin-top: 0.65rem;
}

.support-editable-summary h2,
.support-editable-summary h3,
.support-editable-summary strong {
    color: #fff;
}

.support-editable-summary ul,
.support-editable-summary ol {
    padding-left: 1.2rem;
}

.support-editable-summary a {
    color: #bfdcff;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.support-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.95rem;
}

.support-panel {
    overflow: hidden;
    border: 1px solid rgba(17, 39, 68, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(18, 28, 45, 0.07);
}

.support-panel:not(.support-contact-list) {
    padding: 1.25rem;
}

.support-panel > span,
.support-contact-list > span {
    display: block;
    color: var(--brand-blue);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.support-panel h2 {
    margin-top: 0.35rem;
    color: #14233c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    line-height: 1.16;
}

.support-panel p {
    color: var(--muted);
}

.support-gps-label {
    display: inline-flex;
    width: fit-content;
    margin-top: 0.7rem;
    padding: 0.3rem 0.55rem;
    border-radius: 4px;
    background: rgba(30, 115, 190, 0.08);
    color: var(--brand-blue);
    font-size: 0.78rem;
    font-weight: 800;
}

.support-panel-primary {
    background:
        radial-gradient(circle at 20% 0%, rgba(30, 115, 190, 0.24), transparent 34%),
        linear-gradient(135deg, #07182f 0%, #020c19 100%);
}

.support-panel-primary > span,
.support-panel-primary h2,
.support-panel-primary p {
    color: #fff;
}

.support-hours {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 1rem;
}

.support-hours strong {
    display: grid;
    place-items: center;
    min-height: 54px;
    border: 1px solid rgba(191, 220, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.05rem;
}

.support-map-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(300px, 1.25fr);
    gap: 1rem;
    align-items: stretch;
}

.support-map {
    aspect-ratio: 16 / 9;
    margin-top: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #e5e7eb;
    box-shadow: inset 0 0 0 1px rgba(17, 39, 68, 0.08);
}

.support-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.support-contact-list {
    padding: 1.25rem;
    background:
        radial-gradient(circle at 12% 0%, rgba(30, 115, 190, 0.08), transparent 30%),
        #fff;
}

.support-editable-details {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.support-editable-details h2,
.support-editable-details h3 {
    margin-top: 0.2rem;
    color: #14233c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    line-height: 1.16;
}

.support-editable-details p,
.support-editable-details ul,
.support-editable-details ol {
    margin-top: 0;
    color: #303442;
    font-size: 0.9rem;
    line-height: 1.62;
}

.support-editable-details p {
    padding: 0.82rem 0.9rem;
    border: 1px solid rgba(17, 39, 68, 0.08);
    border-radius: 8px;
    background: rgba(248, 250, 252, 0.82);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.support-editable-details p:hover {
    border-color: rgba(30, 115, 190, 0.28);
    box-shadow: 0 10px 26px rgba(18, 28, 45, 0.06);
}

.support-editable-details ul,
.support-editable-details ol {
    padding: 0.82rem 0.9rem 0.82rem 2rem;
    border: 1px solid rgba(17, 39, 68, 0.08);
    border-radius: 8px;
    background: rgba(248, 250, 252, 0.82);
}

.support-editable-details strong {
    color: #14233c;
}

.support-editable-details a {
    color: var(--brand-blue);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.support-contact-list article {
    display: grid;
    gap: 0.24rem;
    margin-top: 0.8rem;
    padding: 0.9rem;
    border: 1px solid rgba(17, 39, 68, 0.08);
    border-radius: 8px;
    background: rgba(248, 250, 252, 0.82);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.support-contact-list article:hover {
    border-color: rgba(30, 115, 190, 0.28);
    box-shadow: 0 10px 26px rgba(18, 28, 45, 0.06);
}

.support-contact-list article:first-of-type {
    margin-top: 1rem;
}

.support-contact-list strong {
    color: #14233c;
    font-size: 0.98rem;
}

.support-contact-list p {
    margin-top: 0;
    font-size: 0.88rem;
}

.support-contact-list a,
.support-contact-list article > span {
    width: fit-content;
    color: var(--brand-blue);
    font-size: 0.88rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.document-library-page .article-body {
    margin-bottom: 2rem;
}

.document-library {
    max-width: 760px;
    margin-top: 1.45rem;
}

.template-normative-documents-page .document-library {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
}

.document-library-tabs {
    margin-top: 0.95rem;
}

.section-tablist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem;
    padding: 0.25rem;
    border: 1px solid rgba(17, 39, 68, 0.12);
    border-radius: 6px;
    background: #eef3f8;
}

.section-tab {
    min-height: 44px;
    padding: 0.65rem 0.85rem;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #33506f;
    font: inherit;
    font-size: 0.88rem;
    line-height: 1.25;
    font-weight: 800;
    cursor: pointer;
}

.section-tab:hover,
.section-tab:focus-visible {
    background: rgba(255, 255, 255, 0.72);
    color: var(--brand-navy);
}

.section-tab.is-active {
    background: #fff;
    color: var(--brand-blue);
    box-shadow: 0 4px 14px rgba(18, 28, 45, 0.12);
}

.section-tab-panel {
    margin-top: 0.85rem;
}

.resource-section-library {
    max-width: 780px;
    margin-top: 1.45rem;
    margin-right: auto;
    margin-left: auto;
}

.resource-section-panel .article-body {
    margin-top: 0;
}

.document-library-grid {
    display: grid;
    gap: 0.7rem;
}

.document-library-card,
.document-empty-state {
    border: 1px solid rgba(17, 39, 68, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(18, 28, 45, 0.06);
}

.document-library-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: center;
    min-height: 92px;
    padding: 0.85rem 0.9rem;
}

.document-library-card .service-icon,
.document-empty-state .service-icon {
    margin-top: 0.1rem;
    background: var(--brand-blue);
}

.document-library-card .service-icon {
    width: 42px;
    height: 42px;
}

.document-library-card .document-icon::before {
    left: 13px;
    top: 8px;
    width: 18px;
    height: 26px;
}

.document-library-card .document-icon::after {
    left: 18px;
    top: 18px;
    width: 10px;
}

.document-library-card h3,
.document-empty-state h3 {
    color: #14233c;
    font-size: 0.94rem;
    line-height: 1.25;
    font-weight: 800;
}

.document-library-card p,
.document-empty-state p {
    margin-top: 0.28rem;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.45;
}

.document-view-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 36px;
    padding: 0 0.85rem;
    border: 0;
    border-radius: 4px;
    background: var(--brand-blue);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
}

.document-view-button::after {
    content: ">";
    margin-left: 0.55rem;
    font-size: 1rem;
    line-height: 1;
}

.document-view-button:hover,
.document-view-button:focus-visible {
    background: var(--brand-navy);
}

.document-empty-state {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1rem;
    padding: 1.15rem;
}

.pdf-viewer {
    width: min(100%, 980px);
    margin-top: 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(17, 39, 68, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(9, 29, 51, 0.1);
}

.pdf-viewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(17, 39, 68, 0.1);
    background: #f8fafc;
}

.pdf-viewer-header h2 {
    margin: 0;
    color: #14233c;
    font-family: "Inter", "Open Sans", Arial, sans-serif;
    font-size: 0.98rem;
    line-height: 1.25;
    font-weight: 800;
}

.pdf-viewer iframe {
    display: block;
    width: 100%;
    height: min(76vh, 820px);
    min-height: 560px;
    border: 0;
    background: #f1f5f9;
}

.document-library-grid .pdf-viewer {
    grid-column: 1 / -1;
}

.is-pdf-modal-open {
    overflow: hidden;
}

.pdf-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    padding: 1.4rem;
}

.pdf-modal[aria-hidden="false"] {
    display: grid;
    place-items: center;
}

.pdf-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 20, 38, 0.68);
}

.pdf-modal-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto 1fr;
    width: min(1120px, 100%);
    height: min(88vh, 860px);
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.pdf-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 56px;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(17, 39, 68, 0.1);
    background: #f8fafc;
}

.pdf-modal-header h2 {
    color: #14233c;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 800;
}

.pdf-modal-close {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 4px;
    background: var(--brand-navy);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
}

.pdf-modal-frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #e5e7eb;
}

.faq-page .article-body {
    margin-bottom: 2rem;
}

.faq-library {
    max-width: 860px;
    margin-top: 1.45rem;
}

.template-faq-page .faq-library {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
}

.faq-topic-list,
.faq-accordion {
    display: grid;
    gap: 0.7rem;
    margin-top: 0.85rem;
}

.faq-topic {
    overflow: hidden;
    border: 1px solid rgba(17, 39, 68, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(18, 28, 45, 0.07);
}

.faq-topic-button {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    width: 100%;
    min-height: 104px;
    padding: 1.2rem;
    border: 0;
    background:
        linear-gradient(135deg, rgba(30, 115, 190, 0.1), transparent 48%),
        #fff;
    color: #14233c;
    text-align: left;
    cursor: pointer;
}

.faq-topic-button strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    line-height: 1.16;
    font-weight: 800;
}

.faq-topic-button small {
    display: block;
    max-width: 650px;
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.faq-topic-button[aria-expanded="true"] .faq-arrow {
    background: var(--brand-navy);
    transform: rotate(90deg);
}

.faq-topic-panel {
    padding: 0 1rem 1rem;
    border-top: 1px solid rgba(17, 39, 68, 0.08);
}

.faq-item {
    overflow: hidden;
    border: 1px solid rgba(17, 39, 68, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
}

.faq-question {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    width: 100%;
    min-height: 58px;
    padding: 0.95rem 1rem;
    border: 0;
    background: #fff;
    color: #14233c;
    text-align: left;
    cursor: pointer;
}

.faq-question span:first-child {
    font-size: 0.95rem;
    line-height: 1.35;
    font-weight: 800;
}

.faq-arrow {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-arrow {
    background: var(--brand-navy);
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 1rem 1rem;
    color: #303442;
    font-size: 0.92rem;
    line-height: 1.65;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    margin-top: 0.75rem;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 1.25rem;
}

.policy-document-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 780px;
    margin: 1.45rem auto 0;
    padding: 1rem;
    border: 1px solid rgba(17, 39, 68, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(18, 28, 45, 0.06);
}

.policy-page .content-page-header,
.policy-page > .article-body {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
}

.policy-document-panel span {
    display: block;
    color: var(--brand-blue);
    font-size: 0.76rem;
    font-weight: 800;
}

.policy-document-panel h2 {
    margin-top: 0.25rem;
    color: #14233c;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 800;
}

.policy-document-panel a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 0.9rem;
    border-radius: 4px;
    background: var(--brand-blue);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
}

.policy-document-panel a:hover,
.policy-document-panel a:focus-visible {
    background: var(--brand-navy);
}

.policy-faq-library {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
}

.role-detail-page .article-body {
    margin-bottom: 2rem;
}

.role-function-section {
    max-width: 780px;
    margin: 1.45rem auto 0;
}

.role-function-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.role-function-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 1rem;
    border: 1px solid rgba(17, 39, 68, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(18, 28, 45, 0.06);
}

.role-function-item > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
}

.role-detail-gold .role-function-item > span {
    background: var(--gold);
}

.role-detail-burgundy .role-function-item > span {
    background: var(--burgundy);
}

.role-function-item h3 {
    color: #14233c;
    font-size: 0.98rem;
    line-height: 1.3;
    font-weight: 800;
}

.role-function-item p {
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.role-source-note {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    max-width: 780px;
    margin: 1.2rem auto 0;
    padding: 0.9rem 1rem;
    border-left: 4px solid var(--brand-blue);
    background: #f8fafc;
    color: #303442;
    font-size: 0.86rem;
    line-height: 1.5;
}

.role-detail-gold .role-source-note {
    border-left-color: var(--gold);
}

.role-detail-burgundy .role-source-note {
    border-left-color: var(--burgundy);
}

.role-index-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 0.9rem;
}

.role-index-link {
    display: grid;
    gap: 0.3rem;
    padding: 1rem;
    border: 1px solid rgba(17, 39, 68, 0.1);
    border-left: 4px solid var(--brand-blue);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(18, 28, 45, 0.06);
}

.role-index-link.role-detail-gold {
    border-left-color: var(--gold);
}

.role-index-link.role-detail-burgundy {
    border-left-color: var(--burgundy);
}

.role-index-link span {
    color: var(--brand-blue);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.role-index-link strong {
    color: #14233c;
    font-size: 1rem;
    line-height: 1.28;
    font-weight: 800;
}

.role-index-link small {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.5;
}

.faq-list {
    display: grid;
    gap: 0.55rem;
    margin-top: 1rem;
}

.faq-list button {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100%;
    min-height: 40px;
    padding: 0.65rem 0.9rem;
    border-radius: 5px;
    text-align: left;
    color: #303442;
    cursor: pointer;
}

.faq-list button::after {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}

.contact-area {
    display: grid;
    grid-template-columns: minmax(190px, 0.8fr) minmax(260px, 1fr);
    gap: 1.5rem;
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin: 1rem 0 0;
    padding: 0;
    color: var(--muted);
    list-style: none;
}

.contact-list li {
    position: relative;
    padding-left: 2.45rem;
    font-size: 0.9rem;
}

.contact-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.05rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--burgundy);
}

.contact-list strong {
    display: block;
    color: #303442;
}

.contact-form {
    display: grid;
    gap: 0.7rem;
    align-content: start;
    margin-top: 2.45rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    min-height: 42px;
    padding: 0.75rem 0.9rem;
    border-radius: 5px;
    color: var(--ink);
}

.contact-form textarea {
    min-height: 94px;
    resize: vertical;
}

.contact-form button {
    width: fit-content;
    min-width: 165px;
    min-height: 42px;
    border: 0;
    background: var(--burgundy);
    color: #fff;
    cursor: pointer;
}

.site-footer {
    margin-top: 1.6rem;
    background:
        linear-gradient(135deg, rgba(30, 115, 190, 0.18), transparent 42%),
        linear-gradient(90deg, var(--brand-navy-deep), var(--brand-navy), var(--brand-navy-deep));
    color: #fff;
}

.footer-inner {
    width: min(1100px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0.8rem 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 0.82fr 0.92fr 1.08fr;
    gap: 1rem;
    align-items: start;
}

.footer-brand {
    display: grid;
    gap: 0.3rem;
}

.footer-logo {
    display: block;
    width: min(165px, 100%);
    height: auto;
    padding: 0.38rem;
    border-radius: 8px;
    background: #fff;
}

.footer-brand p,
.footer-support p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.74rem;
    line-height: 1.32;
}

.footer-brand span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
}

.footer-column,
.footer-support {
    display: grid;
    align-content: start;
    gap: 0.22rem;
}

.site-footer h2 {
    margin-bottom: 0.14rem;
    font-size: 0.8rem;
    font-weight: 800;
}

.site-footer h2::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 0.24rem;
    background: var(--brand-blue);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.74rem;
    transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #fff;
}

.footer-support {
    padding: 0;
}

.footer-support > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    margin-top: 0.18rem;
    padding: 0 0.65rem;
    border-radius: 4px;
    background: var(--brand-blue);
    color: #fff;
    font-weight: 800;
}

.footer-support > a::after {
    content: ">";
    margin-left: 0.55rem;
}

.social-links {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-weight: 800;
    text-transform: uppercase;
}

.social-links svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.55rem;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.68rem;
}

.footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
}

@media (max-width: 1100px) {
    .topbar {
        justify-content: center;
    }

    .site-header {
        gap: 1rem;
        min-height: 112px;
    }

    .main-nav {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .main-nav a {
        padding: 0.38rem 0.82rem;
    }

    .content-band {
        grid-template-columns: 1fr 1fr;
    }

    .content-band > div:first-child {
        grid-column: 1 / -1;
    }

    .resource-hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-alerts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-area {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        grid-template-columns: 1.2fr 1fr;
    }

    .footer-support {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .topbar .main-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem 1.1rem;
        padding: 0.55rem 0;
    }

    .site-header {
        flex-wrap: wrap;
        min-height: 0;
        padding: 0.9rem 0;
    }

    .brand {
        width: 100%;
        justify-content: center;
    }

    .brand-logo {
        height: 64px;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .hero {
        width: calc(100% - 2rem);
        margin: 2.2rem auto 2.8rem;
        min-height: 500px;
    }

    .hero-content {
        padding: 0 2.8rem;
    }

    .hero h1 {
        max-width: 520px;
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero p:not(.eyebrow) {
        max-width: 500px;
        font-size: 1rem;
    }

    .role-grid,
    .content-band,
    .resource-hero-grid,
    .contact-area {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

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

    .news-alerts-grid {
        grid-template-columns: 1fr;
    }

    .support-hero-panel,
    .support-layout,
    .support-map-panel {
        grid-template-columns: 1fr;
    }

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

    .document-library-grid {
        grid-template-columns: 1fr;
    }

    .hero-arrow {
        width: 42px;
        height: 42px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .header-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions,
    .primary-button,
    .secondary-button,
    .contact-form button {
        width: 100%;
    }

    .hero {
        width: calc(100% - 1rem);
        margin: 1.6rem auto 2.2rem;
        min-height: 460px;
    }

    .hero-content {
        padding: 0 1.15rem 4rem;
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(1.9rem, 8vw, 2.6rem);
        line-height: 1.08;
    }

    .hero p:not(.eyebrow) {
        font-size: 1rem;
        max-width: none;
    }

    .hero-arrow {
        top: auto;
        bottom: 4.8rem;
        transform: none;
        width: 38px;
        height: 38px;
        font-size: 1.6rem;
    }

    .hero-arrow-prev {
        left: 1rem;
    }

    .hero-arrow-next {
        right: 1rem;
    }

    .service-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .section-tablist {
        grid-template-columns: 1fr;
    }

    .support-hours {
        grid-template-columns: 1fr;
    }

    .resource-hero-card {
        height: 280px;
        min-height: 280px;
    }

    .resource-hero-content {
        min-height: 0;
    }

    .news-alerts-section {
        padding: 1rem;
    }

    .document-library-card {
        grid-template-columns: 1fr;
    }

    .document-view-button {
        width: 100%;
    }

    .pdf-viewer-header {
        align-items: stretch;
        flex-direction: column;
    }

    .pdf-viewer iframe {
        height: 68vh;
        min-height: 430px;
    }

    .pdf-modal {
        padding: 0.55rem;
    }

    .pdf-modal-panel {
        height: 92vh;
    }

    .pdf-modal-header {
        min-height: 52px;
        padding: 0.7rem;
    }

    .faq-topic-button {
        min-height: 94px;
        padding: 1rem;
    }

    .faq-topic-button strong {
        font-size: 1.12rem;
    }

    .faq-topic-panel {
        padding: 0 0.7rem 0.7rem;
    }

    .role-function-item {
        grid-template-columns: 1fr;
    }
}
