<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">main section.slide-section.promos {
    position: relative;
}

main section.slide-section.promos .slide-section-title{
    margin-top: 1rem;
}

main section.slide-section.promos .slide-group.slide-group--promos {
    display: flex;
    gap: 1rem;
}
section.slide-section .slide-group.slide-group--promos .promo-block .textarea {
    padding: 2rem;
}
section.slide-section .slide-group.slide-group--promos .promo-block .textarea p {
    margin: .5em 0;
}
section.slide-section .slide-group.slide-group--promos .promo-block .textarea .button-group a {
    margin: 0 auto;
}

section.slide-section .slide-group.slide-group--promos::-webkit-scrollbar {
  width: 2rem;
  cursor: pointer;
}
section.slide-section .slide-group.slide-group--promos {
  scrollbar-width: thick;
  scrollbar-color: rgba(255,255,255,.5) transparent;
  padding-bottom: 1em;
}
section.slide-section .slide-group.slide-group--promos::-webkit-scrollbar-track {
  background: transparent;
}
section.slide-section .slide-group.slide-group--promos::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,.5);
  border-radius: 2rem;
  cursor: pointer;
}

@media (width &gt;= 450px) {
    main section.slide-section.promos .slide-group.slide-group--promos {
        margin-left: 5rem;
        margin-right: 5rem;
        width: calc(100% - 10rem);
        min-width: unset;
    }
}

main section.slide-section.promos .slider-arrow {
    display: none;
}

@media (width &gt;= 450px) {
    main section.slide-section.promos .slider-arrow {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--block-promo-bg-colour);
        color: var(--block-promo-text-colour);
        border: none;
        font-size: 1rem;
        line-height: 1.75;
        padding: 0.5rem 1rem;
        cursor: pointer;
        z-index: 20;
        border-radius: 10rem;
    }

    .left-arrow {
        left: 1rem;
    }

    .right-arrow {
        right: 1rem;
    }

    main section.slide-section.promos .slider-arrow:hover {
        filter: invert(100%);
    }
}

section.slide-section .slide-group.slide-group--promos .promo-block {
    padding: 0;
    flex-direction: column;
    z-index: 10;
    flex: 1 0 90%;
}

section.slide-section .slide-group.slide-group--promos .promo-block &gt; .textarea,
section.slide-section .slide-group.slide-group--promos .promo-block &gt; figure {
    margin: 0;
    width: unset;
}

section.slide-section .slide-group.slide-group--promos .promo-block &gt; figure {
    max-height: 24rem;
}

section.slide-section .slide-group.slide-group--promos .promo-block h2 {
    font-size: var(--h2-size);
}

section.slide-section .slide-group.slide-group--promos .promo-block .promo_link_pageslug {
    bottom: unset;
    top: 0;
    color: black;
    transform: unset;
}

@media (width &gt;= 450px) {
    section.slide-section .slide-group.slide-group--promos .promo-block {
/*        flex: 1 0 calc(50% - .5rem);*/
/*        max-width: 450px;*/
        flex-direction: row;
        flex: 1 0 45%;
    }
    section.slide-section .slide-group.slide-group--promos .promo-block .textarea {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    section.slide-section .slide-group.slide-group--promos .promo-block &gt; figure {
        max-height: unset;
    }
}

@media only screen and (max-height: 500px) and (orientation: landscape) {
    main section.slide-section.promos .slide-group.slide-group--promos {
        display: flex;
        gap: 1rem;
        margin: 1rem 0;
        width: 100%;
    }
    section.slide-section .slide-group.slide-group--promos .promo-block {
        flex-direction: row;
        flex: 1 0 45%;
    }
}</pre></body></html>