/* hotel showcase */
html,
body {
    scroll-snap-type: y proximity;
    scroll-padding-top: 0;
}

.hotel-showcase {
    margin: 0;
    padding: 0;
    background: var(--white);
    position: relative;
    height: auto;
    overflow: visible;
}

.hotel-showcase__track {
    height: auto;
    width: 100%;
    will-change: auto;
}

/* hotel nav */

.hotel-nav {
    display: none;
    position: fixed;
    top: 6.25rem;
    left: 0;
    right: 0;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hotel-nav.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.hotel-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.hotel-nav__item {
    margin: 0;
}

.hotel-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 1.25rem;
    border-radius: 100vh;
    background-color: transparent;
    color: var(--white);
    font-family: var(--font-family-noto-sans-jp);
    text-decoration: none;
    transition: background-color 0.25s ease;
    font-weight: 300;
}

.hotel-nav__link:hover,
.hotel-nav__link:focus-visible {
    background-color: rgba(176, 166, 157, 1);
}

.hotel-nav__link.is-active {
    background-color: #82776e;
}

/* hotel card */

.hotel-card {
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 3.5rem 5%;
    box-sizing: border-box;
    flex-wrap: nowrap;
    height: auto;
    min-height: 100dvh;
    max-height: none;
    overflow: visible;
    border-radius: 20px 20px 0 0;
}

/* hotel card background layer */

.hotel-card__background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    border-radius:
        clamp(var(--font-size-16),
            calc(20 / 390 * 100vw),
            1.25rem) clamp(var(--font-size-16),
            calc(20 / 390 * 100vw),
            1.25rem) 0 0;
    z-index: 1;
}

.hotel-card--series .hotel-card__background {
    bottom: 0;
    height: auto;
}

.hotel-card--livin-guu .hotel-card__background,
.hotel-card--marimore .hotel-card__background,
.hotel-card--ichi-guu .hotel-card__background,
.hotel-card--series .hotel-card__background,
.hotel-card--other .hotel-card__background {
    top: 0;
    bottom: 0;
    min-height: 100%;
    width: 100%;
}

.hotel-card--livin-guu .hotel-card__background,
.hotel-card--marimore .hotel-card__background,
.hotel-card--ichi-guu .hotel-card__background {
    bottom: 0;
    height: auto;
}

/* hotel card background color variants */

.hotel-card--livin-guu {
    background-color: var(--livin-guu_2);
}

.hotel-card--marimore {
    background-color: var(--marimore_2);
}

.hotel-card--series {
    background-color: var(--and-series_2);
}

.hotel-card--ichi-guu {
    background-color: var(--ichi-guu_2);
}

.hotel-card--other {
    background-color: var(--other-hotels_2);
}

/* hotel card title */

.hotel-card__title {
    font-family: var(--font-family-lato);
    font-size: 1.75rem;
    font-weight: 300;
    line-height: var(--line-height-140);
    color: var(--black);
    white-space: nowrap;
    z-index: 10;
    margin: 0 0 3rem;
    width: 100%;
    text-align: center;
}

/* hotel card content */

.hotel-card__content {
    background-color: rgba(255, 255, 255, 0.96);
    border-radius: 20px;
    padding: 2rem 5% 5rem;
    z-index: 15;
    width: 100%;
    max-width: 560px;
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
}

.hotel-card--other .hotel-card__content {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
}

/* SP: series content should not be compressed by flexbox */
.hotel-card--series .hotel-card__content {
    flex-shrink: 0;
    padding-bottom: 5rem;
}

/* SP: prevent content from being compressed by flexbox */
.hotel-card--livin-guu .hotel-card__content,
.hotel-card--marimore .hotel-card__content {
    flex-shrink: 0;
}

/* SP: ichi-guu has fewer elements; prevent content from stretching or compressing */
.hotel-card--ichi-guu .hotel-card__content {
    flex-grow: 0;
    flex-shrink: 0;
}

/* hotel card header */

.hotel-card__header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hotel-card__logo {
    width: 10rem;
    height: auto;
    overflow: hidden;
}

.hotel-card__logo img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
}

.hotel-card__description {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

/* hotel card heading */

.hotel-card__heading {
    font-family: var(--font-family-noto-sans-jp);
    font-size: var(--font-size-24);
    font-weight: 300;
    line-height: var(--line-height-140);
    letter-spacing: var(--letter-spacing-6);
    margin: 0;
    padding: 0;
}

.ls__square-brackets {
    margin-left: -0.6em;
}

.ls__square-brackets-start {
    letter-spacing: -0.4em;
}

.ls__square-brackets-end {
    letter-spacing: -0.4em;
}

/* heading color variants */

.hotel-card--livin-guu .hotel-card__heading {
    color: var(--livin-guu);
}

.hotel-card--marimore .hotel-card__heading {
    color: var(--marimore);
}

.hotel-card--ichi-guu .hotel-card__heading {
    color: var(--ichi-guu);
}

.hotel-card--series .hotel-card__heading {
    color: var(--and-series);
}

/* hotel card text */

.hotel-card__text {
    font-family: var(--font-family-noto-sans-jp);
    font-size: var(--font-size-13);
    font-weight: 400;
    line-height: var(--line-height-170);
    letter-spacing: var(--letter-spacing-6);
    color: var(--black);
    margin: 0;
    padding: 0;
}

/* hotel card tags */

.hotel-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.375rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-family-noto-sans-jp);
    font-size: var(--font-size-12);
    font-weight: 400;
    line-height: var(--line-height-170);
    letter-spacing: var(--letter-spacing-6);
}

.hotel-card__tag {
    display: inline-block;
    padding: 0;
    margin: 0;
}

/* tag color variants */

.hotel-card--livin-guu .hotel-card__tag {
    color: var(--livin-guu);
}

.hotel-card--marimore .hotel-card__tag {
    color: var(--marimore);
}

.hotel-card--ichi-guu .hotel-card__tag {
    color: var(--ichi-guu);
}

.hotel-card--series .hotel-card__tag {
    color: var(--and-series);
}

/* hotel card series locations */

.hotel-card__series-locations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    text-align: left;
}

.hotel-card__location {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.625rem;
}

.hotel-card__location-name {
    background-color: var(--gray4);
    border: 2px solid var(--gray4);
    border-radius: 100px;
    padding: 0.625rem 0.75rem;
    font-family: var(--font-family-lato), var(--font-family-noto-sans-jp);
    font-size: var(--font-size-13);
    font-weight: 400;
    line-height: var(--line-height-170);
    letter-spacing: var(--letter-spacing-6);
    color: var(--black);
}

.hotel-card__location-icon {
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-card__location-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.hotel-card__location.c-btn {
    display: inline-flex;
    gap: 0;
}

.hotel-card--series .hotel-card__location.c-btn .c-btn__label {
    min-height: 1.875rem;
    padding-inline: 0.75rem;
    font-size: 0.8125rem;
}

.hotel-card--series .hotel-card__location.c-btn .c-btn__icon {
    width: 1.875rem;
    height: 1.875rem;
}

.hotel-card--series .hotel-card__location.c-btn .c-btn__label,
.hotel-card--series .hotel-card__location.c-btn .c-btn__icon {
    background-color: var(--gray4);
    border-color: var(--gray4);
    color: var(--black);
}

.hotel-card--series .hotel-card__location.c-btn .c-btn__icon svg {
    color: var(--black);
    width: 1rem;
    height: 0.8rem;
}

/* hotel card cta */

.hotel-card__cta {
    display: flex;
    align-items: center;
    gap: 0;
}

.hotel-card__button {
    background-color: var(--livin-guu_1);
    border: none;
    border-radius: 100px;
    padding: 0.625rem 1rem;
    font-family: var(--font-family-lato);
    font-size: var(--font-size-13);
    font-weight: 400;
    line-height: var(--line-height-170);
    letter-spacing: var(--letter-spacing-6);
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.25s ease-out;
    margin: 0;
}

.hotel-card__button:hover {
    opacity: 0.85;
}

/* button color variants */

.hotel-card--marimore .hotel-card__button {
    background-color: var(--marimore_1);
}

.hotel-card--ichi-guu .hotel-card__button {
    background-color: var(--ichi-guu-1);
}

.hotel-card--series .hotel-card__button {
    background-color: var(--and-series_1);
}

.hotel-card--other .hotel-card__button {
    background-color: var(--other-hotels_1);
}

.hotel-card__arrow {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hotel-card__arrow img {
    width: 100%;
    height: 100%;
    display: block;
}

/* hotel card badge */

.hotel-card__badge {
    position: absolute;
    top: -2.5rem;
    right: -0.5rem;
    width: 5.625rem;
    height: 5.625rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

/* badge float animation */

@keyframes badge-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hotel-card__badge-icon {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 100vh;
    background-color: var(--livin-guu_1);
    animation: badge-float 3.2s ease-in-out infinite;
    will-change: transform;
    transform-origin: center center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* badge color variants */

.hotel-card--marimore .hotel-card__badge-icon {
    background-color: var(--marimore_1);
}

.hotel-card--ichi-guu .hotel-card__badge-icon {
    background-color: var(--ichi-guu_1);
}

.hotel-card--series .hotel-card__badge-icon {
    background-color: var(--and-series_1);
}

.hotel-card--other .hotel-card__badge-icon {
    background-color: var(--other-hotels_1);
}

.hotel-card__badge-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.hotel-card__badge-text {
    position: absolute;
    font-family: var(--font-family-noto-sans-jp);
    font-size: var(--font-size-13);
    font-weight: 400;
    line-height: var(--line-height-170);
    letter-spacing: var(--letter-spacing-6);
    color: var(--white);
    white-space: nowrap;
    margin: 0;
    padding: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* hotel card media */

.hotel-card__media {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 20;
    flex-shrink: 0;
}

/* hotel card hero */

.hotel-card__hero {
    position: relative;
    width: 100%;
    aspect-ratio: 350 / 200;
    overflow: hidden;
    border-radius: 100vh;
    z-index: 20;
    /* hero が content の上に重なる */
    margin-top: -2rem;
}

.hotel-card__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* hotel card thumbnails */

.hotel-card__thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    z-index: 15;
}

.hotel-card__thumbnail {
    appearance: none;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    cursor: pointer;
    position: relative;
    transition: opacity 0.3s ease;
}

.hotel-card__thumbnail-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
    border: none;
    box-shadow: none;
}

.hotel-card__thumbnail:not(.hotel-card__thumbnail--active)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(57 57 57 / 70%);
    /* 半透明グレー */
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hotel-card__thumbnail--active::after {
    content: none;
}

/* =============================================================================
   other hotels section
   ============================================================================= */

.hotel-card__content--other {
    padding: 1rem 1.25rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.hotel-card__other-item {
    background-color: rgba(255, 255, 255, 0.96);
    border-radius: 1.25rem;
    padding: 1.25rem 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hotel-card__other-image {
    width: 100%;
    aspect-ratio: 310 / 310;
    overflow: hidden;
    border-radius: 1rem;
}

.hotel-card__other-hero {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotel-card__other-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hotel-card__other-logo {
    width: 6.875rem;
    height: auto;
    display: block;
}

.hotel-card__other-logo img {
    width: 100%;
    height: auto;
    display: block;
    max-width: none;
}

.hotel-card__other-name {
    font-family: var(--font-family-lato), var(--font-family-noto-sans-jp);
    font-size: var(--font-size-18);
    font-weight: 400;
    line-height: var(--line-height-170);
    letter-spacing: var(--letter-spacing-6);
    color: var(--black);
    margin: 0;
    padding: 0;
}

.hotel-card__other-cta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
}

.hotel-card__other-button {
    background-color: var(--other-hotels_1);
    border: 2px solid var(--other-hotels_1);
    border-radius: 100px;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-family-lato), var(--font-family-noto-sans-jp);
    font-size: var(--font-size-13);
    font-weight: 400;
    line-height: var(--line-height-170);
    letter-spacing: var(--letter-spacing-6);
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.25s ease-out;
    margin: 0;
}

.hotel-card__other-button:hover {
    opacity: 0.85;
}

.hotel-card__other-arrow {
    width: 2.1875rem;
    height: 2.1875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hotel-card__other-arrow img {
    width: 100%;
    height: 100%;
    display: block;
}

/* PC layout */

@media (min-width: 768px) {
    html,
    body {
        scroll-snap-type: none;
        scroll-padding-top: auto;
    }

    .hotel-showcase__track {
        height: 100%;
        width: 100%;
        will-change: transform;
    }

    .hotel-nav {
        display: flex;
        justify-content: center;
        width: 100%;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .hotel-card {
        height: 100dvh;
        min-height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 2rem;
        padding: 11.5rem 5% 4rem;
        box-sizing: border-box;
        padding-left: calc(5% - 2rem);
        flex-wrap: wrap;
        border-radius: 50px 50px 0 0;
    }

    .hotel-card--other {
        height: 100dvh;
        min-height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
    }

    .hotel-card--other .hotel-card__content {
        width: 100%;
        max-width: 1260px;
        justify-items: center;
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        height: auto;
        overflow: visible;
    }

    .hotel-card--other .hotel-card__content.hotel-card__content--other {
        display: grid;
        grid-template-columns: repeat(3, minmax(220px, 1fr));
        gap: 1.5rem;
        width: 100%;
        max-width: 1094px;
        margin: 0 auto;
    }

    .hotel-card--other .hotel-card__title {
        font-size: 2.5rem;
    }

    .hotel-card__other-item {
        width: 100%;
        max-width: 322px;
        border-radius: 30px;
        padding: 1.75rem 1.75rem 2.5rem 1.75rem;
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .hotel-card__other-info {
        margin-bottom: 0;
        flex: 1;
        min-height: 0;
    }

    .hotel-card__other-cta {
        position: static;
        margin-top: auto;
        width: auto;
    }

    .hotel-card__other-cta .c-btn__label {
        min-height: 1.875rem;
        padding-inline: 0.75rem;
    }

    .hotel-card__other-name {
        font-size: var(--font-size-24);
        line-height: 1.5em;
    }

    .hotel-card__other-logo {
        width: auto;
        height: auto;
    }

    .hotel-card__other-logo img {
        width: revert-layer;
    }

    .hotel-card__header {
        margin-bottom: 2.5rem;
    }

    .hotel-card__tags {
        margin-bottom: 2.5rem;
    }

    .hotel-card__content {
        width: min(42.105%, 770px);
        min-width: 0;
        padding: 5rem 5rem 5rem 6rem;
        order: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 20;
        margin-left: -5rem;
        border-radius: 50px;
        flex-shrink: 1;
    }

    .hotel-card__text {
        font-size: var(--font-size-15);
    }

    .hotel-card__title {
        margin-bottom: 1rem;
        line-height: 1em;
        font-size: 4rem;
    }

    .hotel-card__media {
        order: 1;
        width: min(57.895%, 880px);
        min-width: 0;
        z-index: 30;
        display: flex;
        gap: 1rem;
        flex-direction: row;
        align-items: center;
    }

    .hotel-card__hero {
        order: 1;
        flex: 1;
        min-width: 0;
        margin-top: 0;
        margin-bottom: 0;
        z-index: 10;
    }

    .hotel-card__thumbnail {
        width: 3rem;
        height: 3rem;
    }

    .hotel-card__thumbnails {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 0;
        align-items: center;
        justify-content: center;
        min-width: 3.5rem;
    }

    .hotel-card__background {
        max-width: 100%;
        border-radius: 50px 50px 0 0;
    }

    .hotel-card__badge {
        top: -70px;
        right: -70px;
        width: 8.75rem;
        height: 8.75rem;
    }

    .hotel-card__heading {
        font-size: var(--font-size-32);
    }

    .hotel-card__badge-text {
        font-size: 1.125rem;
    }

    /* PC: marimore と series のレイアウト入れ替え */

    .hotel-card--marimore,
    .hotel-card--series {
        padding-left: 5%;
        padding-right: calc(5% - 2rem);
    }

    .hotel-card--marimore .hotel-card__content {
        order: 1;
        margin-left: 0;
        margin-right: -5rem;
        padding: 5rem;
    }

    .hotel-card--marimore .hotel-card__media {
        order: 2;
    }

    .hotel-card--marimore .hotel-card__hero {
        order: 1;
    }

    .hotel-card--marimore .hotel-card__thumbnails {
        order: 2;
    }

    .hotel-card--marimore .hotel-card__badge {
        right: 0;
        left: -70px;
    }

    .hotel-card--series .hotel-card__content {
        order: 1;
        margin-left: 0;
        margin-right: -5rem;
        padding: 3.5rem 5rem;
        flex-shrink: 1;
    }

    .hotel-card--series .hotel-card__media {
        order: 2;
    }

    .hotel-card--series .hotel-card__hero {
        order: 1;
    }

    .hotel-card--series .hotel-card__thumbnails {
        order: 2;
    }

    .hotel-card--series .hotel-card__badge {
        right: 0;
        left: -70px;
    }

    /* series locations: PC では横並び */

    .hotel-card--series .hotel-card__series-locations {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
}

/* Desktop short-height fallback */

@media (min-width: 768px) and (max-height: 900px) {
    .hotel-card--livin-guu {
        background-color: var(--livin-guu_2);
    }

    .hotel-card--marimore {
        background-color: var(--marimore_2);
    }

    .hotel-card--series {
        background-color: var(--and-series_2);
    }

    .hotel-card--other {
        background-color: var(--other-hotels_2);
    }

    .hotel-card {
        padding-top: 9.25rem;
        padding-bottom: 2.75rem;
        gap: 1.5rem;
        overflow-y: auto;
        overflow-x: hidden;
        align-content: start;
        align-items: center;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .hotel-card::-webkit-scrollbar {
        display: none;
    }

    .hotel-card--livin-guu .hotel-card__background,
    .hotel-card--marimore .hotel-card__background,
    .hotel-card--ichi-guu .hotel-card__background,
    .hotel-card--series .hotel-card__background,
    .hotel-card--other .hotel-card__background {
        top: 0;
        bottom: 0;
        height: auto;
        min-height: 100%;
    }

    .hotel-card__title {
        font-size: 3.25rem;
        margin-bottom: 0.75rem;
    }

    .hotel-card__header,
    .hotel-card__tags,
    .hotel-card--series .hotel-card__series-locations {
        margin-bottom: 1.5rem;
    }

    .hotel-card__content {
        width: min(44%, 700px);
        flex: 0 1 44%;
        padding: 3.5rem 3.25rem 3.5rem 4rem;
        overflow: visible;
        margin-left: -3.5rem;
    }

    .hotel-card--marimore .hotel-card__content {
        width: min(47%, 760px);
        flex: 0 1 47%;
        padding: 3.5rem 3.75rem 3.5rem 3.5rem;
        margin-right: -2.5rem;
    }

    .hotel-card--series .hotel-card__content {
        width: min(47%, 760px);
        flex: 0 1 47%;
        padding: 3rem 3.75rem 3rem 3.5rem;
        margin-right: -2.5rem;
    }

    .hotel-card--marimore .hotel-card__media,
    .hotel-card--series .hotel-card__media {
        width: min(53%, 760px);
        flex: 1 1 53%;
    }

    .hotel-card__media {
        width: min(56%, 820px);
        flex: 1 1 56%;
        align-self: center;
        align-items: center;
    }

    .hotel-card__badge {
        top: -2rem;
        right: -2rem;
        width: 7.5rem;
        height: 7.5rem;
    }

    .hotel-card--marimore .hotel-card__badge,
    .hotel-card--series .hotel-card__badge {
        top: -2.5rem;
        left: -3.5rem;
        right: auto;
    }

    .hotel-card--other {
        padding-top: 8.5rem;
        padding-bottom: 2rem;
    }

    .hotel-card--other .hotel-card__content {
        justify-content: flex-start;
        overflow-y: auto;
        scrollbar-width: none;
    }

    .hotel-card--other .hotel-card__content::-webkit-scrollbar {
        display: none;
    }

    .hotel-card--other .hotel-card__content.hotel-card__content--other {
        max-width: 1020px;
        gap: 1rem;
    }

    .hotel-card__other-item {
        padding: 1.25rem 1.25rem 1.5rem;
        gap: 1rem;
    }

    .hotel-card__other-image {
        aspect-ratio: 310 / 220;
    }

    .hotel-card__other-info {
        gap: 1rem;
    }

    .hotel-card__other-name {
        font-size: var(--font-size-18);
        line-height: 1.4;
    }
}