:root {
    --brand-color: #DA365F;
    --brand-secondary-color: #4E49C7;
    --brand-background-color: #ffffff;
    --gray-light: #fafafa;
    --gray-dark: #2c3647;
    --headline_font_family: Lato, sans-serif;
    --headline_font_style: 900;
    --paragraph_font_family: PT Sans, sans-serif;
    --paragraph_body_font_style: 400;
    --paragraph_preamble_font_style: 700;
    --miscellaneous_font_family: Lato, sans-serif;
    --miscellaneous_font_style: 400
}

*, :after, :before {
    box-sizing: border-box
}

.sr-only {
    border: 0;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    clip: rect(0, 0, 0, 0);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px
}

html {
    height: 100%
}

body {
    background-color: #fbfbfb;
    color: #444444;
    display: flex;
    flex-direction: column;
    font-family: "Lato", sans-serif;
    font-family: var(--miscellaneous_font_family);
    font-size: 16px;
    font-weight: 400;
    font-weight: var(--miscellaneous_font_style);
    line-height: 24px;
    margin: 0;
    min-height: 100%;
    overscroll-behavior: none
}

body.hosted__body {
    height: auto;
    min-height: auto
}

body > main {
    flex-grow: 1;
    padding-top: 3rem;
    position: relative
}

body .container-wide, body .container-slim {
    margin: 0 auto 2rem;
    max-width: 1200px;
    padding-bottom: 2rem;
    width: calc(100vw - 2rem)
}

body .container-slim {
    max-width: 864px
}

#skip-to-content {
    background-color: #FF447310;
    border-bottom-right-radius: 0.25rem;
    font-size: 0.75rem;
    left: 0;
    padding: 0 0.25rem;
    position: fixed;
    top: -50px;
    z-index: 9999
}

#skip-to-content:focus {
    top: 0
}

address {
    font-style: normal
}

dl {
    margin: .5rem 0;
    padding: 0;
    display: grid;
    grid-gap: .25rem .5rem;
    grid-template-columns:max-content;
    font-size: .875rem
}

dl dt {
    font-weight: bold
}

dl dd {
    margin: 0;
    grid-column-start: 2
}

h1, h2, h3 {
    text-align: center;
}

h1, h2, .modal .modal__header .modal__title, h3 {
    color: #222222;
    font-family: "Lato", sans-serif;
    font-family: var(--headline_font_family);
    font-weight: 900;
    font-weight: var(--headline_font_style)
}

h1.is-underlined, h2.is-underlined, .modal .modal__header .is-underlined.modal__title, h3.is-underlined {
    border-bottom: 4px solid var(--brand-color);
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content
}

h1.is-heading, h2.is-heading, .modal .modal__header .is-heading.modal__title, h3.is-heading {
    margin-bottom: 1.5rem
}

h1 {
    font-size: 1.75rem;
    line-height: 2rem;
    margin-bottom: 2rem;
    margin-top: 0
}

@media screen and (min-width: 768px) {
    h1 {
        font-size: 2rem;
        line-height: 2.5rem
    }
}

h2, .modal .modal__header .modal__title {
    font-size: 1.4rem;
    line-height: 2rem;
    margin-bottom: 0.5rem;
    margin-top: 3rem
}

@media screen and (min-width: 768px) {
    h2, .modal .modal__header .modal__title {
        font-size: 1.5rem;
        line-height: 2.5rem
    }
}

h3 {
    font-size: 1.125rem;
    line-height: 2rem;
    margin-bottom: 0.25rem;
    margin-top: 2rem
}

p, ol, ul {
    font-size: var(--normal-font-size);
    margin-bottom: 16px;
    line-height: 28px;
    text-align: start;
}

p, ol, ul {
    font-family: "PT Sans", sans-serif;
    font-family: var(--paragraph_font_family);
    font-weight: 400;
    font-weight: var(--paragraph_body_font_style);
    margin-top: 2rem
}

p:first-child, ol:first-child, ul:first-child {
    margin-top: 0
}

a {
    color: var(--brand-secondary-color);
    text-decoration: none;
    transition: all 0.3s ease-in-out
}

a:hover, a:focus, a:active {
    opacity: 80%
}

b, strong {
    font-weight: 700;
    font-weight: var(--paragraph_preamble_font_style)
}

sup {
    line-height: initial
}

h1 + *, h2 + *, .modal .modal__header .modal__title + *, h3 + * {
    margin-top: 0
}

.preview__header {
    background-color: #000000;
    color: #ffffff;
    font-size: 1.125rem;
    padding: 0.75rem;
    text-align: center
}

.preview__header a {
    color: #ffffff;
    cursor: pointer;
    text-decoration: underline
}

.grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: -2rem
}

.grid > * {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 2rem;
    width: 100%
}

.w-1\/2 {
    width: 50% !important
}

.w-1\/3 {
    width: 33.333333% !important
}

.w-2\/3 {
    width: 66.666667% !important
}

.w-1\/4 {
    width: 25% !important
}

.w-3\/4 {
    width: 75% !important
}

.w-1\/6 {
    width: 16.666667% !important
}

.w-5\/6 {
    width: 83.333333% !important
}

.w-full {
    width: 100% !important
}

.block {
    display: block !important
}

.inline {
    display: inline !important
}

.none {
    display: none !important
}

@media screen and (min-width: 576px) {
    .sm\:w-1\/2 {
        width: 50% !important
    }

    .sm\:w-1\/3 {
        width: 33.333333% !important
    }

    .sm\:w-2\/3 {
        width: 66.666667% !important
    }

    .sm\:w-1\/4 {
        width: 25% !important
    }

    .sm\:w-3\/4 {
        width: 75% !important
    }

    .sm\:w-1\/6 {
        width: 16.666667% !important
    }

    .sm\:w-5\/6 {
        width: 83.333333% !important
    }

    .sm\:w-full {
        width: 100% !important
    }

    .sm\:block {
        display: block !important
    }

    .sm\:inline {
        display: inline !important
    }

    .sm\:none {
        display: none !important
    }
}

@media screen and (min-width: 768px) {
    .md\:w-1\/2 {
        width: 50% !important
    }

    .md\:w-1\/3 {
        width: 33.333333% !important
    }

    .md\:w-2\/3 {
        width: 66.666667% !important
    }

    .md\:w-1\/4 {
        width: 25% !important
    }

    .md\:w-3\/4 {
        width: 75% !important
    }

    .md\:w-1\/6 {
        width: 16.666667% !important
    }

    .md\:w-5\/6 {
        width: 83.333333% !important
    }

    .md\:w-full {
        width: 100% !important
    }

    .md\:block {
        display: block !important
    }

    .md\:inline {
        display: inline !important
    }

    .md\:none {
        display: none !important
    }
}

@media screen and (min-width: 992px) {
    .lg\:w-1\/2 {
        width: 50% !important
    }

    .lg\:w-1\/3 {
        width: 33.333333% !important
    }

    .lg\:w-2\/3 {
        width: 66.666667% !important
    }

    .lg\:w-1\/4 {
        width: 25% !important
    }

    .lg\:w-3\/4 {
        width: 75% !important
    }

    .lg\:w-1\/6 {
        width: 16.666667% !important
    }

    .lg\:w-5\/6 {
        width: 83.333333% !important
    }

    .lg\:w-full {
        width: 100% !important
    }

    .lg\:block {
        display: block !important
    }

    .lg\:inline {
        display: inline !important
    }

    .lg\:none {
        display: none !important
    }
}

@media screen and (min-width: 1200px) {
    .xl\:w-1\/2 {
        width: 50% !important
    }

    .xl\:w-1\/3 {
        width: 33.333333% !important
    }

    .xl\:w-2\/3 {
        width: 66.666667% !important
    }

    .xl\:w-1\/4 {
        width: 25% !important
    }

    .xl\:w-3\/4 {
        width: 75% !important
    }

    .xl\:w-1\/6 {
        width: 16.666667% !important
    }

    .xl\:w-5\/6 {
        width: 83.333333% !important
    }

    .xl\:w-full {
        width: 100% !important
    }

    .xl\:block {
        display: block !important
    }

    .xl\:inline {
        display: inline !important
    }

    .xl\:none {
        display: none !important
    }
}

.blurred-background-container {
    height: calc(486px + 96px);
    left: 0;
    max-height: calc(54.18vw + 96px);
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%
}

.blurred-background-svg {
    animation: 0.5s ease-in keyframes_fadeIn;
    display: block;
    height: calc(100% + 60px);
    margin-left: -2rem;
    margin-top: -2rem;
    max-height: none;
    min-height: 100%;
    top: 0;
    width: calc(100% + (2 * 2rem));
    z-index: -2
}

@keyframes keyframes_fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.button {
    background-color: var(--brand-secondary-color);
    border: 1px solid var(--brand-secondary-color);
    border-radius: 0.25rem;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-family: var(--miscellaneous_font_family);
    font-size: 18px;
    font-weight: 400;
    font-weight: var(--miscellaneous_font_style);
    line-height: 20px;
    padding: 0.75rem 1rem;
    text-align: center;
    transition: all 0.3s ease-in-out
}

.button:hover, .button:focus {
    background-color: var(--brand-secondary-color);
    color: #ffffff;
    opacity: 0.8;
    text-decoration: none
}

.button:focus {
    opacity: 0.8
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.4
}

.button.button-outline {
    background-color: transparent;
    color: var(--brand-secondary-color)
}

.button.button-outline:hover, .button.button-outline:focus {
    background-color: transparent;
    color: var(--brand-secondary-color)
}

.button-icon {
    cursor: pointer;
    height: 24px;
    transition: all 0.3s ease-in-out;
    width: 24px
}

.button-icon > svg {
    fill: none;
    stroke: #222222;
    transition: all 0.3s ease-in-out
}

.button-icon:hover > svg {
    opacity: 0.8
}

.button-icon:focus > svg {
    opacity: 0.8
}

.button-icon--circle {
    border-radius: 100%
}

.button-icon--circle > svg {
    fill: #222222;
    stroke: none
}

.js-material-grid a.button.js-follow.is-media {
    background-color: transparent;
    border: none;
    padding: 0
}

.collapsible-container {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column
}

.collapsible-container button.js-expand {
    order: 2;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto
}

.collapsible-text {
    border-bottom: 1px solid #ffffff;
    margin-bottom: 1rem;
    max-height: 320px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease-in-out
}

.collapsible-text.-expanded {
    max-height: 100%
}

.collapsible-text:not(.-expanded)::after {
    background-image: linear-gradient(rgba(255, 255, 255, 0), #fff);
    bottom: 0;
    content: "";
    height: 160px;
    position: absolute;
    right: 0;
    width: 100%
}

custom-header, custom-footer {
    background-color: #ffffff
}

.select_nav {
    line-height: 0;
    height: 50px;
    position: relative
}

.select_nav label {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 0.25rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    max-height: 50vh;
    min-height: 50px;
    overflow: hidden;
    padding: 0;
    width: 100%
}

.select_nav label a {
    align-items: center;
    color: #222222;
    display: none;
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin: 0.5rem;
    padding: 0.25rem 2.5rem 0.25rem 0.5rem
}

.select_nav label a.has-line-before {
    margin-top: 0;
    position: initial
}

.select_nav label a.has-line-before::before {
    border-top: 1px solid #dddddd;
    content: "";
    display: none;
    left: 0;
    position: absolute;
    right: 0;
    top: -1rem
}

.select_nav label a:hover {
    background-color: #dddddd
}

.select_nav label a.active {
    background-color: #dddddd;
    display: flex;
    pointer-events: none
}

.select_nav label > .active ~ .active {
    display: none
}

.select_nav label img {
    height: 17px;
    margin-right: 0.75rem;
    width: auto
}

.select_nav label i {
    line-height: 0;
    margin-right: 0.75rem
}

.select_nav > i {
    display: inline-block;
    line-height: 0;
    pointer-events: none;
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%)
}

.select_nav svg {
    stroke: #222222
}

.select_nav .select__toggle {
    display: none
}

.select_nav .select__toggle:not(:checked) ~ label a.active {
    background-color: #ffffff
}

.select_nav .select__toggle:checked ~ i {
    display: none
}

.select_nav .select__toggle:checked ~ label, .select_nav .select__toggle ~ label:focus-within {
    box-shadow: 0 6px 10px rgba(49, 73, 164, 0.08), 0 0 3px rgba(49, 73, 164, 0.1), 0 0 2px rgba(49, 73, 164, 0.14);
    cursor: auto;
    left: 0;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 20
}

.select_nav .select__toggle:checked ~ label a, .select_nav .select__toggle ~ label:focus-within a {
    display: flex;
    pointer-events: initial
}

.select_nav .select__toggle:checked ~ label a.is-disabled, .select_nav .select__toggle ~ label:focus-within a.is-disabled {
    background-color: #fbfbfb;
    color: #999999;
    pointer-events: none
}

.select_nav .select__toggle:checked ~ label a.has-line-before, .select_nav .select__toggle ~ label:focus-within a.has-line-before {
    margin-top: 2rem;
    position: relative
}

.select_nav .select__toggle:checked ~ label a.has-line-before::before, .select_nav .select__toggle ~ label:focus-within a.has-line-before::before {
    display: block
}

.select_nav .select__toggle:checked ~ label a.closed-placeholder, .select_nav .select__toggle ~ label:focus-within a.closed-placeholder {
    display: none
}

.select_nav.opens-top .select__toggle:checked ~ label, .select_nav.opens-top .select__toggle ~ label:focus-within {
    bottom: 0;
    top: auto
}

.select_nav.is-disabled {
    pointer-events: none
}

.select_nav.is-disabled svg {
    stroke: #999999
}

.select_nav.is-disabled .select__toggle:not(:checked) ~ label a.active {
    background-color: #fbfbfb;
    color: #999999
}

.filters {
    margin-bottom: 0;
    display: none;
    align-items: flex-end
}

.title-with-button {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.title-with-button:has(#hidden-filters-toggle[aria-expanded="true"]) ~ .filters {
    display: flex
}

#hidden-filters-toggle {
    border: 0;
    background: none;
    cursor: pointer
}

#hidden-filters-toggle svg {
    fill: #444444;
    stroke: none
}

#hidden-filters-toggle[aria-expanded="true"] svg {
    fill: var(--brand-secondary-color)
}

.filter-icon {
    display: block;
    margin-bottom: 2rem
}

.filter-icon i {
    display: block;
    height: 32px;
    width: 32px
}

.filter-icon svg {
    height: 32px;
    width: 32px
}

@media screen and (min-width: 992px) {
    .only-mobile {
        display: none
    }

    .filters {
        display: flex
    }
}

.nav-select-wrapper {
    position: relative
}

.nav-select-wrapper i {
    display: inline-block;
    line-height: 0;
    pointer-events: none;
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%)
}

.nav-select-wrapper select {
    width: 100%
}

.labelled-filter {
    display: flex;
    flex-direction: column
}

.labelled-filter select, .labelled-filter option {
    line-height: 1.5rem;
    font-size: 1rem;
    font-family: var(--miscellaneous_font_family)
}

.labelled-filter select {
    padding: 0.75rem;
    border-radius: 0.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #dddddd
}

.footer {
    border-top: 1px solid #dddddd;
    padding: 1.5rem
}

.footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.footer nav .footer__logo {
    margin-bottom: 2rem;
    text-align: center;
    width: 100%
}

.footer nav .footer__logo > svg {
    fill: #999999;
    height: 24px;
    stroke: none;
    vertical-align: middle;
    width: 159px
}

.footer nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%
}

.footer nav ul li > a {
    color: #6E6D86;
    font-family: "Lato", sans-serif;
    font-family: var(--miscellaneous_font_family);
    line-height: 18px
}

.footer nav ul li > a:hover {
    color: #444444
}

.footer nav ul li:last-child {
    margin-right: 0
}

@media screen and (min-width: 768px) {
    .footer nav .footer__logo {
        margin-bottom: 0;
        width: auto
    }

    .footer nav ul {
        flex-direction: row;
        width: auto
    }

    .footer nav ul li {
        margin: 0 1rem
    }
}

.form__input {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 0.25rem;
    color: #222222;
    font-family: "Lato", sans-serif;
    font-family: var(--miscellaneous_font_family);
    font-size: 1.125rem;
    line-height: 1.5rem;
    padding: 0.75rem 1rem;
    width: 100%
}

.form__input::-webkit-input-placeholder, .form__input:-ms-input-placeholder, .form__input::placeholder {
    color: #999999;
    font-family: "Lato", sans-serif;
    font-family: var(--miscellaneous_font_family);
    font-size: 1.125rem;
    line-height: 1.5rem
}

.form__input.has-error {
    border-color: #FF4473
}

.form__input-icon__wrapper {
    position: relative
}

.form__input-icon__wrapper i {
    display: inline-block;
    left: 1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.form__input-icon__wrapper .form__input {
    padding: 0.75rem 1rem 0.75rem 3rem
}

.form__checkbox-wrapper {
    align-items: center;
    display: flex
}

.form__checkbox-wrapper input ~ label {
    margin-left: 0.75rem
}

.form__checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #dddddd;
    border: none;
    height: 28px;
    width: 28px
}

.form__error {
    color: #FF4473;
    display: block;
    padding: 0.2rem 1rem
}

.highlighted-tags a {
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 6px 10px rgba(49, 73, 164, 0.08), 0 0 3px rgba(49, 73, 164, 0.1), 0 0 2px rgba(49, 73, 164, 0.14);
    color: #222222;
    display: flex;
    font-size: 1.125rem;
    font-weight: 900;
    padding: 0.75rem
}

.highlighted-tags > .active > a {
    box-shadow: inset 0 2px 8px #b7c1d1
}

.highlighted-tags > .is-disabled > a {
    background-color: #fbfbfb;
    color: #999999;
    pointer-events: none
}

.highlighted-tags i {
    border-radius: 100%;
    flex-shrink: 0;
    height: 40px;
    margin-right: 1rem;
    overflow: hidden;
    width: 40px
}

.highlighted-tags i > img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.highlighted-tags span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

figure {
    margin: 0
}

figcaption {
    font-size: 0.75rem
}

img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}


picture img {
    border-radius: 14px;
    margin: 20px auto;
}

/*img {
    height: auto;
    min-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    vertical-align: middle;
    width: 100%
}*/

img.logo {
    max-height: 76px;
    max-width: 300px
}

@keyframes keyframes_loading {
    0%, 80%, 100% {
        box-shadow: 0 0;
        height: 4em
    }
    40% {
        box-shadow: 0 -2em;
        height: 5em
    }
}

.infinite-pagination__item {
    margin-top: 2rem;
    margin-bottom: 4rem;
    text-align: center
}

.infinite-pagination__item__loader, .infinite-pagination__item__loader::before, .infinite-pagination__item__loader::after {
    animation: keyframes_loading 1s infinite ease-in-out;
    background: none;
    height: 4em;
    width: 1em
}

.infinite-pagination__item__loader {
    animation-delay: -0.16s;
    color: var(--brand-secondary-color);
    display: inline-block;
    font-size: 11px;
    margin: 2rem auto;
    position: relative
}

.infinite-pagination__item__loader.is-hidden {
    display: none
}

.infinite-pagination__item__loader::before, .infinite-pagination__item__loader::after {
    content: "";
    position: absolute;
    top: 0
}

.infinite-pagination__item__loader::before {
    animation-delay: -0.32s;
    left: -1.5em
}

.infinite-pagination__item__loader::after {
    left: 1.5em
}

.media-grid {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -2rem;
    margin-left: -1rem;
    margin-right: -1rem
}

.media-grid > * {
    margin-bottom: 2rem;
    max-height: 265px;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 33.333333%
}

@supports (display: grid) {
    .media-grid {
        display: grid;
        grid-auto-rows: 0;
        grid-gap: 1px 2rem;
        grid-template-columns:repeat(3, 1fr);
        margin: 0
    }

    @media (max-width: 992px) {
        .media-grid {
            grid-template-columns:repeat(2, 1fr)
        }
    }@media (max-width: 576px) {
    .media-grid {
        grid-template-columns:repeat(1, 1fr)
    }
}.media-grid > * {
     grid-row-end: span 10;
     margin: 0;
     max-height: none;
     padding: 0;
     width: 100%
 }
}

.related-media__header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem
}

@media (max-width: 576px) {
    .related-media__header-wrapper {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start
    }
}

#related-media__download-all-button {
    margin-left: 1rem
}

@media (max-width: 576px) {
    #related-media__download-all-button {
        margin-top: 0.5rem;
        margin-left: 0
    }
}

.modal {
    background-color: #ffffff;
    border: none;
    border-radius: 0.25rem;
    box-shadow: 0 6px 10px rgba(49, 73, 164, 0.08), 0 0 3px rgba(49, 73, 164, 0.1), 0 0 2px rgba(49, 73, 164, 0.14);
    inset: 0;
    margin: auto;
    max-height: calc(100vh - 4rem);
    max-width: 416px;
    overflow: auto;
    padding: 2rem;
    position: fixed;
    width: 100%;
    z-index: 3000
}

.modal .modal__close {
    cursor: pointer;
    position: absolute;
    right: 2rem;
    top: 2rem
}

.modal .modal__header {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.modal .modal__header .modal__title {
    display: block;
    margin-bottom: 0;
    margin-top: 1rem;
    text-align: center
}

.modal .modal__main {
    margin-top: 0.75rem
}

.modal .modal__main > p {
    text-align: center
}

.modal .modal__footer {
    margin-top: 2rem
}

.modal__backdrop {
    background-color: #dddddd;
    bottom: 0;
    display: none;
    left: 0;
    opacity: 0.4;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2999
}

.follow-modals .form__input:not(:first-child) {
    margin-top: 1rem
}

.follow-modals .form__checkbox-wrapper {
    margin-top: 1.5rem
}

.follow-modals .create-account .form__policy-card {
    background-color: #fbfbfb;
    margin: 0.5rem 0;
    padding: 0.5rem
}

.follow-modals .create-account .form__policy-card p {
    font-size: 0.9rem;
    line-height: 1.2rem;
    margin-top: 0.5rem
}

.policy-modal .modal__footer {
    display: flex;
    justify-content: center
}

.policy-modal .modal__footer .button:first-child {
    margin-right: 1rem
}

.search__input-wrapper {
    position: relative;
    border: 1px solid #dddddd;
    border-radius: 0.25rem
}

.search__input-icon {
    display: inline-block;
    left: 1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.search__input[type=search] {
    border-radius: 0.25rem;
    border: 0;
    font-family: inherit;
    font-size: 1.4rem;
    font-weight: 400;
    padding: 1rem 0.5rem 1rem 3rem;
    width: 100%
}

.search__input[type=search]::-moz-placeholder {
    color: #999999;
    font-size: 1.4rem
}

.search__input[type=search]::placeholder {
    color: #999999;
    font-size: 1.4rem
}

.search__input[type=search]:focus {
    outline: none
}

.search__input.search__input[type=search]:-moz-placeholder-shown {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.search__input.search__input[type=search]:placeholder-shown {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.search__empty {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-top: 7.5rem
}

.search__empty > h2, .modal .modal__header .search__empty > .modal__title {
    margin-top: 1.5rem
}

.search__empty .search__empty-icon {
    height: 120px;
    position: relative;
    width: 120px
}

.search__empty .search__empty-icon > span {
    background-color: var(--brand-color);
    border-radius: 100%;
    display: block;
    height: 120px;
    opacity: 0.2;
    width: 120px
}

.search__empty .search__empty-icon svg {
    height: 64px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px
}

.show-more {
    margin-top: 2rem;
    text-align: center
}

i {
    height: 24px;
    width: 24px
}

svg {
    height: 24px;
    stroke: #999999;
    width: 24px
}

.tabbed {
    padding-top: 0.5rem
}

.tabbed nav {
    display: block
}

.tabbed nav ul {
    display: flex;
    list-style: none;
    padding: 0
}

.tabbed nav li {
    margin: 1rem
}

.tabbed nav li > a {
    color: #444444;
    cursor: pointer;
    display: inline-block
}

.tabbed nav li > a:hover, .tabbed nav li > a.active {
    text-decoration: underline
}

.tabbed nav li > span {
    color: #999999;
    cursor: default;
    text-decoration: none
}

.tabbed nav li:first-child {
    margin-left: 0
}

.about-pressroom {
    background-color: #ffffff;
    padding: 4.5rem 1rem;
    text-align: center
}

.about-pressroom h2, .about-pressroom .modal .modal__header .modal__title, .modal .modal__header .about-pressroom .modal__title {
    font-size: 1.75rem;
    line-height: 2rem;
    margin-bottom: 2rem;
    margin-top: 0
}

@media screen and (min-width: 768px) {
    .about-pressroom h2, .about-pressroom .modal .modal__header .modal__title, .modal .modal__header .about-pressroom .modal__title {
        font-size: 2rem;
        line-height: 2.5rem
    }
}

.about-pressroom a {
    display: inline-block
}

.about-pressroom > .grid {
    justify-content: center
}

.about-pressroom .about-pressroom__logo {
    display: inline-block
}

.about-company {
    background-color: var(--brand-secondary-color);
    color: #ffffff;
    font-size: 1.125rem;
    line-height: 2rem;
    padding: 4.5rem 1rem;
    text-align: center
}

.about-company > .grid {
    justify-content: center
}

.about-company .about-company__name {
    font-weight: 900
}

.about-company .about-company__address + .about-company__links {
    margin-top: 2rem
}

.about-company .about-company__address p {
    margin: 0
}

.about-company .about-company__link {
    color: #ffffff;
    text-decoration: underline
}

.about-company .select_nav {
    margin: 0 auto;
    max-width: 300px;
    text-align: left
}

.about-company .select_nav-caption {
    font-weight: 900;
    margin-top: 2rem
}

.related-pressrooms {
    background-color: #ffffff;
    padding: 4.5rem 1rem;
    text-align: center
}

.related-pressrooms h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1.5rem
}

.related-pressrooms .related-pressrooms__links {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center
}

@media screen and (max-width: 768px) {
    .related-pressrooms .related-pressrooms__links {
        flex-direction: column
    }
}

.related-pressrooms .related-pressrooms__name-wrapper, .related-pressrooms .related-pressrooms__logo-wrapper {
    margin: 0 1.75rem;
    min-width: 17.25rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.related-pressrooms .related-pressrooms__name-wrapper img, .related-pressrooms .related-pressrooms__logo-wrapper img {
    max-height: 100%
}

@media screen and (max-width: 768px) {
    .related-pressrooms .related-pressrooms__name-wrapper, .related-pressrooms .related-pressrooms__logo-wrapper {
        margin: 0
    }
}

.related-pressrooms .related-pressrooms__logo-wrapper {
    height: 11rem;
    width: 17.25rem
}

.related-pressrooms .related-pressrooms__logo {
    max-height: 8rem;
    max-width: 14.25rem
}

header > .navigation {
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 6px 10px rgba(49, 73, 164, 0.08), 0 0 3px rgba(49, 73, 164, 0.1), 0 0 2px rgba(49, 73, 164, 0.14);
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    position: relative
}

header > .navigation.centered {
    justify-content: center
}

header > .navigation a {
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-family: var(--miscellaneous_font_family);
    font-size: 1.125rem
}

header > .navigation i {
    height: 2rem;
    width: 2rem
}

header > .navigation svg {
    height: 2rem;
    stroke: #444444;
    width: 2rem
}

header > .navigation .navigation__logo {
    color: #444444
}

header > .navigation .navigation__logo .logo {
    -o-object-position: center;
    object-position: center
}

header > .navigation .navigation__icon {
    line-height: 0;
    padding-right: 1.5rem
}

header > .navigation #mobile-menu {
    display: flex;
    flex-direction: column;
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 1000;
    transition: height 0.3s ease-in-out
}

header > .navigation #desktop-menu {
    display: none
}

header > .navigation .navigation__items {
    background-color: #ffffff;
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0
}

header > .navigation .navigation__items .navigation__item {
    padding: 0.5rem 1.5rem;
    text-align: center
}

header > .navigation .navigation__items .navigation__item:first-child {
    margin-top: 2rem
}

header > .navigation .navigation__items .navigation__item > a:not(.js-follow) {
    border-bottom: 1px solid transparent;
    color: #444444;
    transition: all 0.3s ease-in-out
}

header > .navigation .navigation__items .navigation__item > a:not(.js-follow):hover {
    border-bottom: 1px solid #999999;
    color: #999999
}

header > .navigation .navigation__items .navigation__item > a:not(.js-follow):active {
    border-bottom: 1px solid #444444
}

header > .navigation .navigation__items .navigation__item.is-active a {
    border-bottom: 1px solid #444444
}

header > .navigation .navigation__actions {
    align-items: center;
    display: flex;
    padding-left: 1.5rem
}

header > .navigation .navigation__actions .navigation__search {
    line-height: 0
}

header > .navigation .navigation__actions .js-follow {
    margin-left: 2rem
}

header > .navigation #navigation-toggle {
    border: 0;
    background: none;
    line-height: 0;
    cursor: pointer
}

header > .navigation #navigation-toggle .is-close {
    display: none
}

header > .navigation #navigation-toggle[aria-expanded="true"] .is-close {
    display: inline
}

header > .navigation #navigation-toggle[aria-expanded="true"] .is-menu {
    display: none
}

header > .navigation #navigation-toggle[aria-expanded="true"] ~ .navigation__icon .is-menu {
    display: none
}

header > .navigation #navigation-toggle[aria-expanded="true"] ~ .navigation__items {
    height: 100vh
}

header > .navigation #navigation-toggle[aria-expanded="true"] ~ .navigation__actions .navigation__search {
    visibility: hidden
}

header > .navigation .is-desktop {
    display: none
}

header > .navigation .is-mobile {
    display: inline-block
}

@media screen and (min-width: 992px) {
    header > .navigation #mobile-menu {
        display: none
    }

    header > .navigation #desktop-menu {
        display: flex
    }

    header > .navigation .navigation__logo .logo {
        -o-object-position: left;
        object-position: left
    }

    header > .navigation .navigation__items .navigation__item:first-child {
        margin-top: 0
    }

    header > .navigation .is-desktop {
        display: inline-block
    }

    header > .navigation .is-mobile {
        display: none
    }

    header > .navigation .lg-sr-only {
        border: 0;
        -webkit-clip-path: inset(50%);
        clip-path: inset(50%);
        clip: rect(0, 0, 0, 0);
        height: 1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        white-space: nowrap;
        width: 1px
    }
}

.js-follow span {
    display: none
}

.js-follow .show {
    display: inline
}

header > .navigation.hosted {
    background-color: transparent;
    border-bottom: 1px solid #dddddd;
    box-shadow: none;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding: 0.75rem 0;
    width: calc(100vw - 32px)
}

header > .navigation.hosted .navigation__items {
    background-color: #ffffff;
    background-color: var(--brand-background-color)
}

header > .navigation.hosted .navigation__logo {
    display: none
}

header > .navigation.hosted .navigation__items .navigation__item {
    padding: 0.5rem 3rem 0.5rem 0
}

header > .navigation.hosted .navigation__items .navigation__item.is-active a {
    border-bottom: 1px solid #444444
}

.panel {
    background-color: #ffffff;
    border-radius: 0.25rem;
    box-shadow: 0 6px 10px rgba(49, 73, 164, 0.08), 0 0 3px rgba(49, 73, 164, 0.1), 0 0 2px rgba(49, 73, 164, 0.14);
    display: block;
    height: 100%;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    position: relative
}

.panel.with-media {
    height: auto
}

.panel:hover, .panel:focus, .panel:active {
    color: unset;
    opacity: 1;
    text-decoration: none
}

.panel__link {
    text-decoration: none;
    color: inherit;
    position: static
}

.panel__link::before {
    content: "";
    cursor: inherit;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%
}

.panel__link:hover, .panel__link:focus, .panel__link:active {
    color: unset;
    opacity: 1
}

.panel__content {
    background-color: #ffffff;
    color: #444444;
    display: flex;
    flex-direction: column;
    max-height: 510px;
    position: static
}

.panel__content .panel__media {
    height: 100%;
    width: 100%;
    background: #fff url(/assets/newsroom2020/transparent-placeholder-8933871985c5372fa0e6e184bee9b637214dee80c5401b270516dd0a7d65fa75.png) repeat
}

.panel__content .panel__media .panel__media-image {
    -o-object-fit: unset;
    object-fit: unset
}

.panel__content .panel__media video {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%
}

.panel__content .panel__media.has-svg {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 2rem;
    aspect-ratio: 16/9;
    background-image: none
}

.panel__content .panel__media.has-svg svg {
    height: 64px;
    width: 64px
}

.panel__content .panel__media-doc {
    background: #ffffff
}

.panel__content .panel__caption {
    display: none
}

.panel__content .panel__body {
    height: 100%;
    padding: 1.5rem;
    overflow: hidden
}

@media screen and (min-width: 768px) {
    .panel__content .panel__body {
        padding: 2rem
    }
}

.panel__content .panel__body.is-fade-out::after {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7) 16px, #fff 32px);
    content: "";
    display: block;
    height: 64px;
    left: 0;
    position: absolute;
    top: 446px;
    width: 100%;
    z-index: 0
}

.panel__content .panel__body .panel__title {
    -webkit-hyphens: manual;
    hyphens: manual;
    margin-top: 1rem;
    overflow: hidden
}

.panel__content .panel__body .panel__heading {
    margin-top: 0;
    line-height: 1.4
}

.panel__content .panel__body .panel__date {
    border-left: 0.25rem solid var(--brand-color);
    color: #6E6D86;
    display: inline-block;
    margin-bottom: 1rem;
    padding-left: 1rem;
    text-transform: uppercase
}

.panel__content .panel__body .panel__text {
    clear: both;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word
}

.panel__content .panel__body .panel__text a {
    text-decoration: underline
}

.panel__content .media__info .license_title {
    position: relative
}

.panel__content .media__info .license_title .license_name {
    cursor: pointer;
    text-decoration: underline
}

.panel__content .media__info .license_explanation {
    background-color: #ffffff;
    border-radius: 0.25rem;
    bottom: 100%;
    box-shadow: 0 6px 10px rgba(49, 73, 164, 0.08), 0 0 3px rgba(49, 73, 164, 0.1), 0 0 2px rgba(49, 73, 164, 0.14);
    font-size: 1rem;
    left: -60px;
    line-height: 1.5;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    position: absolute;
    right: -20px
}

@media (min-width: 576px) {
    .panel__content.main-story {
        flex-direction: row;
        max-height: 444px
    }

    .panel__content.main-story .panel__media {
        flex-basis: calc(50% - 32px / 2);
        flex-shrink: 0;
        max-height: 100%;
        margin: auto
    }

    .panel__content.main-story .panel__media img {
        min-height: unset
    }

    .panel__content.main-story .panel__body {
        position: static
    }

    .panel__content.main-story .panel__body::after {
        top: 380px
    }
}

@media (min-width: 992px) {
    .panel__content.main-story .panel__media {
        flex-basis: calc(66.67% - 32px / 3)
    }
}

.contact-card {
    height: 100%
}

.contact-card .contact__avatar {
    margin: 2rem 0 1.5rem;
    text-align: center
}

.contact-card .contact__avatar > img {
    border-radius: 100%;
    height: 120px;
    width: 120px
}

.contact-card .contact__avatar .contact__avatar-placeholder {
    background-color: var(--brand-color);
    border-radius: 100%;
    display: inline-block;
    height: 120px;
    opacity: 20%;
    width: 120px
}

.contact-card .panel__body {
    margin: 0 2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.contact-card .panel__body h2, .contact-card .panel__body .modal .modal__header .modal__title, .modal .modal__header .contact-card .panel__body .modal__title {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.contact-card .panel__body > span {
    display: block
}

.contact-card .panel__body .contact__name {
    margin-bottom: 0.75rem;
    margin-top: 0
}

.contact-card .panel__body .contact__tag {
    border: 1px solid #4F4E65;
    color: #4F4E65;
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.125rem 0.75rem;
    text-transform: uppercase
}

.contact-card .panel__body .contact__email {
    color: var(--brand-secondary-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

.contact-card .panel__body .contact__phone {
    color: #444444
}

.contact-card .panel__body :last-child {
    margin-bottom: 2px
}

.panel__content.is-event {
    max-height: 100%
}

.panel__content.is-event .event__location, .panel__content.is-material-detail .event__location {
    margin-top: 0.75rem
}

.panel__content.is-event .event__date, .panel__content.is-event .event__location, .panel__content.is-material-detail .event__date, .panel__content.is-material-detail .event__location {
    display: flex;
    font-family: "Lato", sans-serif;
    font-family: var(--miscellaneous_font_family);
    align-items: center
}

.panel__content.is-event .event__date i, .panel__content.is-event .event__location i, .panel__content.is-material-detail .event__date i, .panel__content.is-material-detail .event__location i {
    margin-right: 0.5rem
}

.panel__content.is-event .event__date span, .panel__content.is-event .event__location span, .panel__content.is-material-detail .event__date span, .panel__content.is-material-detail .event__location span {
    line-height: 1
}

.panel__content.is-event .event__info, .panel__content.is-material-detail .event__info {
    align-items: center;
    border: 1px solid #dddddd;
    border-radius: 0.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1.5rem
}

@media screen and (min-width: 992px) {
    .panel__content.is-event .event__info, .panel__content.is-material-detail .event__info {
        flex-direction: row
    }
}

@media screen and (min-width: 992px) {
    .panel__content.is-event .event__signup a.button, .panel__content.is-material-detail .event__signup a.button {
        margin-top: 0
    }
}

.panel__content.is-material-detail {
    max-height: 100%
}

.panel__content.is-material-detail .panel__media.is-video, .panel__content.is-material-detail .panel__media.is-image {
    height: 100%;
    max-height: 100%
}

.panel__content.is-material-detail .panel__media.is-video .video-js .vjs-big-play-button:focus {
    outline: 2px solid var(--brand-secondary-color)
}

.panel__content.is-material-detail .panel__media.has-svg svg {
    height: 200px;
    width: 200px
}

.panel__content.is-material-detail .panel__media-doc {
    background: #ffffff
}

.panel__content.is-material-detail .panel__caption {
    background-color: #dddddd;
    display: block;
    font-family: "PT Sans", sans-serif;
    font-family: var(--paragraph_font_family);
    font-size: 0.875rem;
    line-height: 1.3;
    padding: 0.75rem 1rem
}

.panel__content.is-material-detail .panel__body {
    margin-top: 3rem;
    overflow: inherit
}

@media (min-width: 768px) {
    .panel__content.is-material-detail .panel__body {
        margin: 3rem 7rem 4.5rem
    }
}

.panel__content.is-material-detail .panel__body img:not(.logo) {
    max-width: 100%
}

.panel__content.is-material-detail .panel__body hr {
    margin: 2rem 0
}

.panel__content.is-material-detail .panel__body code {
    color: var(--brand-secondary-color);
    padding: 0 0.125rem
}

.panel__content.is-material-detail .panel__body pre {
    margin: 1rem 0;
    overflow: auto;
    padding: 0.375rem 0.625rem
}

table, th, td {
    border: 1px solid;
    padding: 5px;
    margin: 5px;
}

.panel__content.is-material-detail .panel__body table {
    border: 1px solid #dddddd;
    border-collapse: collapse
}

.panel__content.is-material-detail .panel__body table td {
    /*border: 1px solid #dddddd;*/
    padding: 0.5rem;
    vertical-align: top
}

.panel__content.is-material-detail .panel__body code, .panel__content.is-material-detail .panel__body pre {
    background-color: #fbfbfb;
    border: 1px solid #dddddd;
    border-radius: 0.25rem
}

.panel__content.is-material-detail .panel__body ul {
    font-size: 1.125rem
}

.panel__content.is-material-detail .panel__body > div {
    font-size: 1.125rem
}

.panel__content.is-material-detail .panel__body > div ul {
    margin-top: 2rem
}

.panel__content.is-material-detail .panel__body .button {
    margin-top: 1rem
}

.panel__content.is-material-detail .panel__body .type__date {
    color: #999999;
    font-family: "Lato", sans-serif;
    font-family: var(--miscellaneous_font_family);
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase
}

.panel__content.is-material-detail .panel__body .type__highlight {
    color: var(--brand-secondary-color)
}

.panel__content.is-material-detail .panel__body .panel__title {
    margin-bottom: 1rem
}

.panel__content.is-material-detail .panel__body .social-share-container {
    display: flex;
    margin: 1rem 0 1.5rem;
    padding-left: 0.125rem
}

.panel__content.is-material-detail .panel__body .social-share-container > * + * {
    margin-left: 0.75rem
}

.panel__content.is-material-detail .panel__body .commalist {
    display: inline;
    list-style: none;
    padding-left: 0
}

.panel__content.is-material-detail .panel__body .commalist li {
    display: inline
}

.panel__content.is-material-detail .panel__body .commalist li a {
    color: #444444;
    font-size: 1.125rem;
    text-decoration: underline
}

.panel__content.is-material-detail .panel__body .nobullets {
    list-style: none;
    padding-left: 0
}

.panel__content.is-material-detail .panel__body .nobullets li a {
    color: #444444;
    font-size: 1.125rem;
    text-decoration: underline
}

.panel__content.is-material-detail .panel__body .ai-writer-disclaimer {
    color: #999999;
    font-style: italic;
    margin-top: 1rem
}

.panel__content.is-material-detail .about-pressroom {
    padding: 0
}

.panel__content.is-media {
    display: block;
    height: 100%;
    max-height: 212px
}

.panel__content.is-media .media_grid__panel__media {
    height: 100%
}

.panel__content.is-media .media_grid__panel__media img {
    background-color: #dddddd;
    max-height: 100%;
    max-width: 100%
}

.panel__content.is-media .panel__overlay {
    bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    left: 0;
    padding: 1.75rem;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    width: 100%
}

.panel__content.is-media .panel__overlay .panel__overlay-text {
    color: transparent;
    overflow: hidden;
    padding-bottom: 0.75rem
}

.panel__content.is-media .panel__overlay dl.media__info {
    line-height: 1rem;
    padding: 0.75rem
}

.panel__content.is-media .panel__overlay dl.media__info dd {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.panel__content.is-media .panel__overlay .panel__overlay-footer {
    align-items: center;
    border-top: 2px solid transparent;
    display: flex;
    padding-top: 0.75rem
}

.panel__content.is-media .panel__overlay .panel__overlay-footer a {
    color: transparent;
    font-size: 1.125rem;
    overflow: hidden;
    white-space: nowrap
}

@media (max-width: 1200px) {
    .panel__content.is-media .panel__overlay .panel__overlay-footer a {
        font-size: 0.875rem
    }
}

.panel__content.is-media .panel__overlay .panel__overlay-footer a > i {
    vertical-align: middle
}

.panel__content.is-media .panel__overlay .panel__overlay-footer a svg {
    stroke: transparent
}

.panel__content.is-media .panel__overlay .panel__overlay-footer .media__info-icon {
    position: absolute
}

.panel__content.is-media .panel__overlay .panel__overlay-footer .media__info-icon svg {
    stroke: #ffffff
}

.panel__content.is-media .panel__overlay .panel__overlay-footer .media__download-link {
    visibility: hidden
}

.panel__content.is-media:hover .panel__overlay, .panel__content.is-media:focus-within .panel__overlay {
    background-color: var(--brand-secondary-color)
}

.panel__content.is-media:hover .panel__overlay .panel__overlay-text, .panel__content.is-media:focus-within .panel__overlay .panel__overlay-text {
    color: #ffffff
}

.panel__content.is-media:hover .panel__overlay .panel__overlay-footer, .panel__content.is-media:focus-within .panel__overlay .panel__overlay-footer {
    border-color: #ffffff
}

.panel__content.is-media:hover .panel__overlay .panel__overlay-footer .media__info-icon svg, .panel__content.is-media:focus-within .panel__overlay .panel__overlay-footer .media__info-icon svg {
    stroke: transparent
}

.panel__content.is-media:hover .panel__overlay .panel__overlay-footer .media__download-link, .panel__content.is-media:focus-within .panel__overlay .panel__overlay-footer .media__download-link {
    visibility: visible
}

.panel__content.is-media:hover .panel__overlay .panel__overlay-footer i, .panel__content.is-media:hover .panel__overlay .panel__overlay-footer a, .panel__content.is-media:focus-within .panel__overlay .panel__overlay-footer i, .panel__content.is-media:focus-within .panel__overlay .panel__overlay-footer a {
    color: #ffffff
}

.panel__content.is-media:hover .panel__overlay .panel__overlay-footer i svg, .panel__content.is-media:hover .panel__overlay .panel__overlay-footer a svg, .panel__content.is-media:focus-within .panel__overlay .panel__overlay-footer i svg, .panel__content.is-media:focus-within .panel__overlay .panel__overlay-footer a svg {
    stroke: #ffffff
}

.media-grid .panel__content.is-media {
    max-height: none
}

.panel.with-media.is-golden-ratio .panel__content {
    max-height: none;
    min-height: auto
}

.panel.with-media.is-contained {
    height: 100%
}

.panel.with-media.is-dynamic .panel__media.has-svg {
    height: 224px;
    aspect-ratio: auto
}

.panel__content.is-social {
    height: 262px
}

.panel__content.is-social .panel__media {
    background-image: none
}

.panel__content.is-social .panel__media .is-contained {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.panel__content.is-social .panel__overlay {
    bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    left: 0;
    padding: 2rem;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    width: 100%
}

.panel__content.is-social .panel__overlay .panel__overlay-text {
    margin-bottom: 0.75rem;
    overflow: hidden;
    white-space: normal
}

.panel__content.is-social .panel__overlay .panel__overlay-footer {
    border-top: 2px solid var(--brand-color);
    display: flex;
    padding-top: 0.75rem
}

.panel__content.is-social .panel__overlay .panel__overlay-footer > i svg {
    fill: #999999;
    stroke: none
}

.panel__content.is-social .panel__overlay .panel__overlay-footer a, .panel__content.is-social .panel__overlay .panel__overlay-footer span {
    color: #999999;
    font-size: 1.125rem;
    margin-left: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.panel__content.is-social.has-image .panel__overlay .panel__overlay-text {
    color: transparent
}

.panel__content.is-social.has-image .panel__overlay .panel__overlay-footer {
    border-color: transparent
}

.panel__content.is-social.has-image .panel__overlay .panel__overlay-footer > i svg {
    fill: #ffffff
}

.panel__content.is-social.has-image .panel__overlay .panel__overlay-footer a, .panel__content.is-social.has-image .panel__overlay .panel__overlay-footer span {
    color: transparent
}

.panel__content.is-social:hover .panel__overlay, .panel__content.is-social:focus-within .panel__overlay, .panel__content.is-social:hover .panel__overlay.has-image, .panel__content.is-social:focus-within .panel__overlay.has-image {
    background-color: var(--brand-secondary-color)
}

.panel__content.is-social:hover .panel__overlay .panel__overlay-text, .panel__content.is-social:focus-within .panel__overlay .panel__overlay-text, .panel__content.is-social:hover .panel__overlay.has-image .panel__overlay-text, .panel__content.is-social:focus-within .panel__overlay.has-image .panel__overlay-text {
    color: #ffffff
}

.panel__content.is-social:hover .panel__overlay .panel__overlay-footer, .panel__content.is-social:focus-within .panel__overlay .panel__overlay-footer, .panel__content.is-social:hover .panel__overlay.has-image .panel__overlay-footer, .panel__content.is-social:focus-within .panel__overlay.has-image .panel__overlay-footer {
    border-color: #ffffff
}

.panel__content.is-social:hover .panel__overlay .panel__overlay-footer > i svg, .panel__content.is-social:focus-within .panel__overlay .panel__overlay-footer > i svg, .panel__content.is-social:hover .panel__overlay.has-image .panel__overlay-footer > i svg, .panel__content.is-social:focus-within .panel__overlay.has-image .panel__overlay-footer > i svg {
    fill: #ffffff
}

.panel__content.is-social:hover .panel__overlay .panel__overlay-footer a, .panel__content.is-social:hover .panel__overlay .panel__overlay-footer span, .panel__content.is-social:focus-within .panel__overlay .panel__overlay-footer a, .panel__content.is-social:focus-within .panel__overlay .panel__overlay-footer span, .panel__content.is-social:hover .panel__overlay.has-image .panel__overlay-footer a, .panel__content.is-social:hover .panel__overlay.has-image .panel__overlay-footer span, .panel__content.is-social:focus-within .panel__overlay.has-image .panel__overlay-footer a, .panel__content.is-social:focus-within .panel__overlay.has-image .panel__overlay-footer span {
    color: #ffffff
}

a.panel:has(.panel__content.is-social .panel__overlay):focus .panel__content.is-social .panel__overlay {
    background-color: var(--brand-secondary-color)
}

a.panel:has(.panel__content.is-social .panel__overlay):focus .panel__content.is-social .panel__overlay .panel__overlay-text {
    color: #ffffff
}

a.panel:has(.panel__content.is-social .panel__overlay):focus .panel__content.is-social .panel__overlay .panel__overlay-footer {
    border-color: #ffffff
}

a.panel:has(.panel__content.is-social .panel__overlay):focus .panel__content.is-social .panel__overlay .panel__overlay-footer > i svg {
    fill: #ffffff
}

a.panel:has(.panel__content.is-social .panel__overlay):focus .panel__content.is-social .panel__overlay .panel__overlay-footer a, a.panel:has(.panel__content.is-social .panel__overlay):focus .panel__content.is-social .panel__overlay .panel__overlay-footer span {
    color: #ffffff
}

@media screen and (max-width: 768px) {
    .sm-mobile-scroll {
        display: block;
        overflow-x: auto;
        white-space: nowrap
    }

    .sm-mobile-scroll > div {
        display: inline-block;
        vertical-align: top
    }
}
