:root {
    --brand-premium: hsl(42 54% 50%);
    --brand-card: hsl(22 90% 54%);
    --brand: var(--brand-premium);
    --neutral-100: #fff;
    --neutral-200: #f9f9f9;
    --neutral-900: #000;
    --white: var(--neutral-100);
    --gray: var(--neutral-200);
    --black: var(--neutral-900);
    --padding-xs: 2rem;
    --padding-xl: 4rem;
    --fs-100: 1.125rem;
    --fs-200: 1.25rem;
    --fs-300: 1.5rem;
    --fs-400: 2rem;
    --fs-500: 2.125rem;
    --fs-600: 3rem;
    --lh-400: 1.25;
}

.text-white {
    color: var(--white);
}

.text-black {
    color: var(--black);
}

.text-brand {
    color: var(--brand);
}

.bg-white {
    background-color: var(--white);
}

.bg-gray {
    background-color: var(--gray);
}

.pt {
    --_pt: var(--padding-xs);
    padding-top: var(--_pt);
}

@media (min-width: 48em) {
    .pt {
        --_pt: var(--padding-xl);
    }
}

.pb {
    --_pb: var(--padding-xs);
    padding-bottom: var(--_pb);
}

@media (min-width: 48em) {
    .pb {
        --_pb: var(--padding-xl);
    }
}

h1,
h2,
h3 {
    margin: 0;
    line-height: var(--lh-400);
}

h1 {
    --_h1: var(--fs-400);
    font-weight: 400;
    font-size: var(--_h1);
}

@media (min-width: 48em) {
    h1 {
        --_h1: var(--fs-600);
    }
}

h2 {
    --_h2: var(--fs-300);
    font-weight: 700;
    font-size: var(--_h2);
}

@media (min-width: 48em) {
    h2 {
        --_h2: var(--fs-500);
    }
}

h3 {
    --_h3: var(--fs-100);
    font-weight: 700;
    font-size: var(--_h3);
}

@media (min-width: 48em) {
    h3 {
        --_h3: var(--fs-200);
    }
}

body {
    line-height: 1.5;
}

p {
  margin-block: 1em;
}

.wrapper {
    max-width: 55rem;
    margin: auto;
    padding-inline: 1rem;
}

  .hero {
                        position: relative;
                        isolation: isolate;
                        min-height: 370px;
                        display: grid;
                        place-content: center;
                        padding-block: 2rem;
                        background-color: #000;
                        background-repeat: no-repeat;
                        background-position: 50% 50%;
                        background-size: cover;
                        color: var(--neutral-100);
                        text-align: center
                }

                .hero:before {
                        content: "";
                        position: absolute;
                        inset: 0;
                        z-index: -1;
                        background-color: #0003
                }

.w-accordions {
    margin-top: 3rem;
}

.w-accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    background-color: var(--brand);
    cursor: pointer;
    margin-top: 0.625rem;
    padding: 0.5rem 1rem;
}

.w-accordion-label {
    flex: 1 1 100%;
    margin-right: 1rem;
}

.w-accordion-icon {
    font-size: 1.25rem;
    line-height: 1;
    flex: 0 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .w-accordion-icon .is-expanded {
        display: none;
    }

    .w-accordion-icon .is-contracted {
        display: block;
    }

.w-accordion-button.w--current .is-expanded {
    display: block;
}

.w-accordion-button.w--current .is-contracted {
    display: none;
}

.w-accordion-content {
    opacity: 0;
    height: 0;
    overflow: hidden;
    max-width: 44rem;
}

.w-accordion-button.w--current + .w-accordion-content {
    padding: 1rem;
    opacity: 1;
    height: auto;
    overflow: unset;
}

.callout {
    border: 1px solid var(--brand);
    padding: 2rem 2.5rem;
}

.bg-white .callout {
    background-color: var(--gray);
}

.bg-gray .callout {
    background-color: var(--white);
}

.callout a {
    font-weight: 700;
    text-decoration: none;
    color: var(--brand);
}

    .callout a:hover {
        text-decoration: underline;
    }

.media-block {
    --_direction: column;
    display: flex;
    flex-direction: var(--_direction);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 48em) {
    .media-block {
        --_direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

        .media-block[data-layout=inverted] {
            --_direction: row-reverse;
        }
}

.media-block__image {
    display: block;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
}

.media-block__text {
    flex: 1;
}

.accordion {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    background-color: var(--brand);
    cursor: pointer;
    margin-block: 0.625rem 0;
    padding: 0.5rem 1rem;
}

    .accordion::before {
        content: "";
        float: right;
        width: 2rem;
        height: 1.25rem;
        line-height: 1;
        background: no-repeat 50% 50%/17.5px 20px;
        background-image: url(/plus.svg);
        margin-left: 1rem;
    }

    .accordion.active::before {
        background-image: url(/minus.svg);
    }

.panel {
    padding: 1rem;
    display: none;
    overflow: hidden;
}

.rich-text-editor a {
    color: var(--brand);
    text-decoration: underline;
}

    .rich-text-editor a:hover {
        text-decoration: none;
    }

.rich-text-editor > * + * {
    margin-top: 1em;
}
