#hedera__page-builder,
.block-sticky-sections,
.block-sticky-sections__inner,
.block-sticky-sections__items,
.block-sticky-sections__item {
    overflow: visible;
}

.block-sticky-sections {
    width: 100%;
    background: #000;
    color: #fff;
    padding: var(--page-spacing-xl) var(--page-spacing-2xl);
}

.block-sticky-sections,
.block-sticky-sections h1,
.block-sticky-sections h2,
.block-sticky-sections h3,
.block-sticky-sections h4,
.block-sticky-sections h5,
.block-sticky-sections h6,
.block-sticky-sections p,
.block-sticky-sections a,
.block-sticky-sections li {
    font-family: 'Gelasio', sans-serif;
    color: #fff;
}

.block-sticky-sections__inner {
    width: 100%;
}

.block-sticky-sections__eyebrow {
    margin-bottom: var(--word-spacing-2xl);
}

.block-sticky-sections__eyebrow p {
    margin: 0;
    font-size: var(--hedera-font-lg);
    line-height: 1.1;
}

/* Eyebrow is never sticky */
.block-sticky-sections__eyebrow {
    position: static;
}

.block-sticky-sections__item {
    display: grid;
    grid-template-columns: 45% 45%;
    gap: var(--gap-spacing-xl);
    align-items: stretch;
    padding: var(--hedera-space-3xl) 0 var(--hedera-space-xl);
    border-bottom: 1px solid white;
}

.block-sticky-sections__item:last-child {
    border-bottom: none;
}

.block-sticky-sections__left {
    align-self: start;
    position: sticky;
    top: 40vh;
    background: black;
}

.block-sticky-sections__left h2 {
    margin: 0;
    font-size: var(--hedera-font-xxl);
    line-height: 1;
    font-weight: unset;
    will-change: transform;
}

.block-sticky-sections--sticky .block-sticky-sections__item {
    opacity: 0;
    transform: translateY(40px);
    transition:
            opacity 0.7s ease,
            transform 0.7s ease;
}

.block-sticky-sections--sticky .block-sticky-sections__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Only the right section has border bottom */
.block-sticky-sections__right {
    width: 100%;
}

.block-sticky-sections__item:last-child .block-sticky-sections__right {
    margin-bottom: 0;
}

.block-sticky-sections__right h3 {
    margin: 0 0 var(--word-spacing-lg);
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: unset;
}

.block-sticky-sections__description {
    margin-bottom: var(--hedera-space);
    width: 85%;
}

.block-sticky-sections__description p {
    margin: 0;
    font-size: var(--hedera-font-sm);
    font-weight: unset;
    line-height: 1.2;
}

.block-sticky-sections__description p:last-child {
    margin-bottom: 0;
}

.block-sticky-sections__description a {
    text-decoration: underline;
    text-underline-offset: 0.14em;
}

.block-sticky-sections__list h4 {
    margin: 0 0 var(--word-spacing);
    font-size: var(--hedera-font-md);
    line-height: 1.2;
    font-weight: unset;
}

.block-sticky-sections__list ul {
    margin: 0;
    padding-left: 32px;
}

.block-sticky-sections__list li {
    font-size: var(--hedera-font-sm);
    font-weight: unset;
    line-height: 1.2;
}
@media (max-width: 1000px) {
    .block-sticky-sections__item {
        grid-template-columns: 1fr;
    }
    .block-sticky-sections__left {
        top: 70px;
        padding: var(--hedera-space) 0
    }
}
@media (max-width: 768px) {
    .block-sticky-sections__inner {
        margin: var(--section-spacing-3xl) 0;
    }

    .block-sticky-sections--sticky .block-sticky-sections__item {
        opacity: 1;
        transform: none;
    }
    
    .block-sticky-sections__item {
        display: block;
        min-height: auto;
    }

    .block-sticky-sections__item:last-child {
        margin-bottom: 0;
        border-bottom: 1px solid white;
    }

    .block-sticky-sections__right {
        max-width: none;
        padding-bottom: 64px;
        margin-bottom: 0;
    }

    .block-sticky-sections__description p {
        line-height: 1.5;
    }
}