[data-section-type] {
    width: 100%;
}

.pb-section,
.pb-section * {
    box-sizing: border-box;
}

.pb-section img,
.pb-component-image,
.pb-card-image {
    max-width: 100%;
}

.pb-component-image {
    display: block;
}

.pb-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pb-card-image-wrap {
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.pb-card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
}

.pb-card-content {
    flex: 1 1 auto;
}

.pb-card-link-wrap {
    margin-top: 1rem;
}

.pb-component-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.pb-component-link,
.pb-card-link,
.pb-component-title,
.pb-component-subtitle,
.component-narrative {
    overflow-wrap: anywhere;
}

.component-narrative p,
.component-narrative ul,
.component-narrative ol {
    margin-bottom: 1rem;
}

.component-narrative ul,
.component-narrative ol {
    padding-left: 1.25rem;
}

.component-narrative ul {
    list-style: disc;
}

.component-narrative ol {
    list-style: decimal;
}

.component-narrative a,
.pb-section-list a {
    color: blue;
}

.component-narrative a:hover,
.pb-section-list a:hover {
    color: midnightblue;
}

.pb-accordion summary::-webkit-details-marker {
    display: none;
}

.pb-accordion .accordion-summary-icon .acc-chevron {
    font-size: 1rem;
    transition: transform .25s ease-in-out;
    transform: rotate(0deg);
}

.pb-accordion details[open] .accordion-summary-icon .acc-chevron {
    transform: rotate(180deg);
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.animate-marquee {
    animation: marquee 60s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
}

.mask-edges {
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 85%, transparent);
}

[data-container-key$="-container"],
[data-container-key$="-container"] > div,
[data-area-key*="container-main"] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

    [data-area-key*="container-main"] > [data-section-key*="container-main-"]:last-child {
        flex-grow: 1;
    }

@media(prefers-reduced-motion: reduce) {
    .animate-marquee {
        animation: none;
        transform: none;
        overflow-x: auto;
    }
}


@media (max-width: 991.98px) {
    [data-section-type="content"] .pb-content-grid,
    [data-section-type="base-content"] .pb-base-content-grid {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    [data-section-type="hero"] {
        height: auto !important;
        min-height: 520px;
    }

    [data-section-type="image-banner"] {
        min-height: 320px !important;
    }

    .pb-component-image {
        height: auto !important;
        width: 100% !important;
    }
}

@media (max-width: 767.98px) {
    .pb-section-cards,
    [data-section-type="hero"],
    [data-section-type="content"],
    [data-section-type="base-content"],
    [data-section-type="image-banner"],
    [data-section-type="generic"] {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    [data-section-type="hero"] {
        min-height: 460px;
    }

    .pb-cards-grid {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .pb-component-button {
        width: 100%;
    }
}