/* Common */
.hero {
    --p-hero-background-color: var(--p-sys-color-surface-dim);

    position: relative;
    container: hero / inline-size;
    background: var(--p-hero-background-color);
}
.hero .hero__background {
        position: absolute;
        inset: 0;
        z-index: var(--p-sys-elevation-level0);
    }
.hero .hero__wrapper {
        z-index: var(--p-sys-elevation-level1);
        display: flex;
        flex-direction: column;
        gap: var(--p-space-500);
        align-items: center;
        justify-content: center;
        min-block-size: 50vh;
        padding-block: var(--p-space-800);
        text-align: center;
        isolation: isolate;
    }
@media (width >= 48rem) {
.hero .hero__wrapper {
            padding-block: var(--p-space-1000);
    }
        }
.hero h2 {
        font-size: var(--p-ref-typeface-size-500);
        font-weight: var(--p-ref-typeface-weight-bold);
        color: var(--p-sys-color-on-background);
    }
@container hero (width >= 40rem) {
.hero h2 {
            font-size: var(--p-ref-typeface-size-800);
    }
        }
.hero p {
        max-width: 80%;
        font-size: var(--p-ref-typeface-size-350);
        text-wrap: pretty;
    }
@container hero (width >= 40rem) {
.hero p {
            font-size: var(--p-ref-typeface-size-400);
    }
        }
.hero .hero__content {
        display: flex;
        flex-direction: column;
        gap: var(--p-space-400);
        padding: var(--p-space-400) var(--p-space-1000);
        border-radius: var(--p-sys-shape-corner-extra-large);
    }
.hero__content--bg:is(.hero .hero__content) {
            background: hsl(
                from var(--p-sys-color-inverse-primary) h s l / 0.85
            );
        }
.hero__content--center:is(.hero .hero__content) {
            justify-content: center;
        }
.hero .hero__expandable-content {
        display: flex;
        flex-direction: column;
        gap: var(--p-space-400);
        align-items: center;
        overflow: hidden;
        text-overflow: ellipsis;
        will-change: contents;
    }
:is(.hero .hero__expandable-content):not(.hero__expandable-content--expanded) > *:not(:first-child) {
            display: none;
        }
.hero .hero__expandable-content-toggle {
        display: flex;
        place-content: center;
        cursor: pointer;
        transition: rotate var(--p-sys-motion-spatial-fast);
    }
.hero__expandable-content--expanded:is(.hero .hero__expandable-content-toggle) > svg {
            rotate: 90deg !important;
        }
.hero.hero--stack-button .hero__wrapper {
        justify-content: end;
    }
.hero.hero--spread .hero__wrapper {
        gap: var(--p-space-1600);
    }
.slider {
    --navigation-size: var(--p-space-1600);

    position: relative;
    container-type: inline-size;
}
.slider .slider__wrapper {
        display: flex;
        flex-direction: column;
        gap: var(--p-space-400);
    }
@container (width > 40rem) {
.slider .slider__wrapper {
            margin-inline: var(--p-space-1600);
    }
        }
.slider .swiper__wrapper {
        z-index: var(--p-sys-elevation-level1);
    }
.slider .slider__navigation {
        z-index: var(--p-sys-elevation-level0);
        display: flex;
        gap: var(--p-space-400);
        align-items: center;
        justify-content: center;
    }
@container (width > 40rem) {
.slider .slider__navigation {
            position: absolute;
            inset: 0;
            justify-content: space-between;
    }
        }
.slider .slider__nav {
        color: var(--p-sys-color-surface-dim);
        cursor: pointer;
        transition: opacity var(--p-sys-motion-effects);
    }
:is(.slider .slider__nav) svg {
            width: var(--navigation-size);
            height: var(--navigation-size);
        }
@container (width > 40rem) {
:is(.slider .slider__nav) svg {
                --navigation-size: var(--p-space-2000);
        }
            }
:is(.slider .slider__nav):disabled {
            opacity: 0.5;
        }
.slider .slider__pagination {
        display: flex;
        gap: var(--p-space-200);
        align-items: center;
        justify-content: center;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
:is(.slider .slider__pagination) .slider__pagination-bullet {
            display: inline-block;
            width: var(--p-space-700);
            height: var(--p-space-700);
            cursor: pointer;
            background: var(--p-sys-color-primary);
            border-radius: var(--p-sys-shape-corner-full);
        }
.slider__pagination-bullet--active:is(:is(.slider .slider__pagination) .slider__pagination-bullet) {
                background: var(--p-sys-color-emphasis);
            }
.endless-carousel {
    container-type: inline-size;
}
.endless-carousel .swiper-slide {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
.endless-carousel .endless-carousel__item {
        position: relative;
        height: 90px;
        aspect-ratio: 3/2;
    }
@container (width > 40rem) {
.endless-carousel .endless-carousel__item {
            height: 200px;
    }
        }
.endless-carousel .endless-carousel__image {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center;
    }
.endless-carousel .endless-carousel__caption {
        position: absolute;
        right: var(--p-space-400);
        bottom: var(--p-space-400);
        font-size: var(--p-ref-typeface-size-500);
        font-weight: var(--p-ref-typeface-weight-bold);
        color: var(--p-sys-color-on-inverse-surface);
        text-shadow: var(--p-sys-elevation-light-3);
    }
.endless-carousel-group {
    --gap: var(--p-space-100);

    display: flex;
    flex-direction: column;
    gap: var(--gap);
}
.squared-gallery .squared-gallery__list {
        display: grid;
        grid-auto-columns: 1fr;
        grid-auto-flow: column;
        gap: var(--p-space-400);
    }
@media (width >= 48rem) {
.squared-gallery .squared-gallery__list {
            gap: var(--p-space-400);
    }
        }
:is(.squared-gallery .squared-gallery__item) img {
            aspect-ratio: 1 / 1;
            -o-object-fit: cover;
               object-fit: cover;
            border-radius: var(--p-sys-shape-corner-large);
            transition: outline box-shadow var(--p-sys-motion-effects-slow);
        }
:is(:is(.squared-gallery .squared-gallery__item) img):hover {
                outline: 1px solid var(--p-sys-color-outline-variant);
                outline-offset: 2px;
                box-shadow: var(--p-sys-elevation-light-2);
            }
@media (width < 48rem) {
            :is(.squared-gallery .squared-gallery__item):nth-child(n + 5) {
                display: none;
            }
        }
@media (width < 48rem) {
            .squared-gallery.squared-gallery--grid-2\@mobile .squared-gallery__list {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-columns: unset;
                grid-auto-flow: unset;
            }
        }
/* Advertising */
.advertising-property-card {
    display: flex;
    place-content: center;
    container: advertising / inline-size;
}
.advertising-property-card .advertising-property-card__container {
        display: grid;
        grid-template: 1fr 1fr / 1fr;
        width: 23.75rem; /* 380px */
        overflow: clip;
        background-color: var(--p-sys-color-surface-bright);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        border-radius: var(--p-sys-shape-corner-large-increased);
    }
.advertising-property-card .advertising-property-card__picture {
        position: relative;
        min-height: 250px;
    }
.advertising-property-card .advertising-property-card__code {
        position: absolute;
        right: var(--p-sys-space-none);
        bottom: var(--p-space-2000);
        z-index: var(--p-sys-elevation-level1);
        padding: var(--p-space-150) var(--p-space-500);
        font-size: var(--p-ref-typeface-size-400);
        font-weight: var(--p-ref-typeface-weight-bold);
        text-transform: uppercase;
        background: hsl(from var(--p-sys-color-surface-bright) h s l / 0.85);
        border-top-left-radius: var(--p-sys-shape-corner-small);
        border-bottom-left-radius: var(--p-sys-shape-corner-small);
        -webkit-backdrop-filter: opacity(0.45);
                backdrop-filter: opacity(0.45);
    }
.advertising-property-card .advertising-property-card__content {
        display: flex;
        flex-direction: column;
        gap: var(--p-space-500);
        align-items: center;
        justify-content: center;
        padding: var(--p-space-600) var(--p-space-1000);
        text-align: center;
    }
:is(.advertising-property-card .advertising-property-card__content) h3 {
            font-size: var(--p-ref-typeface-size-500);
            font-weight: var(--p-ref-typeface-weight-bold);
        }
:is(.advertising-property-card .advertising-property-card__content) p {
            font-size: var(--p-ref-typeface-size-275);
        }
.teaser:is(:is(.advertising-property-card .advertising-property-card__content) p) {
                font-size: var(--p-ref-typeface-size-400);
                font-style: italic;
                font-weight: var(--p-ref-typeface-weight-semibold);
            }
.advertising-property-card .advertising-property-card__footer {
        display: flex;
        flex-direction: column;
        gap: var(--p-space-300);
        inline-size: 100%;
    }
/* Properties */
.property-card {
    display: flex;
    place-content: center;
    container: property-card / inline-size;
}
.property-card .property-card__container {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: var(--p-space-400);
        width: 23.75rem; /* 380px */
        padding: var(--p-space-400);
        border: 1px solid var(--p-sys-color-outline);
        border-radius: var(--p-sys-shape-corner-large-increased);
    }
.property-card .property-card__header {
        place-content: center;
        place-items: center;
    }
:is(.property-card .property-card__header) .property-card__favorite {
            float: right;
        }
:is(.property-card .property-card__header) .property-card__title {
            font-size: var(--p-ref-typeface-size-500);
            font-weight: var(--p-ref-typeface-weight-bold);
            line-height: 1.5;
        }
:is(.property-card .property-card__header) .property-card__code {
            font-style: italic;
            font-weight: var(--p-ref-typeface-weight-semibold);
            text-transform: uppercase;
        }
.property-card .property-card__pictures {
        position: relative;
        display: grid;
        grid-template: 1fr auto / 1fr 1fr 1fr;
        gap: var(--p-space-200);
        max-width: 23.75rem;
    }
:is(.property-card .property-card__pictures) li {
            position: relative;
            overflow: clip;
            border-radius: var(--p-sys-shape-corner);
        }
:is(:is(.property-card .property-card__pictures) li) img {
                height: 90px;
            }
:is(:is(.property-card .property-card__pictures) li):first-child {
                grid-row: 1;
                grid-column: 1 / 4;
            }
:is(:is(.property-card .property-card__pictures) li):first-child img {
                    height: 180px;
                }
:is(.property-card .property-card__pictures) .property-card__rating {
            position: absolute;
            top: var(--p-space-200);
            right: var(--p-space-200);
            z-index: var(--p-sys-elevation-level1);
            padding: var(--p-space-050) var(--p-space-200);
            font-size: var(--p-ref-typeface-size-300);
            text-transform: uppercase;
            background: hsl(from var(--p-ref-palette-black) h s l / 0.35);
            border-radius: var(--p-sys-shape-corner-large-increased);
            box-shadow: var(--p-sys-elevation-light-3);
            -webkit-backdrop-filter: blur(2px) opacity(0.75);
                    backdrop-filter: blur(2px) opacity(0.75);
        }
:is(.property-card .property-card__pictures) .property-card__tag {
            position: absolute;
            top: var(--p-space-200);
            left: var(--p-space-200);
            z-index: var(--p-sys-elevation-level1);
            padding: var(--p-space-150) var(--p-space-200);
            font-size: var(--p-ref-typeface-size-400);
            font-style: italic;
            font-weight: var(--p-ref-typeface-weight-semibold);
            text-transform: uppercase;
            background: var(--p-sys-color-emphasis-container);
            border-radius: var(--p-sys-shape-corner-small);
            box-shadow: var(--p-sys-elevation-light-2);
        }
.property-card .property-card__amenities {
        display: flex;
        justify-content: space-between;
        padding-inline: var(--p-space-600);
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
    }
:is(.property-card .property-card__amenities) .property-card__amenity {
            display: flex;
            gap: var(--p-space-200);
            align-items: center;
            font-weight: var(--p-ref-typeface-weight-semibold);
        }
:is(:is(.property-card .property-card__amenities) .property-card__amenity) img {
                width: 25px;
                height: 25px;
            }
.property-card .property-card__content {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: var(--p-space-400);
        text-align: center;
    }
.property-card .property-card__marks {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--p-space-500);
        justify-content: space-between;
        font-size: var(--p-ref-typeface-size-300);
        font-weight: var(--p-ref-typeface-weight-semibold);
    }
:is(.property-card .property-card__marks) .property-card__mark {
            padding: var(--p-space-200);
        }
:is(.property-card .property-card__marks) .property-card__resort {
            margin-left: calc(var(--p-space-400) * -1);
            background: var(--p-sys-color-surface-dim);
            border-top-right-radius: var(--p-sys-shape-corner-small);
            border-bottom-right-radius: var(--p-sys-shape-corner-small);
        }
:is(.property-card .property-card__marks) .property-card__type {
            margin-right: calc(var(--p-space-400) * -1);
            background: var(--p-sys-color-emphasis-container-variant);
            border-top-left-radius: var(--p-sys-shape-corner-small);
            border-bottom-left-radius: var(--p-sys-shape-corner-small);
        }
.property-card .property-card__price {
        font-size: var(--p-ref-typeface-size-500);
        font-weight: var(--p-ref-typeface-weight-regular);
    }
.property-card .property-card__button {
        margin-inline: var(--p-space-500);
    }
.property-info-card {
    --p-property-info-card-background-color: var(--p-sys-color-background);
    --p-property-info-card-corner-shape: var(--p-sys-shape-corner-extra-large);
    --p-property-info-card-shadow: var(--p-sys-elevation-light-2);
    --p-property-info-card-padding: var(--p-space-600);

    padding: var(--p-property-info-card-padding);
    container-type: inline-size;
    background: var(--p-property-info-card-background-color);
    border-radius: var(--p-property-info-card-corner-shape);
    box-shadow: var(--p-property-info-card-shadow);
}
.property-info-card .property-info-card__wrapper {
        display: grid;
        grid-template: auto 1fr auto / 1fr;
        gap: var(--p-space-500);
    }
@container (width >= 40rem) {
.property-info-card .property-info-card__wrapper {
            grid-template: auto auto / 40% 1fr;
    }
        }
.property-info-card .property-info-card__image {
        position: relative;
        width: 100%;
        height: 100%;
        aspect-ratio: 3/2;
        overflow: clip;
        border-radius: var(--p-property-info-card-corner-shape);
    }
@media (width < 40rem) {
.property-info-card .property-info-card__image {
            height: 130px;
    }
        }
@container (width >= 40rem) {
.property-info-card .property-info-card__image {
            grid-row: 1 / 3;
            grid-column: 1;
    }
        }
:is(.property-info-card .property-info-card__image) figcaption {
            position: absolute;
            right: var(--p-space-400);
            padding: var(--p-space-100) var(--p-space-200);
            font-size: var(--p-ref-typeface-size-300);
            font-weight: var(--p-ref-typeface-weight-semibold);
            color: var(--p-sys-color-on-inverse-surface);
            text-transform: uppercase;
            background: hsl(from var(--p-ref-palette-black) h s l / 0.75);
            border-radius: var(--p-property-info-card-corner-shape);
            -webkit-backdrop-filter: blur(2px) opacity(0.75);
                    backdrop-filter: blur(2px) opacity(0.75);
        }
.property-info-card .property-info-card__content {
        display: grid;
        flex-grow: 1;
        grid-template-rows: auto 1fr auto;
        gap: var(--p-space-200);
        font-size: var(--p-ref-typeface-size-400);
    }
:is(.property-info-card .property-info-card__content) h3 {
            -webkit-padding-after: var(--p-space-200);
                    padding-block-end: var(--p-space-200);
            font-size: var(--p-ref-typeface-size-700);
            font-weight: var(--p-ref-typeface-weight-bold);
        }
.property-info-card .property-info-card__footer {
        align-self: end;
    }
/* Contents */
.featured-content {
    padding-block: var(--p-space-1000);
    container-type: inline-size;
}
.featured-content .featured-content__wrapper {
        display: flex;
        flex-direction: column;
        gap: var(--p-space-600);
    }
.featured-content header h3 {
        font-size: var(--p-ref-typeface-size-600);
        font-weight: var(--p-ref-typeface-weight-bold);
        text-align: center;
    }
@container (width <= 40em) {
        .featured-content .featured-content__content {
            padding-inline: var(--p-space-1000);
        }
    }
.featured-content .featured-content__footer {
        display: grid;
        grid-auto-columns: 1fr;
        grid-auto-flow: column;
        gap: var(--p-space-1200);
        align-items: center;
        justify-content: space-between;
        padding: var(--p-space-700);
        margin-inline: var(--p-space-1600);
        font-size: var(--p-ref-typeface-size-350);
        background: var(--p-sys-color-background);
        border: 1px solid var(--p-sys-color-outline);
        border-radius: var(--p-sys-shape-corner-large);
    }
@container (width <= 40em) {
.featured-content .featured-content__footer {
            display: none;
    }
        }
.article-card {
    --p-sys-color-emphasis: var(--p-sys-color-on-background);

    margin: var(--p-space-200);
    container: article-card / inline-size;
    background: var(--p-sys-color-background);
    border: 1px solid var(--p-sys-color-outline);
    border-radius: var(--p-sys-shape-corner-large);
    box-shadow: var(--p-sys-elevation-light-1);
    transition: all var(--p-sys-motion-spatial);
}
.article-card:hover {
        box-shadow: var(--p-sys-elevation-light-2);
    }
.article-card .article-card__wrapper {
        display: flex;
        flex-direction: column;
        gap: var(--p-space-300);
        padding: var(--p-space-600);
        line-height: 1.2;
    }
@container (width >= 40rem) {
.article-card .article-card__wrapper {
            padding: var(--p-space-1000);
    }
        }
.article-card h4 {
        font-size: var(--p-ref-typeface-size-450);
        font-weight: var(--p-ref-typeface-weight-bold);
    }
.article-card p {
        font-size: var(--p-ref-typeface-size-300);
    }
.article-card picture {
        max-width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        overflow: hidden;
        border-radius: var(--p-sys-shape-corner-large);
    }
.content-image-card {
    --p-content-image-card-max-width: 30rem;
    --p-content-image-card-padding: var(--p-space-800) var(--p-space-600);

    max-width: var(--p-content-image-card-max-width);
    container-type: inline-size;
}
.content-image-card .content-image-card__wrapper {
        display: flex;
        flex-direction: column;
        overflow: clip;
        border-radius: var(--p-sys-shape-corner-small);
        box-shadow: var(--p-sys-elevation-light-2);
    }
@container (width >= 40rem) {
.content-image-card .content-image-card__wrapper {
            --p-content-image-card-padding: var(--p-space-1600)
                var(--p-space-1000);
    }
        }
.content-image-card.content-image-card--inverse .content-image-card__wrapper {
        flex-direction: column-reverse;
    }
.content-image-card .content-image-card__content {
        padding: var(--p-content-image-card-padding);
        font-size: var(--p-font-size-text);
        border: 1px solid var(--p-sys-color-outline);
        border-top-left-radius: var(--p-sys-shape-corner-small);
        border-top-right-radius: var(--p-sys-shape-corner-small);
    }
.content-image-card .content-image-card__image {
        aspect-ratio: 3/2;
    }
.content-story {
    --p-content-story-gap: var(--p-space-400);

    container-type: inline-size;
    line-height: 1.2;
}
.content-story .content-story__wrapper {
        display: grid;
        grid-template: auto auto auto / 1fr;
        grid-template-areas:
            'image'
            'header'
            'content';
        gap: var(--p-content-story-gap);
    }
@container (width >= 48rem) {
        .content-story .content-story__wrapper {
            grid-template: auto auto / 1fr 1fr;
            grid-template-areas:
                'header image'
                'content image';
        }

        .content-story.content-story--inverse .content-story__wrapper {
            grid-template-areas:
                'image header'
                'image content';
        }
    }
@container (width < 48rem) {
        .content-story.content-story--variant .content-story__wrapper {
            grid-template: auto / 1fr 1fr;
            grid-template-areas:
                'header image'
                'content content';
        }
    }
.content-story .content-story__picture {
        grid-area: image;
    }
.content-story .content-story__header {
        display: flex;
        flex-direction: column;
        grid-area: header;
        gap: var(--p-content-story-gap);
    }
:is(.content-story .content-story__header) h4 {
            font-size: var(--p-font-size-heading-2);
            font-weight: var(--p-ref-typeface-weight-bold);
        }
.content-story .content-story__content {
        display: flex;
        flex-direction: column;
        grid-area: content;
        gap: var(--p-content-story-gap);
    }
.testimonial {
    display: flex;
    flex-direction: column;
    gap: var(--p-space-400);
}
.testimonial .testimonial__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
.testimonial .testimonial__date,.testimonial .testimonial__text {
        font-size: var(--p-font-size-heading-4);
    }
.testimonial .testimonial__footer {
        font-size: var(--p-ref-typeface-size-400);
        font-weight: var(--p-ref-typeface-weight-bold);
    }
.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: var(--p-space-800);
    margin-block: var(--p-space-1000);
}
.testimonial-slider .slider__navigation {
        position: relative;
        justify-content: center;
    }
/* Section Blocks */
.top-vocations .top-vocations__wrapper {
        display: flex;
        flex-direction: column;
        gap: var(--p-space-400);
    }
.top-vocations .top-vocations__slider {
        display: flex;
        flex-direction: column;
        gap: var(--p-space-500);
        inline-size: 100%;
    }
:is(.top-vocations .top-vocations__slider) .slider__navigation {
            position: relative;
            display: grid;
            grid-template: 1fr / auto 1fr auto;
            place-content: center;
            padding-inline: 15%;
        }
.top-vocations .swiper-wrapper:has(.top-vocations__label) {
        align-items: center;
    }
:is(.top-vocations .swiper-wrapper:has(.top-vocations__label)) .top-vocations__label {
            display: flex;
            flex-flow: column nowrap;
            gap: var(--p-space-400);
            text-align: center;
        }
:is(:is(.top-vocations .swiper-wrapper:has(.top-vocations__label)) .top-vocations__label) h5 {
                font-size: var(--p-ref-typeface-size-500);
                font-weight: var(--p-ref-typeface-weight-bold);
            }
.top-vocations .top-vocations__image {
        display: block;
        width: 100%;
        aspect-ratio: 1/1;
        overflow: hidden;
        border-radius: var(--p-sys-shape-corner-small);
    }
.top-properties {
    --p-top-properties-card-max-width: 23.75rem; /* 380px */
    --columns: 1;
    --gap: var(--p-space-400);
    --padding-inline: var(--p-space-200);

    container-type: inline-size;
}
.top-properties .top-properties__cards {
        display: grid;
        grid-template-columns: repeat(
            var(--columns),
            minmax(var(--p-top-properties-card-max-width), 1fr)
        );
        gap: var(--gap);
        padding-inline: var(--padding-inline);
    }
@container (width >= 40rem) {
.top-properties .top-properties__cards {
            --padding-inline: var(--p-space-400);
            --columns: 2;
    }
        }
@container (width >= 48rem) {
.top-properties .top-properties__cards {
            --gap: var(--p-space-1200);
            --padding-inline: var(--p-space-800);
    }
        }
.concierge-services .concierge-services__wrapper {
        display: flex;
        flex-direction: column;
        gap: var(--p-space-400);
    }
:is(.concierge-services .concierge-services__wrapper) h2 {
            font-size: var(--p-ref-typeface-size-500);
        }
.concierge-services .concierge-services__slider {
        display: flex;
        flex-direction: column;
        gap: var(--p-space-500);
        inline-size: 100%;
    }
@media (width >= 48rem) {
.concierge-services .concierge-services__slider {
            flex-direction: column-reverse;
    }
        }
:is(.concierge-services .concierge-services__slider) .slider__navigation {
            position: relative;
            display: flex;
            place-content: center;
        }
.concierge-services .concierge-services__message {
        text-align: center;
    }
@media (width >= 48rem) {
.concierge-services .concierge-services__message {
            padding-inline: var(--p-space-2000);
    }
        }
.concierge-services .concierge-services__navigation-link {
        font-size: clamp(1rem, 0.1667rem + 2.0833vw, 1.5rem);
        font-weight: var(--p-ref-typeface-weight-semibold);
        line-height: 1.2;
        text-align: center;
        text-decoration: underline;
    }
.concierge-services .concierge-services__card-content {
        display: flex;
        flex-direction: column;
        gap: var(--p-space-300);
        place-content: center;
        place-items: center;
        text-align: center;
    }
.jeeves-story .jeeves-story__content {
        display: flex;
        flex-direction: column;
        gap: var(--p-space-800);
    }
.jeeves-story .jeeves-story__body,.jeeves-story .jeeves-story__text {
        display: flex;
        flex-direction: column;
        gap: inherit;
    }
@media (width < 48rem) {
        .jeeves-story .jeeves-story__body--inverse {
            flex-direction: column-reverse;
        }
    }
.jeeves-story .jeeves-story__points {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--p-space-800);
        padding-inline: 5%;
    }
@media (width >= 48rem) {
.jeeves-story .jeeves-story__points {
            grid-template-columns: repeat(4, 1fr);
            padding-inline: 0;
    }
        }
:is(.jeeves-story .jeeves-story__points) figure {
            display: flex;
            gap: var(--p-space-400);
            place-content: center;
            place-items: center;
        }
:is(:is(.jeeves-story .jeeves-story__points) figure) img {
                max-width: var(--p-space-1200);
            }
:is(:is(.jeeves-story .jeeves-story__points) figure) figcaption {
                font-weight: var(--p-ref-typeface-weight-bold);
            }
@media (width >= 48rem) {
:is(.jeeves-story .jeeves-story__points) figure {
                flex-direction: column;
        }

                :is(:is(.jeeves-story .jeeves-story__points) figure) img {
                    max-width: var(--p-space-1600);
                }

                :is(:is(.jeeves-story .jeeves-story__points) figure) figcaption {
                    text-align: center;
                }
            }
:is(.jeeves-story .jeeves-story__slides) .slider__wrapper {
            margin-inline: 0;
        }
.newsletter-block {
    display: grid;
    grid-template-columns: 1fr 30%;
    gap: var(--p-space-400);
    padding: var(--p-space-700);
    background: var(--p-sys-color-secondary-container);
    border-radius: var(--p-sys-shape-corner-large-increased);
}
.group-trip .group-trip__wrapper {
        gap: var(--p-space-600);
    }
.group-trip .group-trip__header {
        display: grid;
        grid-template: repeat(3, auto) / 1fr;
        grid-template-areas:
            'headline'
            'points'
            'ctas';
        gap: var(--p-space-600);
    }
@media (width >= 48rem) {
.group-trip .group-trip__header {
            grid-template: 1fr auto / 1fr 1fr;
            grid-template-areas:
                'headline ctas'
                'points points';
    }
        }
.group-trip .group-trip__headline {
        display: flex;
        flex-direction: column;
        grid-area: headline;
        gap: var(--p-space-300);
    }
:is(.group-trip .group-trip__headline) h3 {
            font-size: var(--p-font-size-heading-2);
            font-weight: var(--p-ref-typeface-weight-bold);
        }
.group-trip .group-trip__ctas {
        display: flex;
        flex-direction: column;
        grid-area: ctas;
        gap: var(--p-space-300);
        align-items: center;
        justify-content: center;
    }
.group-trip .group-trip__points {
        display: grid;
        grid-area: points;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--p-space-800);
    }
@media (width >= 48rem) {
.group-trip .group-trip__points {
            grid-template-columns: repeat(4, 1fr);
    }
        }
:is(.group-trip .group-trip__points) figure {
            display: flex;
            gap: var(--p-space-400);
            place-content: start;
            place-items: center;
        }
:is(:is(.group-trip .group-trip__points) figure) img {
                max-width: var(--p-space-1200);
            }
:is(:is(.group-trip .group-trip__points) figure) figcaption {
                font-weight: var(--p-ref-typeface-weight-bold);
            }
