/* CARDS WITH FILTERS */

.filtered-cards-wrapper {
    position: relative;
    /* max-width: fit-content; */

    .no-show {
        visibility: hidden;
    }

    .st-events-card {
        width: 420px;
        height: 180px;
        cursor: pointer;
        
        .card-image-box {
            width: 200px;
            border-radius: 20px 0 20px 0;
            overflow: hidden;
            min-width: fit-content;
            z-index: 0;
            position: relative;

            img {
                object-fit: cover;
                transition: var(--transition-long);
            } 

            .card-date {
                position: absolute;
                top: 10px;
                right: 0;
                background: var(--brand-green);
                color: #fff;
                font-size: 10px;
                border-radius: 10px 0 0 10px;
                padding: 5px;

                p {
                    margin-bottom: 0;
                    text-align: center;
                    line-height: 100%;
                }

                .card-day {
                    font-size: 24px;
                    font-weight: 700;
                    margin-bottom: 2px;
                }
            }
        }

        .card-text-box {
            height: 100%;
            min-width: 236px;
            background: #fff;
            border-radius: 0 0 20px 0;
            z-index: -1;
            padding-left: 33px!important;
            transform: translateX(-20px);

            @media(max-width: 576px) {
                min-width: unset;
                max-width: 200px;
                padding-left: .5rem!important;
                padding-top: 33px!important;
                transform: translateY(-20px);
            }

        }

        &:hover,
        &:active {
            .card-text-box {
                background: var(--brand-yellow);
            }

            img {
                transform: scale(1.1);
            }
        }

        .card-category {
            font-size: 14px;
            color: var(--brand-green);
            margin-bottom: 0;
        }

        .card-description {
            font-size: 12px;
            margin-bottom: 0;
        }

        @media (max-width: 576px) {
            height: fit-content;
            width: 200px;
        }
    }
    .filter-wrap {
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        background: #fff;
        z-index: 10;
        min-width: 22%;
        
        @media (max-width: 991.98px) {
            display: none;
            opacity: 0;
            position: absolute;
            top: 48px;
            right: 0;
            padding: 10px;
            border-radius: 0 0 20px 20px;

            &.visible {
                display: flex;
                opacity: 1;
            }
        }
    }

    .card-list.for-todos {
        max-width: 100%;

        @media (max-width: 992px) {
            max-width: 100%;
        }
    }

    .st-todos-card {
        --st-todos-card-max-width: 290px;

        display: flex;
        flex-direction: column;
        height: 100%;
        cursor: pointer;

        @media (max-width: 1400px) {
            --st-todos-card-max-width: 230px;
        }

        @media (max-width: 1200px) {
            --st-todos-card-max-width: 195px;
        }

        @media (max-width: 992px) {
            --st-todos-card-max-width: unset;
        }

        @media (max-width: 768px) {
            --st-todos-card-max-width: 250px;
        }

        @media (max-width: 576) {

        }

        .card-image-box {
            border-radius: 20px 0 20px 0;
            overflow: hidden;
            min-width: fit-content;
            /* hhmmmm need to adress width disparity */
            z-index: 0;
            position: relative;

            width: 100%;
            height: 320px;

            img {
                object-fit: cover;
                min-width: 100%;
                max-width: var(--st-todos-card-max-width);
            } 
        }

        .card-text-box {
            display: flex!important;
            flex: 1;
            background: #fff;
            border-radius: 0 0 20px 0;
            z-index: -1;
            width: 100%;
            padding-left: .5rem!important;
            padding-top: 33px!important;
            transform: translateY(-20px);

            .card-title,
            .card-description {
                color: #000;
            }

            .card-category {
                color: var(--brand-green);
            }

            @media(max-width: 576px) {
                min-width: unset;
                padding-left: .5rem!important;
                padding-top: 33px!important;
                transform: translateY(-20px);
            }
        }

        img {
            transition: var(--transition-long);
        }

        &:hover,
        &:active {
            img {
                transform: scale(1.1);
            }
            .card-text-box {
                background: var(--brand-yellow);
            }
        }
    }

    .todos-link {
        margin-bottom: 24px;
        text-decoration: none;

        @media (max-width: 992px) {
            max-width: unset;        
        }
    }

    label {
        font-size: 14px;
    }

    .filters-reveal,
    .filters-hide {
        color: var(--brand-green);
        font-size: 12px;
        border: solid var(--brand-green) 1px;
        border-radius: 20px;
        padding: 2px 4px 2px 0;
        max-width: fit-content;
        text-decoration: none;
        transition: var(--transition);

        &:hover {
            color: var(--brand-green-dk);
            border-color: var(--brand-green-dk);
        }

        svg {
            height: 14px;
            width: 14px;
            transform: translate(2px, -1px);
        }
    }

    .filters-reveal {
        margin-right: 18px;
    }

    .filters-clear {
        font-size: 12px;
    }

    .st-events-card,
    .st-todos-card {
        .st-button {
            transition: var(--transition);
        }

        &:hover {
            .st-button {
                border: solid var(--brand-green-dk) 1px;
                color: #fff!important;
                background: var(--brand-green);

                .divider {
                    border-color: #fff;
                }

                svg {
                    fill: var(--brand-yellow);
                }
            }
        }
    }

    .st-pagination-wrapper {
        margin: auto;
        width: 95%;

        .prev-link,
        .next-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            font-weight: 800;
            color: var(--brand-green);
            transition: var(--transition);

            .arrow__wrap {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                border: 1px solid var(--brand-green);
                border-radius: 100%;
                transition: var(--transition);
                
                svg {
                    width: 16px;
                    height: auto; 
                    position: static !important;
                    display: block;
                    margin: 0;
                    transform: none;
                }
            }

            &:hover {
                color: var(--brand-green-dk);
                
                .arrow__wrap {
                    background-color: var(--brand-green);
                    border-color: var(--brand-green);
                    color: #fff;
                }
            }
            
            &.disabled {
                opacity: 0.5;
                pointer-events: none;
            }
        }
        
        .st-pagination-numbers {
            li a, li span {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 36px;
                height: 36px;
                border-radius: 100%;
                text-decoration: none;
                color: #333;
                transition: var(--transition);
            }
            
            li a:hover {
                background-color: rgba(0,0,0,0.05);
            }

            li a.active {
                background-color: var(--brand-green); /* Or whatever variant your design uses */
                color: #fff;
            }
        }

        .st-pagination-ellipsis {
            font-weight: 300;
        }

        @media (max-width: 520px) {
            .st-pagination-numbers {
                display: none !important;
            }

            .st-pagination_container {
                justify-content: space-between !important;
            }
        }
    }
}

/* CARDS W/O FILTERS (EVENTS CARDS) */
.st-events-cards {
    --st-events-card-width: 30%;

    @media (max-width: 575px) {
        --st-events-card-width: 100%;
    }

    .st-events-cards-inner {
        width: 100%;

        a.st-events-card-link {
            width: var(--st-events-card-width);
            text-decoration: none;
        }
    }

    .st-event-card {
        border-radius: 20px 0 20px 0;
        transition: background-color 0.3s ease;

        &:hover {
            background-color: var(--brand-yellow);
            cursor: default !important;
        }
    }

    .st-events-card-no-filter {
        width: 100%;
        
        .st-events-card-image-box {
            position: relative;
            width: 100%;
            min-height: fit-content;
            border-radius: 20px 0 20px 0;
            overflow: hidden;

            img {
                transition: var(--transition-long);
                width: 100%;
                object-fit: cover;
            }

            .st-events-card-date {
                position: absolute;
                top: 10px;
                right: 0;
                background: var(--brand-green);
                color: #fff;
                border-radius: 10px 0 0 10px;
                padding: 10px;

                p {
                    margin-bottom: 0;
                    text-align: center;
                    line-height: 100%;
                }

                .st-events-card-day {
                    font-size: 32px;
                    font-weight: 700;
                    margin-bottom: 2px;
                }
            }
        }


        .st-events-card-title {
            text-transform: none;
        }
        
        .st-events-card-description {
            color: #000;
        }

        &:hover {
            cursor: pointer;

            img {
                transform: scale(1.2);
            }

            .st-button {
                background-color: var(--brand-green);
                color: #fff!important;

                svg {
                    color: var(--brand-yellow);
                    fill: var(--brand-yellow); 
                }
            }
        }
    }

}

/* CAROUSEL */


.embla__wrapper {
    /* max-width: 48rem; */

    .carousel-heading * {
        line-height: .8;
        text-transform: uppercase;

    }
}
.embla {
  max-width: 100%;
  margin: auto;
  --slide-height: 22rem;
  --slide-spacing: 1rem;
  --slide-size: 25%;
  

  @media (max-width: 1399px) {
    --slide-height: 24rem;
    --slide-size: 40%;
  }

  @media(max-width: 768px) {
    --slide-size: 60%;
    --slide-height: 18rem;
  }

  @media(max-width: 576px) {
    --slide-size: 90%;
  }
}
.embla__viewport {
  overflow: hidden;
  padding-bottom: 17px;
}
.embla__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--slide-spacing) * -1);
}
.embla__slide {
  transform: translate3d(0, 0, 0);
  flex: 0 0 var(--slide-size);
  min-width: 0;
  padding-left: var(--slide-spacing);
  position: relative;
  cursor: pointer;

  .slide__caption {
    max-width: fit-content;
    position: absolute;
    bottom: -11px;
    left: 28px;
    background-color: var(--brand-yellow);
    padding: 5px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    transform: rotate(-2deg);

    span {
        max-width: 225px;
        transform: rotate(2deg);
    }

    .arrow__wrap {
        position: relative;
        color: #000;
        border: solid #000 1px;
        border-radius: 100%;
        height: 27px;
        width: 27px;
        min-width: 27px;
        transition: var(--transition);
        transform: rotate(2deg);
        

        svg {
            position: absolute;
            top: 6px;
            left: -4px;
        }
    }

  }

  img {
    transition: var(--transition-long);
    min-height: 100%;
  }

  &:hover {
    .arrow__wrap {
        color: var(--brand-yellow);
        background-color: var(--brand-green);
        border-color: var(--brand-green);
    }

        img {
            transform: scale(1.2);
        }
  }

}
.embla__slide__inner {
  border-radius: 1.8rem 0 1.8rem;
  font-size: 4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--slide-height);
  user-select: none;
  overflow: clip;

  img {
    border-radius: 2rem 0 2rem;
  }
}
.embla__controls {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1.8rem;

  @media (min-width: 1400px) {
    visibility: hidden;
  }
}
.embla__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  align-items: center;
}


/* HERO */
.st-hero {
    min-height: 56.25vw; /* 100 * 9 / 16 */
    display: flex;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0;
    position: relative;
    z-index: 0;

    &.with-video {
        max-height: fit-content;
    }

    --video-shift-left: 0;
    --h1-size: 128px;
    --h2-size: 48px;
    --translate-header-amount: -90px;

    @media (max-width: 1400px) {
        --video-shift-left: -5%;
    }

    @media (max-width: 1200px) {
        --video-shift-left: -10%;
    }

    @media (max-width: 991px) {
        --video-shift-left: -20%;
        --h1-size: 100px;
    }

    @media (max-width: 767px) {
        --video-shift-left: -25%;
    }

    @media (max-width: 576px) {
        --video-shift-left: -30%;
        --h1-size: 68px;
        --h2-size: 35px;
        --translate-header-amount: -66px;

        min-height: calc(100vh - 114px);
        background-position-x: 75%;
    }

    .st-hero-video-wrap {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: var(--brand-green);
        overflow: hidden;
        padding: 0;

        video {
            width: 100%;
            height: 100%;
            object-fit: cover; /* fills the container, crops overflow — works for any aspect ratio */
        }
    }

    .st-hero-heading {
        text-transform: uppercase;
        /* text-shadow: 2px 2px 3px rgba(255, 255, 255, .5); */
        transform: translateY(-10px);
        opacity: 0;
        transition: var(--transition-xlong);

        h1 {
            font-size: var(--h1-size);
            line-height: .9;
        }

        h2 {
            font-size: var(--h2-size);
            padding-left: 5px;
        }
    }

    &.light-text {
        .st-hero-heading {
            /* text-shadow: 2px 2px 3px rgba(0, 0, 0, .5); */
    
            h1, h2 {
                color: #fff;
            }
        }
    }

    &.in-view {
        .st-hero-heading {
            transform: translateY(var(--translate-header-amount));
            opacity: 1;
        }
    }

}
.hero-child-wrap {
    --h2-size: 2.5rem;
    --h4-size: 2rem;
    --translate-distance: -192px;
    

    @media (max-width: 991px) {
        --h2-size: 2rem;
        --h4-size: 1.6rem;
    }

    @media (max-width: 576px) {
        --translate-distance: -190px;
    }

    transform: translateY(var(--translate-distance));

    &.with-video {
        transform: translateY(-200px);
    }

    &.light-text {
        h1, h2, h4 {
            color: #fff;
        }

        /* h2 {
            font-size: var(--h2-size);
        } */
        h4 {
            font-size: var(--h4-size);
        }
    }

    margin-bottom: calc(var(--translate-distance) + 50px);
}

/* INNER HERO */
.st-inner-hero {
    --st-inner-hero-padding: 50px;
    --st-inner-hero-heading-size: 72px;
    --st-inner-hero-height: 400px;

    @media (max-width: 1400px) {
        --st-inner-hero-padding: 48px;
        --st-inner-hero-heading-size: 64px;
    }

    @media (max-width: 1200px) {
        --st-inner-hero-padding: 32px;
        --st-inner-hero-heading-size: 56px;
    }

    @media (max-width: 1124px) {
        &.with-video {
            --st-inner-hero-height: 56.25vw;

            .st-inner-hero-gradient-box {
                transform: translateY(-5%);
            }
        }
    }

    @media (max-width: 575px) {
        --st-inner-hero-padding: 20px;
        --st-inner-hero-heading-size: 42px;
    }


    height: var(--st-inner-hero-height);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    position: relative;
    padding: var(--st-inner-hero-padding);

    .st-inner-hero-gradient-box {
        position: absolute;
        top: 0;
        left: 0;
        height: var(--st-inner-hero-height);
        width: 70vw;
    }
    
    &.with-video {
        .st-inner-hero-gradient-box {
            z-index: -1;
        }
    }

    h2 {
        max-width: 30%;
        font-size: var(--st-inner-hero-heading-size);
        transform: translateY(40px);
        opacity: 0;
        transition: var(--transition-long);
    }

    &.in-view {
        h2 {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    &.light-text {
        .st-inner-hero-gradient-box {
            background-image: linear-gradient(to right, #000, transparent);
        }

        h2 {
            color: #fff;
        }
    }

    &.dark-text {
        .st-inner-hero-gradient-box {
            background-image: linear-gradient(to right, #fff, transparent);
        }

        h2 {
            color: #000;
        }
    }

    .st-inner-hero-video-wrap {
        position: absolute;
        top: 0;
        left: 0;
        height: 400px;
        width: 100%;
        overflow: hidden;
        padding: 0;
        
        video {
            position: relative;
            height: 100%;
            width: 100%; 
            object-fit: cover;
            z-index: -2;
        }
    }
}

/* CALLOUT */
.st-callout {
    --st-callout-img-scale: 1.4;
    --st-callout-img-offset: -60px, 74px;
    --st-callout-img-width: 540px;
    --st-callout-img-shadow: -22px -64px var(--brand-yellow);
    --st-callout-graphic-offset: -40px;
    --st-callout-min-height: 600px;
    --st-callout-img-box-width: 55%;
    --st-callout-text-width: 43%;
    --st-callout-text-height: 80%;

    @media (max-width: 1400px) {
        --st-callout-img-scale: 1.2;
        --st-callout-img-width: 500px;
        --st-callout-img-offset: -7px, 0;
        --st-callout-img-shadow: -22px -40px var(--brand-yellow);
        --st-callout-min-height: offset;
    }

    @media (max-width: 1200px) {
        --st-callout-graphic-offset: -10px;
        --st-callout-img-width: 590px;
        --st-callout-img-scale: 1.3;
        --st-callout-img-offset: 215px, 38px;
        --st-callout-text-width: 90%;
        --st-callout-text-height: 515px;
        --st-callout-img-box-width: 100%;
        --st-callout-inner-width: 100%;
        --st-callout-min-height: 1200px;

        .st-callout-image-box,
        .st-callout-text-box {
            max-width: 100%;
        }

        /* .st-callout-text-box {
            min-height: 515px;
            margin-top: 50px;
        } */
    }

    @media (max-width: 991px) {
        --st-callout-img-width: 500px;
        --st-callout-img-scale: 1.2;
        --st-callout-img-offset: 120px, 6px;
        --st-callout-text-width: 70%;
        --st-callout-text-height: 450px;
        --st-callout-min-height: 1060px;
    }

    @media (max-width: 767px) {
        --st-callout-img-scale: 1.12;
        --st-callout-img-offset: 72px, -3px; 
        --st-callout-text-width: 100%;
    }

    @media (max-width: 575px) {
        --st-callout-img-scale: 1.1;
        --st-callout-img-offset: 66px, -8px;
        --st-callout-inner-width: 90%;
    }

    background-color: var(--brand-green);
    position: relative;
    overflow: hidden;
    min-height: var(--st-callout-min-height);

    .st-callout-inner {
        min-height: var(--st-callout-min-height);
        width: var(--st-callout-inner-width);
    }

    .st-callout-text-box {
        min-height: var(--st-callout-text-height);
        margin-top: 50px;
    }

    &:before {
        content: '';
        background-color: var(--brand-green-dk);
        background-image: url('/static/images/tourism_site/st-hero-bg.png');
        background-size: cover;
        background-repeat: no-repeat;
        transform: translateX(var(--st-callout-graphic-offset));
        position: absolute;
        height: 100%;
        width: 100%;
        z-index: 0;
    }
    overflow: hidden;

    .st-callout-text-box {
        max-width: var(--st-callout-text-width);
        z-index: 1;
    }

    .st-callout-image-box {
        max-width: var(--st-callout-img-box-width);
    }

    h1 {
        /* text-transform: uppercase;
        font-size: 3rem; */
    }

    h2, p {
        color: #fff;
    }

    p {
        font-size: 22px;
    }

    .st-button {
        background: transparent;
        border-color: #fff;
        color: #fff!important;

        .divider {
            border-color: #fff;
        }

        svg {
            color: var(--brand-yellow)!important;
        }

        &:hover {
            color: var(--brand-yellow)!important;
        }
    }

    .st-callout-image-wrapper {
        transform: rotate(7deg) translate(var(--st-callout-img-offset)) scale(var(--st-callout-img-scale));
        transition: var(--transition-long);
        overflow: hidden;
    }

    .st-callout-image {
        transform: rotate(-7deg) scale(var(--st-callout-img-scale));
        width: var(--st-callout-img-width);
    }

}

.st-callout-outer {
    &.in-view {
        .st-callout-image-wrapper {
            box-shadow: var(--st-callout-img-shadow);
        }
    }
}

/* JUMPBOXES */
/* CATEGORY JUMPBOXES */
.st-cat-jumpboxes {
    --st-cat-jumpbox-width: 31%;
    --st-cat-jumpbox-blurb-width: 30%;
    --st-cat-jumpbox-img-width: 400px;

    @media (max-width: 1200px) {
        --st-cat-jumpbox-width: 48%;
        --st-cat-jumpbox-blurb-width: 60%
    }

    @media (max-width: 767px) {
        --st-cat-jumpbox-width: 46%;
    }

    @media (max-width: 575px) {
        --st-cat-jumpbox-width: 100%;
        --st-cat-jumpbox-blurb-width: 70%;
        --st-cat-jumpbox-img-width: 300px;
    }

    .st-jumpboxes-inner {
        width: 100%;
    }

    .st-cat-jumpbox-blurb {
        width: var(--st-cat-jumpbox-blurb-width);
    }

    .st-jumpboxes-heading {
        * {
            line-height: 1;
            margin-bottom: 0;
        }
    }

    a.st-cat-jumpbox {
        width: var(--st-cat-jumpbox-width);
        border-radius: 20px 0px 20px 0px;
        overflow: hidden;
        max-height: fit-content; 
        opacity: 0;
        text-decoration: none;

        .st-cat-jumpbox-img-wrap {
            overflow: hidden;
            border-radius: 20px 0px 20px 0px;
            width: 100%;
            height: 75%;
            /* aspect-ratio: 1 / 1; */

            img {
                transform: translateY(-20px);
                transition: var(--transition-long);
                border-radius: 20px 0px 20px 0px;
                min-width: 100%;
                width: var(--st-cat-jumpbox-img-width);
                position: relative;
                z-index: 1;
            }
        }

        .st-cat-jumpbox-title {
            border-radius: 0 0 20px 0;
            padding-top: 34px!important;
            padding-bottom: 16px!important;
            transform: translateY(-20px);
            position: relative;
            z-index: 0;
            transition: var(--transition);
            
            * {
                text-transform: uppercase;
                margin-bottom: 0;
            }

            .divider {
                padding: 0!important;
                margin: 0!important;
                width: 0!important;
                height: 18px;
                border: solid var(--brand-green-lt) .5px;
                transform: skew(-22deg) translateX(7px);
                transition: var(--transition);
            }

            .st-cat-jumpbox-arrow-wrap {
                position: relative;
                transform: translate(0, -10px);
                transition: var(--transition-long);
                
                svg {
                    transition: var(--transition);
                    position: absolute;
                    top: 13px;
                    left: 0;
                }
            }

        }

        &.position-1,
        &.position-4 {
            transform: translateY(50px);
            transition: var(--transition-xlong);
        }

        &.position-2,
        &.position-5 {
            transform: translateY(25px);
            transition: var(--transition-long);
        }

        &.position-3,
        &.position-6 {
            transition: var(--transition);
        }

        &.in-view {
            opacity: 1;

        }

        &:hover {
            .st-cat-jumpbox-img-wrap {
            
                img {
                    transform: scale(1.2);
                }
            }

            .st-cat-jumpbox-title {
                background-color: var(--brand-yellow);
            }

            .divider {
                border-color: #000;
            }

            .st-cat-jumpbox-arrow-wrap {
                transform: translate(6px, -10px);

                svg {
                    fill: #000;
                }
            }
        }

        @media (max-width: 1200px) {
            &.position-1,
            &.position-3,
            &.position-5 {
                transform: translateY(25px);
                transition: var(--transition-long);
            }

            &.position-2,
            &.position-4,
            &.position-6 {
                transform: translateY(0);
                transition: var(--transition);
            }
        }

        @media (max-width: 575px) {
            &.position-1,
            &.position-3,
            &.position-5,
            &.position-2,
            &.position-4,
            &.position-6 {
                transform: translateY(0);
                transition: var(--transition);
            }
        }


        
    }

    /* SEASON JUMPBOXES */
    .st-season-jumpboxes-inner {
        --st-season-jumpboxes-width: 100%;
        --st-season-jumpbox-width: 23%;
        --st-season-jumpbox-img-width: 300px;

        @media (max-width: 992px) {
            --st-season-jumpbox-width: 49%;
            --st-season-jumpbox-img-width: 330px;
        }

        @media (max-width: 767px) {
            --st-season-jumpbox-img-width: 255px; 
        }

        @media (max-width: 575px) {
            --st-season-jumpbox-width: 100%;
            --st-season-jumpbox-img-width: 370px;
            --st-season-jumpboxes-width: 100%;
        }

        width: var(--st-season-jumpboxes-width);

        .st-season-jumpbox {
            
            opacity: 0;
            max-width: var(--st-season-jumpbox-width);
    
            &.position-1 {
                transition: var(--transition);
            }
            &.position-2 {
                transition: var(--transition-long);
            }
            &.position-3 {
                transition: var(--transition-xlong);
            }
            &.position-4 {
                transition: var(--transition-xxlong);
            }
            
            .st-season-jumpbox-inner {
                position: relative;
                overflow: hidden;
                border-radius: 20px 0 20px 0;
                transition: var(--transition-long);
    
                .st-season-jumpbox-img-wrap {
                    img {
                        width: var(--st-season-jumpbox-img-width);
                    }
                }
    
                .st-season-jumpbox-text {
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    transition: var(--transition-long);
                    width: 75%;
    
                    h4 {
                        text-align: center;
                        color: #fff;
                        text-transform: uppercase;
                    }
    
                    svg {
                        height: 26px;
                    }
    
                    .st-season-jumpbox-info {
                        transition: var(--transition-long);
                        transform: scaleY(0);
                        height: 0;
                        color: #fff;
                        text-align: center;
                        font-size: .8rem;
    
                        .st-button {
                            background-color: var(--brand-yellow);
                            border-color: #000;
    
                            * {
                                color: #000;
                                border-color: #000;
                            }
                        }
                    }
                }
            }
    
            &.in-view {
                opacity: 1;
            }
    
            &:hover {
                .st-season-jumpbox-inner {
                    transform: scale(1.1);
                }
                
                .st-season-jumpbox-text {
    
                    .st-season-jumpbox-info {
                        height: fit-content;
                        transform: scaleY(1);
                    }
    
                    .st-button {
                            * {
                                fill: #000;
                            }
                    }
                }
            }
        }
    }

}

/* LAYERED JUMPBOXES */
.st-layered-jumpboxes {
    --st-layered-jumpboxes-inner-width: 100%;
    --st-layered-jumpbox-width: 31%;
    --st-layered-jumpbox-padding: 8% 3%;

    @media (max-width: 767px) {
        --st-layered-jumpbox-width: 85%;
        --st-layered-jumpbox-padding: 5% 3%;
    }

    @media (max-width: 575px) {
        --st-layered-jumpboxes-inner-width: 100%;
        --st-layered-jumpbox-width: 90%;
    }

    .st-layered-jumpboxes-heading {
        text-transform: uppercase;
        color: #000;
        width: var(--st-layered-jumpboxes-inner-width);

        &.light-text {
            color: #fff;
        }
    }

    .st-layered-jumpboxes-inner {
        width: var(--st-layered-jumpboxes-inner-width);
    }

    .child-wrap {
        color: #000;

        &.light-text {
            color: #fff;
        }
    }

    .st-layered-jumpbox-link {
        text-decoration: none;
    }

    .st-layered-jumpbox-card {
        width: var(--st-layered-jumpbox-width);
        aspect-ratio: 1/1;
        background-color: #fff;
        border-radius: 20px 0 20px 0;
        transition: var(--transition);

        p {
            color: #000;
        }

        h4 {
            text-transform: unset;
            font-size: 26px;
        }

        &:hover {
            transform: scale(1.1);

            a.st-button {
                background-color: var(--brand-green);

                * {
                    color: #fff!important;
                    fill: var(--brand-yellow)!important;
                }
            }
        }
    }

    padding: var(--st-layered-jumpbox-padding);
    background-size: cover;
}

.st-headline.st-headline--full {
    width: 100%;
    max-width: 1320px;

    @media (max-width: 1400px) {
	max-width: 1140px !important;
    }
    @media (max-width: 1200px) {
	max-width: 990px !important;
    }
    @media (max-width: 992px) {
	max-width: 720px !important;
    }
    @media (max-width: 768px) {
	max-width: 540px !important;
    }
}

/* HEADLINE */
.st-headline {
    max-width: 800px;
    width: 50%;
    padding-bottom: 20px !important;

    h1, h2, h3, h4, h5, h6 {
        font-weight: 700;
        line-height: 1.2;
        font-size: clamp(3rem, 5vw, 4rem);
        margin-bottom: 0;
    }

    h3, h4, h5, h6 {
        font-size: clamp(2rem, 3vw, 2.5rem);
    }

    .st-headline-blurb {
        max-width: 100%;
    }

    @media (max-width: 520px) {
        width: 66%;
    }
}

/* RESOURCE LINK */
.st-resource-link {
   border-radius: 60px;
   border: solid var(--brand-green) 1px;
   padding: 5px 19px 0 19px;
   text-decoration: none;
   transition: var(--transition);
   min-width: 32%;

   .st-resource-link-inner {
        padding: 20px 0 20px 10px;

       .st-resource-link-text-box {
            h5 {
                font-size: 24px;
            }

            p {
                margin-bottom: 0;
                color: #000;
            }
       }

       .st-resource-link-icon-box {
            background-color: var(--brand-green);
            border-radius: 100%;
            padding: 5px;
            min-width: 34px;
            min-height: 34px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            transition: var(--transition);

            svg {
                color: #fff;
                transform: rotate(-42deg);
            }
       }
   }

   &:hover {
        transform: translate(-4px, -4px);
        border-color: #000;
        box-shadow: 0px 3px 0px 0px #000;

        .st-resource-link-icon-box {
            background-color: var(--brand-yellow);

            svg {
                color: #000;
            }
        }
   }
}

/* RELATED PAGES IN THE STYLE OF CARDS */
.st-related-pages-cards {
    width: 100%;

    .st-related-pages-cards-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        width: 100%;

        a.st-related-pages-card-link {
            width: var(--st-related-pages-card-width);
            text-decoration: none;
        }

        @media (max-width: 768px) {
            grid-template-columns: 1fr;
        }
    }

    .st-related-pages-card-no-filter {
        width: 100%;
        
        .st-related-pages-card-image-box {
            position: relative;
            width: 100%;
            min-height: fit-content;
            /* border-radius: 20px 0 20px 0 !important; */

            .st-related-pages-card-image {
                border-radius: 20px 0 20px 0 !important;
                height: 100%;
                overflow: hidden !important;
            }

            img {
                /* border-radius: 20px 0 20px 0 !important; */
                transition: var(--transition-long);
                width: 100%;
                object-fit: cover;
            }

            .st-related-pages-card-date {
                position: absolute;
                top: 10px;
                right: 0;
                background: var(--brand-green);
                color: #fff;
                border-radius: 10px 0 0 10px;
                padding: 10px;

                p {
                    margin-bottom: 0;
                    text-align: center;
                    line-height: 100%;
                }

                .st-related-pages-card-day {
                    font-size: 32px;
                    font-weight: 700;
                    margin-bottom: 2px;
                }
            }
        }


        .st-related-pages-card-title {
            text-transform: none;
        }
        
        .st-related-pages-card-description {
            color: #000;
        }

        &:hover {
            cursor: pointer;

            img {
                transform: scale(1.2);
            }

            .st-button {
                background-color: var(--brand-green);
                color: #fff!important;

                svg {
                    color: var(--brand-yellow);
                    fill: var(--brand-yellow); 
                }
            }
        }
    }

}

.lf-text-with-image-alert {
  max-width: 1200px;
  margin: 2rem auto;
}
.lf-text-with-image-alert .header {
  background: #74915a;
  color: #fff;
  padding: .5rem;
}
.tourism-title {
    font-size: 35px !important;
    font-weight: bold !important;
    font-family: 'Poppins-regular' !important;
    text-transform: none !important;
}
.lf-text-with-image-alert .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.lf-text-with-image-alert .grid > .image {
  flex: 0 0 40%; 
  position: relative;
}
.lf-text-with-image-alert .grid > .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lf-text-with-image-alert .grid > .content {
  flex: 1 1 60%;
  background: #fff;
  padding: 1rem;
}
@media (max-width: 640px) {
  .lf-text-with-image-alert .grid {
    flex-direction: column;
  }
  .lf-text-with-image-alert .grid > .image,
  .lf-text-with-image-alert .grid > .content {
    flex-basis: 100%;
  }
}
