/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}
/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
    /**
     * Palette
     */

    /**
     * Light mode
     */

    /**
     * Typography
     */ /* 12 */ /* 16 */ /* 20 */ /** 22 */ /* 24 */ /* 26 */ /* 32 */ /* 48 */ /* 64 */

    /**
     * Responsive breakpoints
     */

    /**
     * The rest
     */
}
html {
    background: #fff;
    color: rgba(10, 13, 25, 0.85);
    font-family: 'Darker Grotesque', system-ui, -apple-system, BlinkMacSystemFont, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 16px;
    line-height: 1.5em;
}
body {
    background: #fff;
    color: rgba(10, 13, 25, 0.85);
    font-family: 'Darker Grotesque', system-ui, -apple-system, BlinkMacSystemFont, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 16px;
    line-height: 1.5em;
}
a {
    color: #A2000F;
    font-weight: 900;
    text-decoration-thickness: 0.15em;
}
a:focus-visible {
        text-decoration: none;
        outline: 0.15em solid #A2000F;
        outline-offset: 0.15em;
    }
a:active {
        color: #1F274C;
        outline-color: #1F274C;
    }
.unstyled-list {
    margin-top: 0;
    margin-bottom: 0;
    padding-inline-start: 0;
    list-style: none;
}
.grid-full-width {
    grid-column: 1 / -1;
}
.-screenReader {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.container {
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .container {
        width: 80vw;
        width: min(80vw, 800px);
    }
}
@media (min-width: 1920px) {
    .container {
        width: 1200px;
    }
}
.color-block {
    position: relative;
    background: #1F274C;
    color: #fff;
}
.color-block-line {
    display: block;
    position: absolute;
    height: 8px;
    width: 100vw;
    background: #A2000F;
}
.color-block-line-btm {
    bottom: 8px;
}
.color-block-line-top {
    top: 8px;
}
.button {
    position: relative;
    display: inline-block;
    padding: 0.5em 1em;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: #fff;
    background-color: #A2000F;
    text-decoration: none;
    border: none;
    border-radius: 3px;
}
.button:hover {
        text-decoration: none;
    }
.button:active {
        color: #1F274C;
    }
.button:focus-visible {
        outline: 0.175em solid #A2000F;
        outline-offset: 0.1em;
        border-radius: 0;
    }
.button img {
        position: relative;
        display: inline-block;
        height: 1.5em;
        width: auto;
        vertical-align: middle;
        top: -0.1em;
        margin-inline-end: 0.25em;
    }
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
}
.site-header-logo-link:focus {
    border-radius: 0;
    outline-color: #fff;
}
.site-header-logo {
    width: auto;
    height: 2rem;
}
@media (min-width: 768px) {

    .site-header {
        padding: 1rem;
    }
}
@media (min-width: 1400px) {

    .site-header {
        padding: 0.75rem 1rem;
    }
}
@media (min-width: 1600px) {

    .site-header {
        padding: 1rem;
    }

    .site-header-logo {
        height: 3rem;
    }
}
@media (min-width: 1920px) {

    .site-header-logo {
        height: 4rem;
    }
}
.follow-links {
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.follow-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 3px;
    color: #fff;
}
.follow-link svg {
        height: 1rem;
        top: -0.15em;
    }
.follow-link:hover {
        background: #fff;
        color: #1F274C;
        outline: none;
    }
.follow-link:focus-visible {
        background: #fff;
        color: #1F274C;
        outline: none;
    }
.follow-link:active {
        background: #1F274C;
        color: #fff;
    }
.follow-link-twitter svg {
    height: 1.15rem;
}
.follow-link-button {
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 0 0.5em;
    line-height: 1.5rem;
    align-self: center;
    border: 1px solid #fff;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}
.follow-link-button:hover {
        outline: 0.25em solid #fff;
        outline-offset: -0.15em;
        border-radius: 3px;
    }
.follow-link-button:focus {
        outline: 0.25em solid #fff;
        outline-offset: -0.15em;
        border-radius: 3px;
    }
.follow-link-button:active {
        color: #1F274C;
        background: #fff;
    }
.follow-link-button svg {
        height: 1rem;
        top: -0.15em;
    }
/**
 * Remove the subscribe text in very small screens
 * but leave a button that looks like the other icons
 */
@media not (min-width: 768px) {

    .follow-links-header .follow-link-button {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        width: 1rem;
        height: 1rem;
        outline: 0.125rem solid transparent;
        border-radius: 2px;
        color: #1F274C;
        background: #fff;
    }

        .follow-links-header .follow-link-button:hover {
            outline-color: #fff;
            outline-offset: 0;
            background: #1F274C;
            color: #fff;
        }

        .follow-links-header .follow-link-button:focus {
            outline-color: #fff;
            outline-offset: 0;
            background: #1F274C;
            color: #fff;
        }

        .follow-links-header .follow-link-button svg {
            width: 0.8rem;
            height: 0.8rem;
        }

        .follow-links-header .follow-link-button .follow-links-button-text {
            display: none;
        }
}
.hero-container {
    max-width: 640px;
    margin: 0 auto;
    padding-top: 18vw;
    padding-bottom: 18vw;
}
.hero-title {
    font-size: 18vw;
    line-height: 0.85;
    font-weight: 900;
}
.hero-subtitle {
    margin-top: 6vw;
    font-size: 6.5vw;
    line-height: 1.1;
    max-width: 15em;
}
.hero-links {
    margin-top: 18vw;
}
.hero-links li + li {
        margin-top: 6vw;
    }
.hero-link {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 6vw;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.hero-link:hover {
        outline: 2px solid #fff;
        outline-offset: 0.5em;
        border-radius: 0;
    }
.hero-link:focus {
        outline: 2px solid #fff;
        outline-offset: 0.5em;
        border-radius: 0;
    }
.hero-link:active {
        color: #A2000F;
        outline-color: #A2000F;
    }
.hero-link svg {
        width: 1.25em;
        height: auto;
    }
@media (min-width: 768px) {

    .hero-container {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        margin-top: 1rem;
        font-size: 2rem;
    }

    .hero-links {
        display: flex;
        align-items: center;
        gap: 2em;
        margin-top: 4rem;
    }

        .hero-links li + li {
            margin-top: 0;
        }

    .hero-link {
        font-size: 1.25rem;
    }

        .hero-link svg {
            width: 1.5rem;
        }
}
@media (min-width: 1400px) {
    .hero-container {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}
@media (min-width: 1600px) {
    .hero-container {
        max-width: 900px;
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .hero-title {
        font-size: 6rem;
    }

    .hero-subtitle {
        margin-top: 1.5rem;
        font-size: 3rem;
    }

    .hero-links {
        margin-top: 6rem;
        gap: 2.8em;
    }

    .hero-link {
        font-size: 1.625rem;
    }

        .hero-link svg {
            width: 2rem;
        }
}
@media (min-width: 1920px) {
    .hero-container {
        max-width: 1200px;
        padding-top: 10rem;
        padding-bottom: 10rem;
    }

    .hero-title {
        font-size: 8rem;
    }

    .hero-subtitle {
        margin-top: 2rem;
        font-size: 4rem;
    }

    .hero-links {
        margin-top: 8rem;
        gap: 5rem;
    }

    .hero-link {
        font-size: 2rem;
    }

        .hero-link svg {
            width: 3rem;
        }
}
.about {
    margin-top: 18vw;
    margin-bottom: 18vw;
}
.about-title {
    font-size: 6.5vw;
    line-height: 1;
    font-weight: 900;
}
.about-text {
    margin-top: 4vw;
    font-size: 6vw;
    line-height: 1.4;
}
@media (min-width: 768px) {
    .about {
        margin-top: 6rem;
        margin-bottom: 6rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-text {
        margin-top: 1rem;
        font-size: 1.375rem;
        max-width: 30em;
    }
}
@media (min-width: 1600px) {
    .about {
        margin-top: 8rem;
        margin-bottom: 8rem;
    }

    .about-title {
        font-size: 3rem;
    }

    .about-text {
        font-size: 1.625rem;
    }
}
@media (min-width: 1920px) {
    .about {
        margin-top: 10rem;
        margin-bottom: 10rem;
    }

    .about-title {
        font-size: 4rem;
    }

    .about-text {
        font-size: 2rem;
    }
}
.resources {
    margin-top: 18vw;
    margin-bottom: 18vw;
    display: flex;
    flex-direction: column;
    gap: 9vw;
}
.resources-title {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 6.5vw;
    font-weight: 900;
}
.resources-title svg {
        width: 1.25em;
        height: auto;
    }
.resources-list {
    display: flex;
    flex-direction: column;
    gap: 9vw;
}
.resources-item {
    padding: 5vw;
    border: 4px solid #1F274C;
}
.resources-item-title {
    font-size: 6.5vw;
    line-height: 1.1;
    font-weight: 900;
}
.resources-item-description {
    margin-top: 4vw;
    font-size: 5.5vw;
    line-height: 1.4;
}
.resources .link-set {
        margin-top: 10vw;
    }
.resources-new .resources-title {
        color: #A2000F;
    }
@media (min-width: 768px) {
    .resources {
        margin-top: 8rem;
        margin-bottom: 8rem;
        gap: 2rem;
    }

    .resources-title {
        font-size: 1.5rem;
    }

    .resources-list {
        gap: 2rem;
    }

    .resources-item {
        padding: 1rem;
    }

    .resources-item-title {
        font-size: 1.5rem
    }

    .resources-item-description {
        margin-top: 0.5rem;
        font-size: 1.375rem;
    }

    .link-set {
        margin-top: 2rem;
    }
}
@media (min-width: 920px) {
    .resources-item {
        display: grid;
        grid-template-columns: auto 14rem;
    }

    .resources-item-title {
        grid-column: span 2;
        max-width: 20em;
    }

    .resources-item-description {
        padding-right: 2rem;
    }

    .resources .link-set {
        margin-top: 0;
        align-self: end;
    }
}
@media (min-width: 1920px) {
    .resources-title {
        font-size: 3rem;
    }

    .resources-item {
        padding: 2rem;
        grid-template-columns: auto 24rem;
    }

    .resources-item-title {
        font-size: 2.25rem;
    }

    .resources-item-description {
        margin-top: 1rem;
        padding-right: 4rem;
        font-size: 1.75rem;
    }
}
.link-set-links-title {
    margin-bottom: 0.75em;
    font-size: 3vw;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.link-set-links {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    margin-bottom: 10vw;
}
.link-set-link {
    display: inline-block;
    position: relative;
    padding-left: 1.25em;
    font-size: 4.5vw;
    line-height: 1.2em;
    font-weight: 700;
    text-decoration: none;
}
.link-set-link img {
        position: absolute;
        left: -0.1em;
        top: 50%;
        width: 1em;
        height: 1em;
        transform: translateY(-50%);
    }
.link-set-link:focus-visible {
        outline-offset: 0.4em;
    }
.link-set-button {
    width: 100%;
    font-size: 4.5vw;
}
@media (min-width: 768px) {
    .link-set-links-title {
        font-size: 1rem;
    }

    .link-set-links {
        margin-bottom: 3rem;
        gap: 1rem;
    }

    .link-set-link {
        font-size: 1.25rem;
    }

        .link-set-link img {
            width: 1em;
            height: 1em;
        }

    .link-set-button {
        font-size: 1.375rem;
    }
}
@media (--laptop-xl) {
    .link-set-links-title {
        font-size: 1.375rem;
    }

    .link-set-links {
        margin-top: 1em;
        margin-bottom: 4rem;
        gap: 1rem;
    }

    .link-set-link {
        font-size: 1.625rem;
    }

    .link-set-button {
        font-size: 2rem;
    }
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 900;
}
.breadcrumb-link {
    color: rgba(10, 13, 25, 0.85);
    text-decoration: none;
}
.breadcrumb-separator {
    position: relative;
    top: 0.1em;
    height: 1.5em;
    width: auto;
}
@media (min-width: 1280px) {
    .breadcrumb {
        margin-top: 2rem;
    }
}
@media (min-width: 1920px) {
    .breadcrumb {
        margin-top: 4rem;
        font-size: 1.5rem;
    }
}
.page-title {
    margin-top: 4rem;
    font-size: 9vw;
    font-weight: 900;
    line-height: 1;
}
.page-subtitle {
    margin-top: 1em;
    font-size: 6.5vw;
    line-height: 1.2;
    max-width: 23em;
}
.page .link-set {
    margin-top: 9vw;
    margin-bottom: 9vw;
    padding: 9vw;
    border: 4px solid #1F274C;
}
.page-body {
    font-size: 5.5vw;
    line-height: 1.4;
}
.page-body p,
    .page-body h1,
    .page-body h2,
    .page-body h3,
    .page-body h4,
    .page-body h5,
    .page-body h6 {
        margin-top: 2em;
        margin-bottom: 2em;
    }
.page-body h1,
    .page-body h2,
    .page-body h3,
    .page-body h4,
    .page-body h5,
    .page-body h6 {
        line-height: 1.1;
    }
.page-body blockquote {
        margin-left: 2em;
    }
.page-footnote {
    word-break: break-word;
}
.page-footer {
    margin-top: 6rem;
    margin-bottom: 6rem;
    font-size: 4.5vw;
    line-height: 1.4;
}
.page-footer-line {
    display: block;
    width: 8rem;
    height: 0.5rem;
    background: #A2000F;
    margin-bottom: 1rem;
}
.page-article sup a {
        text-decoration: none;
        font-weight: 500;
    }
.page-article .page-footer p {
            margin-top: 1em;
            margin-bottom: 1em;
        }
.page-article .page-footer blockquote {
            margin-left: 1em;
        }
.page-article .page-footer a:not([href^="#ftnt"]) {
            font-weight: 500;
            text-decoration-thickness: initial;
        }
.page-table-of-contents h2 {
        margin-bottom: 0.5em;
    }
.page-table-of-contents ul {
        margin: 0;
        padding-left: 0;
        list-style: none;
    }
.page-table-of-contents ul ul {
            padding-left: 4rem;
        }
.page-table-of-contents li {
        margin-top: 1em;
        margin-bottom: 1em;
        line-height: 1.1;
    }
.page-table-of-contents li li a {
            font-weight: 500;
            text-decoration-thickness: initial;
        }
@media (min-width: 768px) {
    .page {
        display: grid;
        grid-template-columns: auto 16rem;
    }

    .page-title {
        grid-column: span 2;
        font-size: 4rem;
    }

    .page-subtitle {
        grid-column: span 2;
        font-size: 2rem;
        margin-bottom: 4rem;
    }

    .page .link-set {
        margin: 0;
        grid-column-start: 2;
        align-self: start;
        padding: 2rem;
    }

    .page-body {
        grid-column-start: 1;
        grid-row-start: 3;
        padding-right: 2rem;
        font-size: 1.375rem;
    }

        .page-body p:first-child {
            margin-top: 0;
        }

    .page-footer {
        grid-column-start: 1;
        font-size: 1.25rem;
    }
}
@media (min-width: 1920px) {
    .page {
        grid-template-columns: auto 40%;
    }

    .page-title {
        margin-top: 4rem;
        font-size: 6rem;
    }

    .page-subtitle {
        font-size: 3rem;
        margin-bottom: 8rem;
    }

    .page .link-set {
        padding: 3rem;
        font-size: 1.625rem;
    }

        .page .link-set .link-set-links-title {
            font-size: 1.5rem;
        }

        .page .link-set .link-set-links {
            margin-bottom: 3em;
            gap: 1em;
        }

        .page .link-set .link-set-link {
            font-size: 2rem;
        }

        .page .link-set .link-set-button {
            font-size: 2rem;
        }

    .page-body {
        padding-right: 4rem;
        font-size: 2rem;
    }

    .page-footer {
        font-size: 1.5rem;
        margin-bottom: 12rem;
    }

    .page-footer-line {
        margin-bottom: 2rem;
    }
}
.site-footer {
    position: relative;
    padding-top: 18vw;
    padding-bottom: 18vw;
}
.site-footer-link {
    color: #fff;
}
.site-footer-link:focus-visible {
        outline-color: #fff;
    }
.site-footer-link:active {
        color: #A2000F;
        outline-color: #A2000F;
    }
.site-footer-logo {
    height: 10vw;
}
.site-footer-sections {
    display: flex;
    flex-direction: column;
    gap: 18vw;
}
.site-footer-section {
    display: flex;
    flex-direction: column;
    gap: 4.5vw;
}
.site-footer-text {
    font-size: 5vw;
    line-height: 1.2;
}
.site-footer-feeds-title {
    font-size: 6vw;
    font-weight: 900;
    line-height: 1.2;
}
.site-footer-legal {
    margin-top: 18vw;
    font-size: 4vw;
    line-height: 1.2;
}
.site-footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    margin-bottom: 1em;
}
@media (min-width: 768px) {
    .site-footer {
        position: relative;
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .site-footer-logo {
        height: 2rem;
    }

    .site-footer-sections {
        display: grid;
        grid-template-columns: 46% 46%;
        gap: 8%;
        align-items: end;
    }

    .site-footer-section {
        gap: 1rem;
    }

    .site-footer-feeds-title {
        font-size: 1.25rem;
    }

    .site-footer-text {
        font-size: 1rem;
    }

    .site-footer-section:nth-child(odd) {
        max-width: 19em;
    }

    .site-footer-section:nth-child(even) {
        max-width: 18em;
        justify-self: end;
    }

    .site-footer-legal {
        margin-top: 4rem;
        font-size: 0.67rem;
    }

    .site-footer-legal-links {
        gap: 1em;
    }

}
@media (min-width: 1600px) {

    .site-footer-logo {
        height: 4rem;
    }

    .site-footer-section {
        gap: 2rem;
    }

    .site-footer-feeds-title {
        font-size: 1.5rem;
    }

    .site-footer-text {
        font-size: 1.375rem;
    }

    .site-footer-section:nth-child(odd) {
        max-width: 28em;
    }

    .site-footer-section:nth-child(even) {
        max-width: 23em;
        justify-self: end;
    }

    .site-footer-legal {
        margin-top: 6rem;
        font-size: 1rem;
    }
}
