.shorts-showcase {
    background: #fbfdfc;
    color: var(--body-font-color);
}

.shorts-heading {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 34px;
}

.shorts-heading h2,
.shorts-heading p {
    color: inherit;
}

.shorts-heading p {
    margin: 0;
    max-width: 720px;
}

.shorts-controls {
    align-items: center;
    align-self: center;
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
}

.shorts-controls button {
    align-items: center;
    background: var(--brand-green-100);
    border: 1px solid var(--brand-green-300);
    border-radius: 50%;
    color: var(--brand-green-900);
    display: inline-flex;
    font-size: 34px;
    height: 52px;
    justify-content: center;
    line-height: 1;
    transition: background-color 160ms ease, transform 160ms ease;
    width: 52px;
}

.shorts-controls button:hover,
.shorts-controls button:focus-visible {
    background: var(--brand-green-900);
    color: #fff;
    transform: translateY(-2px);
}

.shorts-controls span {
    color: var(--brand-green-900);
    font-size: 14px;
    font-weight: 800;
    min-width: 56px;
    text-align: center;
}

.shorts-stage {
    outline: none;
}

.shorts-slide {
    align-items: center;
    display: none;
    gap: clamp(34px, 7vw, 90px);
    grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
    justify-content: center;
    margin-inline: auto;
    max-width: 980px;
}

.shorts-slide.is-active {
    display: grid;
}

.shorts-video {
    aspect-ratio: 9 / 16;
    background: #071f1e;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .3);
    isolation: isolate;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.shorts-video > img {
    height: 100%;
    object-fit: cover;
    opacity: .46;
    width: 100%;
}

.shorts-video iframe {
    background: #000;
    border: 0;
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
    z-index: 3;
}

.shorts-placeholder {
    align-items: center;
    display: flex;
    flex-direction: column;
    inset: 0;
    justify-content: center;
    padding: 30px;
    position: absolute;
    text-align: center;
    color: #fff;
}

.shorts-placeholder span {
    align-items: center;
    background: rgba(255, 255, 255, .18);
    border: 2px solid rgba(255, 255, 255, .8);
    border-radius: 50%;
    display: flex;
    font-size: 24px;
    height: 66px;
    justify-content: center;
    margin-bottom: 18px;
    padding-left: 4px;
    width: 66px;
}

.shorts-placeholder strong {
    font-size: 24px;
}

.shorts-placeholder small {
    color: rgba(255, 255, 255, .76);
    margin-top: 5px;
}

.shorts-copy {
    max-width: 480px;
}

.shorts-copy > span {
    color: var(--brand-green-700);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.shorts-copy h3 {
    color: var(--heading-font-color);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin: 12px 0;
}

.shorts-copy p {
    color: var(--body-font-color);
    font-size: 18px;
}

.shorts-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 30px;
}

.shorts-dots button {
    background: var(--brand-green-300);
    border: 0;
    border-radius: 99px;
    height: 8px;
    padding: 0;
    transition: background-color 160ms ease, width 160ms ease;
    width: 24px;
}

.swiper > .swiper-pagination {
    left: 0;
    margin-inline: auto;
    right: 0;
    text-align: center;
    width: max-content;
}

.shorts-dots button.is-active {
    background: var(--brand-green-900);
    width: 42px;
}

.home-faq-section {
    background: var(--brand-green-50);
}

.home-faq-intro {
    max-width: 520px;
}

.home-faq-intro h2 {
    margin-bottom: 18px;
}

.home-faq-intro p {
    font-size: 17px;
    margin: 0;
    max-width: 460px;
}

.home-faq .accordion-section-title {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(16, 63, 61, .06);
    margin-bottom: 12px;
    padding: 18px 58px 18px 20px;
    position: relative;
}

.home-faq .accordion-section-title::before {
    display: none;
}

.home-faq .accordion-section-title::after {
    color: var(--brand-green-700);
    right: 20px;
}

.home-faq .accordion-section-title:hover,
.home-faq .accordion-section-title:focus-visible,
.home-faq .accordion-section-title.is-open {
    border-color: var(--brand-green-300);
    color: var(--brand-green-800);
}

.home-faq .accordion-section-title.is-open {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-bottom: 0;
}

.home-faq .accordion-section-content {
    background: #fff;
    border: 1px solid var(--brand-green-300);
    border-radius: 0 0 14px 14px;
    border-top: 0;
    color: var(--body-font-color);
    line-height: 1.7;
    margin-bottom: 12px;
    padding: 16px 20px 20px;
}

@media (max-width: 767px) {
    .shorts-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .shorts-slide,
    .shorts-slide.is-active {
        display: block;
    }

    .shorts-slide:not(.is-active) {
        display: none;
    }

    .shorts-video {
        margin-inline: auto;
        max-width: 320px;
    }

    .shorts-copy {
        margin: 28px auto 0;
        max-width: 420px;
        text-align: center;
    }

    .shorts-copy h3 {
        font-size: 2rem;
    }

    .shorts-copy p {
        font-size: 16px;
    }
}
