.hero {
    position: relative;
    margin-bottom: 40px;
    max-width: 1360px;
    padding-right: 0;
    padding-left: 0;
}
.hero .hero-breadcrumb {
    display: none;
    padding: 20px 0px 30px 20px;
    left: 0px;
    right: 0px;
}
.hero div.wrapper {
    display: none;
    position: relative;
    border-radius: 0 0 15px 15px;
    padding-top: 20px;
    z-index: -80;
    background-color: var(--header_background);
}
.hero .img-wrap {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(#0000 0, #000 50px);
}
.hero .img-wrap img {
    object-fit: cover;
    object-position: right center;
    width: 100%;
    transition: transform .5s;
}
@media (min-width: 768px) {
    .hero .hero-breadcrumb {
        display: block;
        position: absolute;
        padding: 20px 0px 30px 20px;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
        color: #494949;
        font-size: clamp(0.8rem, 1.5vw, 1.2rem);
        background: linear-gradient(to bottom, #f8f9f2ed 20%, #f8f9f2aa 50%, #f8f9f24a 75%, #f8f9f200 100%);
    }
    .hero div.wrapper {
        display: block;
        height: 250px;
        grid-template-columns: 1fr;
    }
    .hero .img-wrap {
        display: block;
        top: 0;
        height: 100%;
    }
}
@media (min-width: 992px) {
    .hero div.wrapper {
        height: 300px;
    }
}
@media (min-width: 1400px) {
    .hero {
        max-width: 1360px;
        margin-right: auto;
        margin-left: auto;
    }
    .hero .hero-breadcrumb {
        position: absolute;
        padding: 20px 0px 30px 0px;
        top: 0px;
        left: 20px;
        right: 0px;
        z-index: 10;
        color: #494949;
        font-size: clamp(0.8rem, 1.5vw, 1.2rem);
    }
}
.activity-hero {
    --hero-bg: #f8f9f2;
    --hero-green: #789a4d;
    --hero-dark: #273b20;
    position: relative;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
    background: var(--hero-bg);
    isolation: isolate;

    height: auto;
    min-height: 500px;
}
.activity-hero__photo {
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 300px;
    -webkit-mask-image:
        linear-gradient(
            to bottom,
            #000 0%,
            rgba(0,0,0,.95) 50%,
            transparent 100%
        );
    mask-image:
        linear-gradient(
            to bottom,
            #000 0%,
            rgba(0,0,0,.95) 50%,
            transparent 100%
        );
}
.activity-hero__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.activity-hero__content {
    z-index: 4;
    width: 100%;
    height: auto;
    padding: 0 8px 10px 8px;
    box-sizing: border-box;
}
.activity-hero__category {
    display: inline-flex;
    align-items: center;
    padding: 8px 17px;
    margin: 20px 0;
    border-radius: 999px;
    background: #e7edd9;
    color: #50643d;
    font-size: 14px;
}
.activity-hero h1 {
    margin: 0;
    color: var(--hero-dark);
    line-height: .98;
    letter-spacing: -1.5px;
    font-size: 40px;
}
.activity-hero__subtitle {
    font-family: var(--font-heading);
    font-weight: 300;
    margin: 12px 0 26px;
    color: var(--hero-green);
    line-height: 1.15;
    font-size: 23px;
}
.activity-hero__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 16px;
}
.activity-hero__rating .stars {
    color: #e8ae18;
    font-size: 27px;
    letter-spacing: 2px;
}
.activity-hero__rating .star-half {
    color: transparent;
    background:
        linear-gradient(
            90deg,
            #e8ae18 50%,
            #d9ddce 50%
        );
    background-clip: text;
    -webkit-background-clip: text;
}
.activity-hero__rating a {
    color: var(--hero-green);
    text-decoration: none;
}
.activity-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 26px;
}
.activity-hero__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 5px 14px;
    border: 1px solid #c8d3b8;
    border-radius: 999px;
    background: rgba(255, 255, 255, .45);
    color: #5b674f;
    font-size: 13px;
}
.activity-hero__location {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin: 0;
    color: #60645b;
    font-size: 15px;
    font-style: normal;
    line-height: 1.45;
}
.activity-hero__location div { z-index: 7; }
.activity-hero__location strong {
    color: #41473b;
}
.fa-location-dot {
    color: #7ca04d;
    font-size: 23px;
    line-height: 1;
    margin-top: 0.5rem;
}
.activity-hero__infos {
    position: absolute;
    z-index: 6;
    left: 0;
    right: 0;
    bottom: 0;
    box-sizing: border-box;
    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            #000 27%,
            #000 100%
        );
    mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            #000 27%,
            #000 100%
        );
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 25px;
}
.activity-hero__info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.activity-hero__info .info-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    height: 38px;
    color: #6f9445;
    font-size: 31px;
    width: 30px;
}
.activity-hero__info div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.activity-hero__info small {
    color: #64695e;
    font-size: 13px;
}
.activity-hero__info strong {
    color: #3d4635;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}
.activity-hero__info em {
    color: #74786e;
    font-size: 12px;
    font-style: normal;
    white-space: nowrap;
}
.stars {
    letter-spacing: 2px;
    font-size: 8px;
    line-height: 1;
    display: inline-block;
    position: relative;
}
.stars-fill {
    white-space: nowrap;
    color: #ffb400;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}
.stars-base {
    color: #d5d5d5;
}

@media (min-width: 481px) {
    .activity-hero__content {
        padding-left: 10px;
    }
    .activity-hero__tags span {
        font-size: 14px;
    }
    .activity-hero__infos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 761px) {
    .activity-hero {
        height: 390px;
        min-height: auto; 
    }
    .activity-hero__photo {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        left: auto;
        bottom: 0;
        width: 62%;
        height: auto;
        -webkit-mask-image:
            radial-gradient(
                ellipse 105% 105% at 100% 50%,
                #000 0%,
                #000 48%,
                rgba(0, 0, 0, .95) 58%,
                rgba(0, 0, 0, .65) 68%,
                rgba(0, 0, 0, .20) 80%,
                transparent 92%);
        mask-image:
            radial-gradient(
                ellipse 105% 105% at 100% 50%,
                #000 0%,
                #000 48%,
                rgba(0, 0, 0, .95) 58%,
                rgba(0, 0, 0, .65) 68%,
                rgba(0, 0, 0, .20) 80%,
                transparent 92%);
        mask-composite: intersect;
    }
    .activity-hero__content {
        width: 60%;
        height: 100%;
        padding: 52px 0 16px 35px;
    }
    .activity-hero h1 {
        font-size: clamp(28px, 4vw, 48px);
    }
    .activity-hero__subtitle {
        font-size: 27px;
    }
    .activity-hero__infos {
        height: 105px;
        grid-template-columns: repeat(4, 1fr);
        gap: normal;
        padding: 18px 30px 12px;
    }
    .activity-hero__info .info-icon {
        width: 30px;
    }
}

@media (min-width: 1001px) {
    .activity-hero {
        height: 450px;
    }
    .activity-hero__photo {
        width: min(66%, 760px);
    }
    .activity-hero__content {
        width: 52%;
        padding-left: 28px;
    }
    .activity-hero__infos {
        padding: 18px 45px 12px;
    }
    .activity-hero__info .info-icon {
        width: 38px;
    }
}