.text-section {
    --page-background: #ffffff;
    --surface: #ffffff;
    --heading: #182c2c;
    --subheading: #56706c;
    --text: #34413f;
    --accent: #b8563f;
    --accent-hover: #95412f;
    --focus: #207a72;
}

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

.text-section {
    color-scheme: light;
    font-family:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    margin: 0;
    color: var(--text);
    background: var(--page-background);
}

.text-section .page-shell {
    width: 100%;
    margin: 0;
    padding: 0;
}

.text-section .report-card {
    padding: 0;
    background: var(--surface);
}

.text-section .report-header {
    max-width: 850px;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.text-section h2,
.text-section h3,
.text-section p {
    margin-top: 0;
}

.text-section h2 {
    margin-bottom: 0.45rem;
    color: var(--heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.text-section h3 {
    margin-bottom: 0;
    color: var(--subheading);
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 500;
    line-height: 1.45;
}

.text-section .report-body::after {
    display: block;
    clear: both;
    content: "";
}

.text-section .media-box {
    float: right;
    width: min(48%, 470px);
    margin: 0 0 1.25rem clamp(1.25rem, 3vw, 2.5rem);
    overflow: hidden;
    background: #d9e3df;
}

.text-section .media-box img,
.text-section .media-box video {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.text-section .copy p {
    margin-bottom: 1.15rem;
    font-size: clamp(1rem, 1.7vw, 1.125rem);
    line-height: 1.75;
}

.text-section .more-content {
    display: block;
}

.text-section .more-content[aria-hidden="true"] {
    display: none;
}

.text-section .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 44px;
    padding: 0.65rem 0;
    color: var(--accent);
    font: inherit;
    font-weight: 700;
    background: transparent;
    border: 0;
    border-bottom: 2px solid currentColor;
    border-radius: 0;
    cursor: pointer;
    transition: color 160ms ease;
}

.text-section .read-more:hover {
    color: var(--accent-hover);
}

.text-section .read-more:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--focus) 45%, transparent);
    outline-offset: 5px;
}

.text-section .button-icon {
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-0.15rem) rotate(45deg);
    transition: transform 180ms ease;
}

.text-section .read-more[aria-expanded="true"] .button-icon {
    transform: translateY(0.15rem) rotate(225deg);
}

@media (max-width: 700px) {
    .text-section .page-shell {
        width: min(100% - 1.25rem, 600px);
        margin-inline: auto;
        padding-block: 1rem;
    }

    .text-section .report-card {
        padding: 0;
    }

    .text-section .report-header {
        margin-bottom: 1.25rem;
    }

    .text-section .media-box {
        float: none;
        width: 100%;
        margin: 0 0 1.25rem;
    }

    .text-section .media-box img,
    .text-section .media-box video {
        aspect-ratio: 16 / 10;
    }

    .text-section .copy p {
        line-height: 1.65;
    }
}

@media (prefers-reduced-motion: reduce) {

    .text-section *,
    .text-section *::before,
    .text-section *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media only screen and (max-width: 480px) {

    #thanks .et_pb_row_6col {
        flex-wrap: wrap !important;
        padding-left: 5% !important;
        padding-right: 5% !important;
    }

    #thanks .et_pb_row_6col .et_pb_column {
        min-width: 125px !important;
        width: 50% !important;
        display: block !important;
    }

    #thanks .et_pb_row_6col .et_pb_column .et_pb_blurb {
        margin: 0 auto !important;
    }

}