/* Source: assets\css\home-layout.css */
.site-home {
    padding-bottom: 18px;
    background:
        linear-gradient(180deg, rgba(241, 247, 252, .9) 0%, rgba(255, 255, 255, 0) 180px),
        #fff;
}

.site-home .container {
    position: relative;
}

.site-home .tit_home {
    margin: 22px 0 12px;
}

.site-home .tit_home a,
.site-home .tit_home > span {
    font-size: 28px;
}

.site-home .home-news-cover {
    margin: -18px -18px 18px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    background: #eef4f8;
}

.site-home .home-news-cover img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.site-home .tit_home_bot {
    margin-bottom: 14px;
}

.site-home .tit_home_bot a,
.site-home .tit_home_bot span {
    font-size: 26px;
}

.site-home .row_8 {
    margin: 0 -8px;
}

.site-home .row_7 {
    margin: 0 -7px;
}

body.modern-public .premium-home .row_20 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 56px -20px 0;
}

body.modern-public .premium-home .row_20 > [class*="col-"] {
    margin-bottom: 24px;
}

/* Balanced media block: video and gallery on the home page. */
.site-home .home-media {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-top: 56px;
}

.site-home .home-media__col {
    min-width: 0;
}

.site-home .home-media .mg_5_a {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(169, 205, 229, .72);
    border-radius: 28px;
    background:
        radial-gradient(circle at 96% 0%, rgba(46, 111, 149, .14) 0, rgba(46, 111, 149, 0) 34%),
        linear-gradient(135deg, #ffffff 0%, #f8fbff 58%, #eef7fc 100%);
}

.site-home .home-media .tit_home_bot {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
    align-items: start;
    margin: 0 0 20px;
}

.site-home .home-media .tit_home_bot .home-section-kicker {
    grid-column: 1 / -1;
    width: max-content;
    max-width: 100%;
    padding: 7px 13px;
    border: 1px solid rgba(36, 116, 154, .16);
    border-radius: 999px;
    background: rgba(235, 246, 252, .92);
    color: #5f7790;
    font-size: 12px;
    letter-spacing: .14em;
}

.site-home .home-media .tit_home_bot > a,
.site-home .home-media .tit_home_bot > span:not(.home-section-kicker) {
    color: #102842;
    font-size: 30px;
    line-height: 1.12;
}

.site-home .home-media .box_video_home {
    position: relative;
    display: flex;
    flex: 1;
    min-height: 430px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 24px;
    background: #0f2943;
}

.site-home .home-media .box_video_home iframe {
    display: block;
    width: 100%;
    height: auto;
    min-height: 430px;
    flex: 1;
    border-radius: 24px;
}

.site-home .home-media .slider_album {
    flex: 1;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.site-home .home-media .home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.site-home .home-media .home-gallery-card {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
}

.site-home .home-media .home-gallery-card.site-card--interactive:hover,
.site-home .home-media .home-gallery-card.site-card--interactive:focus-within {
    transform: none;
    border-color: var(--cbe-line);
    box-shadow: var(--cbe-shadow);
}

.site-home .home-media .home-gallery-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.12 / 1;
    border-radius: 0;
}

.site-home .home-media .home-gallery-card__image:after {
    content: "";
    position: absolute;
    inset: var(--cbe-image-frame-inset, 18px);
    height: auto;
    box-sizing: border-box;
    pointer-events: none;
    border: 1px solid var(--cbe-image-frame-border, rgba(255,255,255,.58)) !important;
    border-radius: calc(var(--cbe-image-frame-radius, 24px) - 6px);
    background: none !important;
    box-shadow: none !important;
    transform: none;
    transform-origin: center;
    will-change: auto;
}

.site-home .home-media .home-gallery-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 0;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}

.site-home .home-media .home-gallery-card:hover .home-gallery-card__image img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.06);
}

.site-home .home-media .home-gallery-card__title {
    margin: 0;
    min-height: 52px;
    padding: 10px 12px 12px;
    background: linear-gradient(180deg, rgba(255,255,255,.82), #f5fbff);
    text-align: center;
}

.site-home .home-media .home-gallery-card__title a {
    overflow: hidden;
    color: #126b9b;
    font-size: 14px;
    line-height: 1.35;
    text-decoration: none;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.site-home .home-media .home-gallery-card__title a:hover {
    color: #0f5b86;
    text-decoration: none;
}

.site-home .home-media .slider_album .owl-controls {
    display: block;
    position: absolute;
    top: -86px;
    right: 0;
    margin-top: 0;
    z-index: 20;
    pointer-events: none;
}

.site-home .home-media .slider_album .owl-pagination {
    display: none;
}

.site-home .home-media .slider_album .owl-buttons {
    display: block;
}

.site-home .home-media .slider_album .owl-controls .owl-buttons div {
    position: relative;
    width: 42px;
    height: 42px;
    margin: 0 0 0 6px;
    padding: 0;
    border: 1px solid rgba(46, 111, 149, .24);
    border-radius: 12px;
    background: rgba(255,255,255,.9);
    font-size: 0;
    pointer-events: auto;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.site-home .home-media .slider_album .owl-controls .owl-buttons div:hover {
    transform: translateY(-2px);
    border-color: rgba(46, 111, 149, .46);
    background: #f5fbff;
}

.site-home .home-media .slider_album .owl-controls .owl-buttons div:after {
    content: "\f104";
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 13px;
    color: #8aa0b3;
    font: normal normal normal 28px/1 FontAwesome;
}

.site-home .home-media .slider_album .owl-controls .owl-buttons div.owl-next:after {
    content: "\f105";
    left: 15px;
}

.site-home .home-media .slider_album--single .owl-controls,
.site-home .home-media .slider_album--single .owl-buttons {
    display: none;
}

@media (max-width: 991px) {
    .site-home .home-media {
        gap: 22px;
    }

    .site-home .home-media .box_video_home,
    .site-home .home-media .box_video_home iframe {
        min-height: 340px;
    }
}

@media (max-width: 767px) {
    .site-home .home-media .mg_5_a {
        padding: 14px 14px 8px;
        border-radius: 18px;
    }

    .site-home .home-media .tit_home_bot > a,
    .site-home .home-media .tit_home_bot > span:not(.home-section-kicker) {
        font-size: 25px;
    }

    .site-home .home-media .box_video_home,
    .site-home .home-media .box_video_home iframe {
        min-height: 240px;
        border-radius: 18px;
    }

    .site-home .home-media .home-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .site-home .home-media .slider_album .owl-controls {
        position: static;
        margin-top: 14px;
        text-align: right;
    }
}

body.modern-public .premium-home .tit_home,
body.modern-public .premium-home .tit_home_bot {
    margin: 0;
}

body.modern-public .premium-home .tit_home:before,
body.modern-public .premium-home .tit_home:after,
body.modern-public .premium-home .tit_home_bot:before,
body.modern-public .premium-home .tit_home_bot:after {
    display: none;
    content: none;
}

body.modern-public .premium-home .tit_home a,
body.modern-public .premium-home .tit_home span,
body.modern-public .premium-home .tit_home_bot a,
body.modern-public .premium-home .tit_home_bot span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    color: #15324f;
}

body.modern-public .premium-home .tit_home i,
body.modern-public .premium-home .tit_home_bot i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 0;
    border-radius: 50%;
    background: #e9f2fb;
    color: #005999;
    font-size: 16px;
}

@media (max-width: 1199px) {
    body.modern-public .hero-video-inner h2 {
        font-size: 46px;
    }

    body.modern-public .premium-intro-copy h2 {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .site-home .home-media {
        grid-template-columns: 1fr;
    }

    body.modern-public .hero-video-stage,
    body.modern-public .hero-video-content {
        min-height: 500px;
    }

    body.modern-public .hero-video-content {
        padding-bottom: 130px;
    }

    body.modern-public .hero-video-inner h2 {
        font-size: 38px;
    }

    body.modern-public .sc_slider_search .search_content {
        margin-top: -44px;
    }

    body.modern-public .premium-home > .container {
        padding-top: 46px;
    }
}

@media (max-width: 767px) {
    body.modern-public .hero-video-stage,
    body.modern-public .hero-video-content {
        min-height: 420px;
    }

    body.modern-public .hero-video-content {
        padding: 52px 0 112px;
    }

    body.modern-public .hero-video-inner h2 {
        font-size: 30px;
    }

    body.modern-public .hero-video-inner p {
        font-size: 15px;
        line-height: 1.72;
    }

    body.modern-public .sc_slider_search .search_content {
        margin-top: -28px;
    }

    body.modern-public .sc_slider_search .form_search_custom {
        padding: 14px;
        border-radius: 18px;
    }

    body.modern-public .sc_slider_search .search_group,
    body.modern-public .sc_slider_search .search_action {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 10px;
    }

    body.modern-public .sc_slider_search .search_action {
        margin-bottom: 0;
    }

    body.modern-public .premium-intro-copy {
        padding: 26px 24px;
    }

    body.modern-public .premium-intro-copy h2 {
        font-size: 30px;
    }

    body.modern-public .premium-home .tit_home {
        font-size: 30px;
    }

    body.modern-public .premium-home .tit_home_bot {
        font-size: 24px;
    }

    body.modern-public .premium-home .img_tour img,
    body.modern-public .premium-home .img_bus img {
        height: 220px;
    }

    body.modern-public .premium-home .name_tour,
    body.modern-public .premium-home .name_bus {
        font-size: 18px;
    }

    body.modern-public .premium-home .sub_bus {
        padding: 18px 16px 20px;
    }
}

@media (max-width: 480px) {
    .site-home .search_content {
        position: relative;
        top: 0;
        padding-top: 30px;
        background: #fff;
        color: #333;
    }

    .site-home .form_search_ct {
        width: 100%;
        padding: 15px;
    }

    .site-home .form_datetime,
    .site-home .select_select {
        display: block;
        float: revert;
        width: 100%;
        height: 45px;
        margin: 0 0 20px;
        border-color: #d4d4d4;
        background-position: center right;
        color: #333;
        text-align: center;
    }

    .site-home .form_datetime_nw {
        float: revert;
        width: 100%;
        margin: 0;
    }

    .site-home .button_search {
        float: revert;
        margin: 20px 0 5px;
    }

    .site-home .form_datetime_nw input.form-control {
        height: 45px;
        border-color: #d4d4d4;
        background-position: center right;
        color: #333;
    }

    .site-home .form_datetime_nw input.form-control::placeholder {
        color: #333;
    }
}

.home-pages-home {
    margin: 34px 0 18px;
}

.home-page-feature {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(circle at 88% 14%, rgba(42, 123, 168, .16) 0, rgba(42, 123, 168, 0) 34%),
        linear-gradient(135deg, #ffffff 0%, #f5fbff 48%, #eef7fc 100%);
    padding: 36px 32px;
    margin-bottom: 30px;
    overflow: hidden;
}

.home-page-feature:before,
.home-page-feature:after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border-radius: 999px;
}

.home-page-feature:before {
    width: 260px;
    height: 260px;
    right: -92px;
    top: -118px;
    background: rgba(28, 111, 149, .11);
}

.home-page-feature:after {
    width: 180px;
    height: 180px;
    left: 42%;
    bottom: -118px;
    background: rgba(246, 174, 45, .08);
}

.home-page-feature > .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 24px;
}

.home-page-feature--reverse > .row {
    flex-direction: row-reverse;
}

.home-page-feature__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #2e6f95;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.home-page-feature__eyebrow:before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #f6ae2d;
}

.home-page-feature__title {
    max-width: 680px;
    margin: 0 0 16px;
    color: #102842;
    font-size: 36px;
    line-height: 1.14;
    letter-spacing: 0;
}

.home-page-feature__description {
    max-width: 720px;
    margin-bottom: 16px;
    color: #214c70;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 600;
}

.home-page-feature__excerpt {
    max-width: 720px;
    margin-bottom: 24px;
    color: #526e88;
    font-size: 15px;
    line-height: 1.85;
}

.home-page-feature__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.home-page-feature__image-wrap,
.home-page-feature__no-image {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 360px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .74);
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(16, 40, 66, .08), rgba(46, 111, 149, .1)),
        #eaf2f8;
    box-shadow: var(--cbe-shadow, 0 14px 32px rgba(17, 49, 78, .10));
}

.home-page-feature__image-wrap:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(16, 40, 66, 0) 46%, rgba(16, 40, 66, .16) 100%),
        radial-gradient(circle at 18% 18%, rgba(255,255,255,.28) 0, rgba(255,255,255,0) 32%);
}

.home-page-feature__image-wrap:after {
    content: "";
    position: absolute;
    inset: 16px;
    z-index: 2;
    box-sizing: border-box;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 20px;
    background: none;
    transform: none;
    transform-origin: center;
    will-change: auto;
}

.home-page-feature__image-wrap img {
    width: 100%;
    height: 360px;
    min-height: 360px;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .45s ease, filter .45s ease;
}

.home-page-feature__image-wrap:hover img,
.home-page-feature__image-wrap:focus img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.06);
}

.home-page-feature__no-image {
    color: #6e859a;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 24px;
}

.hotel-home-section {
    margin: 18px 0 8px;
}

.site-home .home-slider-section {
    margin: 18px 0 8px;
}

.site-home .home-slider-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.site-home .home-slider-toolbar .tit_home {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin: 0;
    padding: 0;
    background: none;
    line-height: 1.2;
    text-align: left;
}

.site-home .home-slider-shell {
    overflow: hidden;
    padding: 16px 1px 24px;
}

.site-home .slider_s,
.site-home .slider_b,
.site-home .slider_hotel_home,
.site-home .slider_cruise_home {
    margin: 0 -6px;
}

.site-home .slider_s .owl-item,
.site-home .slider_b .owl-item,
.site-home .slider_hotel_home .owl-item,
.site-home .slider_cruise_home .owl-item {
    display: flex;
    box-sizing: border-box;
    padding: 6px 4px 14px;
}

.site-home .slider_s .owl-item > *,
.site-home .slider_b .owl-item > *,
.site-home .slider_hotel_home .owl-item > *,
.site-home .slider_cruise_home .owl-item > * {
    width: 100%;
}

.site-home .slider_s .owl-wrapper-outer,
.site-home .slider_b .owl-wrapper-outer,
.site-home .slider_hotel_home .owl-wrapper-outer,
.site-home .slider_cruise_home .owl-wrapper-outer {
    overflow: hidden;
    padding: 4px 1px 12px;
    border-radius: 26px;
}

.site-home .home-list-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    overflow: hidden;
}

.site-home .home-list-card__media {
    position: relative;
    display: block;
    overflow: hidden;
}

.site-home .home-list-card__media img {
    display: block;
    transition: transform .35s ease;
}

.site-home .home-list-card:hover .home-list-card__media img {
    transform: scale(1.04);
}

.site-home .home-list-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(19, 49, 76, .82);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.site-home .home-list-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.site-home .home-list-card__title {
    margin: 0;
    overflow: hidden;
}

.site-home .home-list-card__title a {
    text-decoration: none;
}

.site-home .home-list-card__meta {
    display: flex;
    flex-wrap: wrap;
}

.site-home .home-list-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-home .home-list-card__desc {
    margin-bottom: 16px;
}

.site-home .home-list-card__chips {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.site-home .home-list-card__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #dce8f2;
    color: #264c6d;
    font-weight: 700;
}

.site-home .home-list-card__chip--available {
    background: #eefbf4;
    border-color: #d0ecdc;
    color: #0f7a5c;
}

.site-home .home-list-card__chip--warning {
    background: #fff8e8;
    border-color: #f3dfb1;
    color: #a97500;
}

.site-home .home-list-card__chip--soldout {
    background: #fff1f0;
    border-color: #efc8c7;
    color: #bc504d;
}

.site-home .slider_s .owl-pagination,
.site-home .slider_b .owl-pagination,
.site-home .slider_hotel_home .owl-pagination,
.site-home .slider_cruise_home .owl-pagination {
    margin-top: 6px;
    text-align: center;
}

.site-home .slider_s .owl-page span,
.site-home .slider_b .owl-page span,
.site-home .slider_hotel_home .owl-page span,
.site-home .slider_cruise_home .owl-page span {
    width: 10px;
    height: 10px;
    margin: 5px 4px;
    background: #c3d6e6;
    opacity: 1;
}

.site-home .slider_s .owl-page.active span,
.site-home .slider_b .owl-page.active span,
.site-home .slider_hotel_home .owl-page.active span,
.site-home .slider_cruise_home .owl-page.active span {
    background: #1d6f95;
}

.site-home .home-list-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #e7eff6;
}

.site-home .home-list-card__price {
    display: flex;
    flex-direction: column;
}

.site-home .home-list-card__price span {
    font-weight: 700;
    text-transform: uppercase;
}

.site-home .home-list-card__price del {
    color: #8a9baa;
    font-size: 12px;
}

.site-home .home-list-card__price strong {
    line-height: 1.25;
}

.site-home .home-promo-banner {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #deebf5;
    box-shadow: var(--cbe-shadow, 0 14px 32px rgba(17, 49, 78, .10));
}

.site-home .home-promo-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.site-home .home-list-card__media-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 220px;
    color: #7a90a4;
    font-size: 14px;
    text-align: center;
}

.site-home .home-list-card__facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.site-home .home-service-card--hotel .hotel-facility-chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: #f7fbff;
    border: 1px solid #dbe8f3;
    color: #22415d;
    font-size: 12px;
    font-weight: 700;
}

.site-home .home-service-card--hotel .hotel-facility-chip i {
    width: 14px;
    text-align: center;
    color: #1d6f95;
}

.site-home .home-service-card--hotel .hotel-facility-chip--muted {
    background: #fff;
    color: #708496;
}

@media (max-width: 991px) {
    .site-home .tit_home a,
    .site-home .tit_home > span,
    .site-home .tit_home_bot a,
    .site-home .tit_home_bot span {
        font-size: 24px;
    }

    .home-page-feature > .row {
        display: block;
    }

    .home-page-feature__content,
    .home-page-feature__media {
        width: 100%;
        float: none;
    }

    .home-page-feature {
        padding: 22px 18px;
    }

    .home-page-feature__content {
        margin-bottom: 18px;
    }

    .home-page-feature__image-wrap,
    .home-page-feature__no-image,
    .home-page-feature__image-wrap img {
        width: 100%;
        min-height: 280px;
        height: 280px;
    }
}

@media (max-width: 767px) {
    .site-home .home-slider-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-home .home-slider-more {
        font-size: 13px;
    }

    .site-home .tit_home a,
    .site-home .tit_home > span,
    .site-home .tit_home_bot a,
    .site-home .tit_home_bot span {
        font-size: 22px;
    }

    .site-home .home-news-cover {
        margin: -14px -14px 14px;
        border-radius: 18px 18px 0 0;
    }

    .site-home .home-news-cover img {
        height: 140px;
    }

    .home-page-feature__title {
        font-size: 26px;
    }

    .home-page-feature__description {
        font-size: 15px;
    }

    .home-page-feature__excerpt {
        font-size: 13px;
    }

    .site-home .slider_s,
    .site-home .slider_b,
    .site-home .slider_hotel_home,
    .site-home .slider_cruise_home {
        margin: 0 -6px;
    }

    .site-home .slider_s .owl-item,
    .site-home .slider_b .owl-item,
    .site-home .slider_hotel_home .owl-item,
    .site-home .slider_cruise_home .owl-item {
        padding: 4px 6px 12px;
    }
}

/* Home list card refresh: cleaner hierarchy, lighter meta, softer CTA. */
.site-home .home-list-card__media {
    border-radius: var(--cbe-radius-lg, 24px) var(--cbe-radius-lg, 24px) 0 0;
}

.site-home .home-list-card__media:after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 34%;
    background: linear-gradient(180deg, rgba(12, 28, 45, 0) 0%, rgba(12, 28, 45, .14) 100%);
    pointer-events: none;
}

.site-home .home-list-card__badge {
    padding: 9px 13px;
    background: rgba(16, 41, 65, .82);
    box-shadow: var(--cbe-shadow, 0 14px 32px rgba(17, 49, 78, .10));
}

.site-home .home-list-card__body {
    gap: 0;
}

.site-home .home-list-card__title {
    margin-bottom: 12px;
    font-size: 21px;
    line-height: 1.45;
}

.site-home .home-list-card__title a {
    color: var(--cbe-primary, #16324f);
}

.site-home .home-list-card__title a:hover {
    color: #0f68c8;
}

.site-home .home-list-card__meta {
    gap: 8px 10px;
    margin-bottom: 14px;
    color: var(--cbe-muted, #5d7285);
}

.site-home .home-list-card__meta span {
    padding: 0;
    border: 0;
    border-bottom: 1px dashed #dbe6ef;
    border-radius: 0;
    background: transparent;
    color: inherit;
    width: 100%;
    padding-bottom: 8px;
}

.site-home .home-list-card__meta span i.fa {
    color: var(--cbe-accent, #1d6f95);
}

.site-home .home-list-card__meta span strong {
    color: var(--cbe-ink, #17324d);
    font-weight: 700;
}

.site-home .home-list-card__chips {
    gap: 9px;
    margin-bottom: 16px;
}

.site-home .home-list-card__chip {
    padding: 7px 12px;
    border-radius: var(--cbe-radius-xs, 12px);
    background: var(--cbe-surface-soft, #f5f9fc);
    border-color: var(--cbe-line, #dbe8f2);
    font-size: 11px;
    letter-spacing: .01em;
}

.site-home .home-list-card__desc {
    color: var(--cbe-muted, #617587);
    line-height: 1.88;
}

.site-home .home-list-card__footer {
    align-items: center;
    border-top-color: var(--cbe-line, #e8f0f6);
}

.site-home .home-list-card__price {
    gap: 5px;
}

.site-home .home-list-card__price span {
    color: var(--cbe-muted-soft, #7a8ea0);
    font-size: 11px;
    letter-spacing: .08em;
}

.site-home .home-list-card__price del {
    font-size: 12px;
    line-height: 1.4;
}

.site-home .home-list-card__price strong {
    color: var(--cbe-success, #0c7d59);
    font-size: 20px;
    font-weight: 700;
}

.site-home .home-list-card__cta {
    min-width: 126px;
}

@media (max-width: 767px) {
    .site-home .home-list-card__title {
        font-size: 19px;
    }

    .site-home .home-list-card__footer {
        align-items: flex-start;
    }
}

/* Home module labels: keep section labels readable after legacy title overrides. */
.site-home .home-slider-section .home-slider-toolbar .tit_home,
.site-home .tit_home_bot {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.site-home .home-slider-section .home-slider-toolbar .tit_home .home-section-kicker,
.site-home .tit_home_bot .home-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: auto;
    padding: 6px 10px;
    border: 1px solid #d7e7f4;
    border-radius: 999px;
    background: #f4f9fe;
    color: #607d96;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-home .home-slider-section .home-slider-toolbar .tit_home .home-section-kicker i,
.site-home .tit_home_bot .home-section-kicker i {
    color: #1d6f95;
    font-size: 13px;
}

.site-home .home-list-card__module {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: calc(100% - 28px);
    padding: 8px 12px;
    border-radius: var(--cbe-radius-pill, 999px);
    background: rgba(255, 255, 255, .92);
    color: var(--cbe-primary, #16324f);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: var(--cbe-shadow, 0 14px 32px rgba(17, 49, 78, .10));
    backdrop-filter: blur(6px);
}

.site-home .home-list-card__module i {
    color: var(--cbe-accent, #1d6f95);
}

/* Unified Home service cards: tour, bus, hotel and cruise use one display pattern. */
.site-home .home-service-card {
    display: flex;
    flex-direction: column;
    min-height: 590px;
}

.site-home .home-service-card:hover {
    transform: translateY(-4px);
}

.site-home .home-service-card .home-list-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    min-height: 245px;
    margin: 12px 12px 0;
    border-radius: 24px;
    background:
        linear-gradient(135deg, #e7f6fb 0%, #f6fbfe 100%);
    border: 1px solid #d5e8f2;
    overflow: hidden;
    isolation: isolate;
    transform: none;
}

.site-home .home-service-card .home-list-card__media img,
.site-home .home-service-card .home-list-card__media-empty {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 245px;
    object-fit: cover;
    object-position: center center;
    border-radius: 0 !important;
    transform-origin: center center;
}

.site-home .home-service-card .home-list-card__badge {
    z-index: 4;
}

.site-home .home-service-card .home-list-card__module {
    display: none;
}

.site-home .home-service-card .home-list-card__media:after {
    content: "";
    position: absolute;
    inset: var(--cbe-image-frame-inset, 18px);
    z-index: 5;
    height: auto;
    display: block;
    box-sizing: border-box;
    border: 1px solid var(--cbe-image-frame-border, rgba(255,255,255,.58));
    border-radius: calc(var(--cbe-image-frame-radius, 24px) - 6px);
    background: none;
    box-shadow: none;
    transform: none;
    transform-origin: center;
    transition: none;
    pointer-events: none;
    will-change: auto;
}

.site-home .home-service-card .home-list-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    padding: 16px 18px 18px;
}

.site-home .home-service-card .home-list-card__title {
    min-height: 58px;
    margin-bottom: 12px;
    font-size: 19px;
    line-height: 1.48;
    font-weight: 800;
}

.site-home .home-service-card .home-list-card__title a {
    color: #102f4a;
}

.site-home .home-service-card .home-list-card__meta {
    display: grid;
    gap: 0;
    margin-bottom: 16px;
}

.site-home .home-service-card .home-list-card__meta span {
    display: flex;
    align-items: baseline;
    gap: 8px;
    min-height: 38px;
    padding: 8px 0;
    border: 0;
    border-bottom: 1px dashed #d6e4ef;
    color: #58718a;
    font-size: 14px;
    line-height: 1.5;
    white-space: nowrap;
}

.site-home .home-service-card .home-list-card__meta span:nth-child(n+4) {
    display: none;
}

.site-home .home-service-card .home-list-card__meta i.fa {
    width: 16px;
    min-width: 16px;
    color: #1d6f95;
    font-size: 14px;
    text-align: center;
}

.site-home .home-service-card .home-list-card__meta strong,
.site-home .home-service-card .home-list-card__desc strong {
    color: #102f4a;
    font-weight: 800;
}

.site-home .home-service-card .home-list-card__desc {
    position: relative;
    display: -webkit-box;
    height: 44.8px;
    max-height: 44.8px;
    min-height: 44.8px;
    margin-bottom: 12px;
    padding: 0 0 0 28px;
    border-bottom: 0;
    color: #58718a;
    font-size: 14px;
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.site-home .home-service-card .home-list-card__desc:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    border-bottom: 1px dashed #d6e4ef;
}

.site-home .home-service-card .home-list-card__desc i.fa {
    position: absolute;
    top: 3px;
    left: 0;
    margin-right: 0;
    color: #1d6f95;
}

.site-home .home-service-card .home-list-card__footer {
    min-height: 50px;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: nowrap;
}

.site-home .home-service-card .home-list-card__price {
    flex: 0 1 auto;
    gap: 2px;
    min-width: 0;
}

.site-home .home-service-card .home-list-card__price del {
    color: #6f8191;
    font-size: 14px;
    line-height: 1.2;
}

.site-home .home-service-card .home-list-card__price strong {
    color: #008060;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
}

.site-home .home-service-card .home-list-card__price span {
    color: #61758a;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
}

.site-home .home-service-card .home-list-card__cta {
    flex: 0 0 auto;
    min-width: 126px;
    font-size: 14px;
    font-weight: 800;
}

.site-home .home-list-card__quick-actions {
    display: none;
}

@media (max-width: 767px) {
    .site-home > .container {
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }

    .site-home .home-slider-shell {
        padding: 10px 0 18px;
    }

    .site-home .slider_s,
    .site-home .slider_b,
    .site-home .slider_hotel_home,
    .site-home .slider_cruise_home {
        margin: 0;
    }

    .site-home .slider_s .owl-item,
    .site-home .slider_b .owl-item,
    .site-home .slider_hotel_home .owl-item,
    .site-home .slider_cruise_home .owl-item {
        padding: 4px 2px 12px;
    }

    .site-home .home-service-card {
        min-height: 0;
        border-radius: 24px;
    }

    .site-home .home-service-card .home-list-card__media {
        min-height: 210px;
        margin: 10px 10px 0;
        border-radius: 20px;
    }

    .site-home .home-service-card .home-list-card__media img,
    .site-home .home-service-card .home-list-card__media-empty {
        min-height: 210px;
        border-radius: 20px;
    }

    .site-home .home-service-card .home-list-card__body {
        padding: 16px 14px 18px;
    }

    .site-home .home-service-card .home-list-card__title {
        min-height: 0;
        font-size: 20px;
        line-height: 1.38;
    }

    .site-home .home-service-card .home-list-card__meta span {
        min-height: 0;
        font-size: 15px;
    }

    .site-home .home-service-card .home-list-card__footer {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .site-home .home-service-card .home-list-card__cta {
        width: 100%;
        min-height: 58px;
    }
}

/* Modern section toolbar for home sliders. */
.site-home .home-slider-section .home-slider-toolbar,
.site-home .home-contact-map-section .home-slider-toolbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 22px;
    padding: 18px 20px;
    overflow: hidden;
    border: 1px solid #dbe8f2;
    border-radius: 26px;
    background:
        radial-gradient(circle at 8% 18%, rgba(29,111,149,.13), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f7fbff 58%, #eef7fc 100%);
    box-shadow: var(--cbe-shadow, 0 14px 32px rgba(17, 49, 78, .10));
}

.site-home .home-slider-section .home-slider-toolbar:before,
.site-home .home-contact-map-section .home-slider-toolbar:before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, #1d6f95 0%, #2d6d96 100%);
}

.site-home .home-slider-section .home-slider-toolbar:after,
.site-home .home-contact-map-section .home-slider-toolbar:after {
    content: "";
    position: absolute;
    right: -72px;
    top: -96px;
    width: 210px;
    height: 210px;
    border-radius: 999px;
    background: rgba(45,109,150,.09);
    pointer-events: none;
}

.site-home .home-slider-section .home-slider-toolbar__main,
.site-home .home-contact-map-section .home-slider-toolbar__main {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.site-home .home-slider-section .home-slider-toolbar__icon,
.site-home .home-contact-map-section .home-slider-toolbar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    min-width: 64px;
    height: 64px;
    border-radius: 22px;
    background: linear-gradient(135deg, #16324f 0%, #1d6f95 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,.5);
    box-shadow: var(--cbe-shadow, 0 14px 32px rgba(17, 49, 78, .10));
}

.site-home .home-slider-section .home-slider-toolbar__icon i,
.site-home .home-contact-map-section .home-slider-toolbar__icon i {
    font-size: 30px;
    line-height: 1;
}

.site-home .home-slider-section .home-slider-toolbar__text,
.site-home .home-contact-map-section .home-slider-toolbar__text {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.site-home .home-slider-section .home-slider-toolbar .home-section-kicker,
.site-home .home-contact-map-section .home-slider-toolbar .home-section-kicker {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 7px;
    width: auto;
    min-height: 28px;
    padding: 5px 11px;
    border: 1px solid #d7e7f4;
    border-radius: 999px;
    background: rgba(255,255,255,.86);
    color: #5b7891;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.site-home .home-slider-section .home-slider-toolbar .home-section-kicker i,
.site-home .home-contact-map-section .home-slider-toolbar .home-section-kicker i {
    color: #1d6f95;
    font-size: 13px;
}

.site-home .home-slider-section .home-slider-toolbar .tit_home,
.site-home .home-contact-map-section .home-slider-toolbar .tit_home {
    display: block;
    margin: 0;
    padding: 0;
    min-width: 0;
    line-height: 1.15;
}

.site-home .home-slider-section .home-slider-toolbar .tit_home > a,
.site-home .home-contact-map-section .home-slider-toolbar .tit_home > a {
    display: block;
    max-width: 100%;
    color: #102f4a;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0;
    text-decoration: none;
}

.site-home .home-slider-section .home-slider-toolbar .tit_home > a:hover,
.site-home .home-slider-section .home-slider-toolbar .tit_home > a:focus,
.site-home .home-contact-map-section .home-slider-toolbar .tit_home > a:hover,
.site-home .home-contact-map-section .home-slider-toolbar .tit_home > a:focus {
    color: #0f5b86;
    text-decoration: none;
}

.site-home .home-slider-section .home-slider-more,
.site-home .home-contact-map-section .home-slider-more {
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
    min-height: 48px;
}

@media (max-width: 767px) {
    .site-home .home-slider-section .home-slider-toolbar,
    .site-home .home-contact-map-section .home-slider-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 16px 16px 18px;
        border-radius: 22px;
    }

    .site-home .home-slider-section .home-slider-toolbar__icon,
    .site-home .home-contact-map-section .home-slider-toolbar__icon {
        width: 48px;
        min-width: 48px;
        height: 48px;
        border-radius: 17px;
    }

    .site-home .home-slider-section .home-slider-toolbar__icon i,
    .site-home .home-contact-map-section .home-slider-toolbar__icon i {
        font-size: 23px;
    }

    .site-home .home-slider-section .home-slider-toolbar .tit_home > a,
    .site-home .home-contact-map-section .home-slider-toolbar .tit_home > a {
        font-size: 24px;
    }

    .site-home .home-slider-section .home-slider-more {
        width: 100%;
    }
}

/* Home news refresh: align news section with tour/bus visual system. */
.site-home .home-news-section {
    margin: 36px 0 24px;
}

.site-home .home-news-section .home-news-toolbar {
    margin-bottom: 22px;
}

.site-home .home-news-section .home-news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, .9fr);
    gap: 22px;
    align-items: stretch;
}

.site-home .home-news-section .home-news-featured {
    display: grid;
    grid-template-columns: minmax(280px, .95fr) minmax(0, 1fr);
    gap: 22px;
    min-height: 360px;
    padding: 18px;
}

.site-home .home-news-section .home-news-featured .img_news_hot {
    position: relative;
    display: block;
    float: none;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 318px;
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #edf4f9;
}

.site-home .home-news-section .home-news-featured .img_news_hot:after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 36%;
    background: linear-gradient(180deg, rgba(16,47,74,0) 0%, rgba(16,47,74,.18) 100%);
    pointer-events: none;
}

.site-home .home-news-section .home-news-featured .img_news_hot img {
    width: 100%;
    height: 100%;
    min-height: 318px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform .35s ease;
}

.site-home .home-news-section .home-news-featured:hover .img_news_hot img,
.site-home .home-news-section .box_news_home:hover .img_news_home img {
    transform: scale(1.04);
}

.site-home .home-news-section .home-news-featured .sub_news_hot {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    padding: 8px 2px;
}

.site-home .home-news-section .home-news-badge {
    width: fit-content;
    margin: 0 0 14px;
    padding: 7px 12px;
    border: 1px solid #d7e7f4;
    border-radius: 999px;
    background: #f5faff;
    color: #607d96;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.site-home .home-news-section .home-news-badge i,
.site-home .home-news-section .day_news_hot i,
.site-home .home-news-section .day_news_home i {
    color: #1d6f95;
}

.site-home .home-news-section .name_news_hot {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 900;
}

.site-home .home-news-section .name_news_hot a,
.site-home .home-news-section .name_news_home a {
    color: #102f4a;
    text-decoration: none;
}

.site-home .home-news-section .name_news_hot a:hover,
.site-home .home-news-section .name_news_home a:hover {
    color: #0f5b86;
    text-decoration: none;
}

.site-home .home-news-section .day_news_hot,
.site-home .home-news-section .day_news_home {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 12px;
    color: #6f8498;
    font-size: 13px;
    font-weight: 700;
}

.site-home .home-news-section .des_news_hot {
    display: -webkit-box;
    max-height: none;
    overflow: hidden;
    color: #415a6d;
    font-size: 15px;
    line-height: 1.8;
    text-align: left;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.site-home .home-news-section .home-news-featured__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px dashed #d6e4ef;
}

.site-home .home-news-section .home-news-featured__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid #d7e7f4;
    border-radius: 999px;
    background: #f5faff;
    color: #58718a;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.site-home .home-news-section .home-news-featured__meta i {
    color: #1d6f95;
}

.site-home .home-news-section .home-news-featured__cta {
    font-size: 14px;
    font-weight: 900;
}

.site-home .home-news-section .home-news-list {
    --home-news-item-height: 132px;
    --home-news-item-gap: 14px;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
}

.site-home .home-news-section .home-news-list-window {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.site-home .home-news-section .home-news-list-window:not(.is-sliding) {
    overflow: visible;
}

.site-home .home-news-section .home-news-list-window.is-sliding {
    height: calc((var(--home-news-item-height, 132px) * 4) + (var(--home-news-item-gap, 14px) * 3));
    padding: 10px 8px;
    box-sizing: border-box;
    -webkit-mask-image: none;
    mask-image: none;
}

.site-home .home-news-section .home-news-list li {
    flex: 0 0 auto;
    margin: 0;
    margin-bottom: var(--home-news-item-gap, 14px);
    list-style: none;
}

.site-home .home-news-section .home-news-list-window.is-sliding .home-news-list {
    animation: homeNewsVerticalSlide 34s linear infinite;
    will-change: transform;
}

.site-home .home-news-section .home-news-list-window.is-sliding:hover .home-news-list {
    animation-play-state: paused;
}

.site-home .home-news-section .home-news-list-window.is-sliding .box_news_home {
    height: var(--home-news-item-height, 132px);
    min-height: 0;
}

@keyframes homeNewsVerticalSlide {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(0, -50%, 0);
    }
}

.site-home .home-news-section .box_news_home {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
    height: 100%;
    min-height: 150px;
    padding: 14px;
}

.site-home .home-news-section .home-news-list-window .box_news_home:hover,
.site-home .home-news-section .home-news-list-window .box_news_home:focus-within {
    z-index: 2;
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(17, 49, 78, .16);
}

.site-home .home-news-section .img_news_home {
    display: block;
    float: none;
    width: 100%;
    max-width: none;
    height: 104px;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #edf4f9;
}

.site-home .home-news-section .img_news_home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    outline: 0 !important;
    box-shadow: none !important;
    transition: transform .35s ease;
}

.site-home .home-news-section .img_news_home:after {
    content: none !important;
}

.site-home .home-news-section .sub_news_home {
    min-width: 0;
    overflow: hidden;
}

.site-home .home-news-section .name_news_home {
    display: -webkit-box;
    max-height: none;
    margin: 0 0 8px;
    overflow: hidden;
    color: #102f4a;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.38;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.site-home .home-news-section .des_news_home {
    display: -webkit-box;
    max-height: none;
    overflow: hidden;
    color: #58718a;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 991px) {
    .site-home .home-news-section .home-news-layout,
    .site-home .home-news-section .home-news-featured {
        grid-template-columns: 1fr;
    }

    .site-home .home-news-section .home-news-featured .img_news_hot {
        min-height: 260px;
    }

    .site-home .home-news-section .home-news-featured .img_news_hot img {
        min-height: 260px;
    }
}

@media (max-width: 520px) {
    .site-home .home-news-section .home-news-featured {
        padding: 14px;
        border-radius: 20px;
    }

    .site-home .home-news-section .box_news_home {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .site-home .home-news-section .home-news-featured__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .site-home .home-news-section .home-news-featured__meta,
    .site-home .home-news-section .home-news-featured__cta {
        width: 100%;
    }

    .site-home .home-news-section .img_news_home {
        height: 86px;
        border-radius: 14px;
    }

    .site-home .home-news-section .img_news_home img {
        border-radius: 14px;
    }
}

/* Refine featured news card: tighter composition and full image cover. */
.site-home .home-news-section .home-news-featured {
    grid-template-columns: minmax(320px, .88fr) minmax(0, 1fr);
    gap: 30px;
    min-height: 360px;
    padding: 22px;
}

.site-home .home-news-section .home-news-featured .img_news_hot {
    position: relative;
    display: block;
    height: 100%;
    min-height: 318px;
    overflow: hidden;
    border-radius: 20px;
    background: #eaf2f8;
    box-shadow: var(--cbe-shadow, 0 14px 32px rgba(17, 49, 78, .10));
}

.site-home .home-news-section .home-news-featured .img_news_hot img,
.site-home .home-news-section .home-news-featured .img_news_hot > img.h_n1 {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    border-radius: 22px;
}

.site-home .home-news-section .home-news-featured .sub_news_hot {
    padding: 4px 2px 2px;
}

.site-home .home-news-section .name_news_hot {
    margin-bottom: 14px;
    font-size: 28px;
    line-height: 1.22;
}

.site-home .home-news-section .day_news_hot {
    margin-bottom: 18px;
    color: #58718a;
    font-size: 14px;
}

.site-home .home-news-section .des_news_hot {
    color: #38546e;
    font-size: 15px;
    line-height: 1.75;
    -webkit-line-clamp: 4;
}

.site-home .home-news-section .home-news-featured__footer {
    margin-top: auto;
    padding-top: 20px;
}

body.cbe-site.cbe-page-home #site-content :where(.home-list-card__media,.home-page-feature__image-wrap,.home-gallery-card__image)::after {
    content: "";
    position: absolute;
    inset: var(--cbe-image-frame-inset, 18px) !important;
    z-index: 8;
    display: block;
    width: auto;
    height: auto;
    box-sizing: border-box;
    border: 1px solid var(--cbe-image-frame-border, rgba(255,255,255,.58)) !important;
    border-radius: calc(var(--cbe-image-frame-radius, 24px) - 6px) !important;
    background: none !important;
    box-shadow: none !important;
    opacity: 1;
    transform: none !important;
    pointer-events: none;
}

body.cbe-site.cbe-page-home #site-content :where(.home-news-section .home-news-featured .img_news_hot,.home-service-card .home-list-card__media) {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transform: none;
}

body.cbe-site.cbe-page-home #site-content :where(.home-news-section .home-news-featured .img_news_hot,.home-service-card .home-list-card__media) > img,
body.cbe-site.cbe-page-home #site-content .home-service-card .home-list-card__media > .home-list-card__media-empty {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center center;
    border-radius: 0 !important;
    transform-origin: center center;
}

body.cbe-site.cbe-page-home #site-content :where(.home-news-section .home-news-featured .img_news_hot,.home-service-card .home-list-card__media)::after {
    content: "";
    position: absolute;
    inset: var(--cbe-image-frame-inset, 18px) !important;
    z-index: 8;
    display: block;
    width: auto;
    height: auto;
    box-sizing: border-box;
    border: 1px solid var(--cbe-image-frame-border, rgba(255,255,255,.58)) !important;
    border-radius: calc(var(--cbe-image-frame-radius, 24px) - 6px) !important;
    background: none !important;
    box-shadow: none !important;
    opacity: 1;
    transform: none !important;
    transform-origin: center center;
    transition: none !important;
    pointer-events: none;
    will-change: auto;
}

body.cbe-site.cbe-page-home #site-content :where(.home-news-section .home-news-featured:hover .img_news_hot,.home-news-section .home-news-featured:focus-within .img_news_hot,.home-service-card:hover .home-list-card__media,.home-service-card:focus-within .home-list-card__media)::after {
    inset: var(--cbe-image-frame-inset, 18px) !important;
    border-radius: calc(var(--cbe-image-frame-radius, 24px) - 6px) !important;
    transform: none !important;
}

@media (max-width: 991px) {
    .site-home .home-news-section .home-news-featured {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .site-home .home-news-section .home-news-featured .img_news_hot {
        min-height: 260px;
        aspect-ratio: 16 / 9;
    }
}

.site-home .home-slider-more,
.site-home .home-slider-section .home-slider-more {
    min-width: 132px;
}

.site-home .button_search {
    border: 0;
}

.site-home {
    background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

.site-home .home-slider-section .home-slider-shell {
    box-shadow: none;
}

.site-home .home-page-feature {
    background:
        radial-gradient(circle at 92% 0%, rgba(29, 111, 149, .11) 0, rgba(29, 111, 149, 0) 28%),
        linear-gradient(135deg, #ffffff 0%, #ffffff 58%, #f7fbfe 100%);
}

.site-home .home-page-feature__image-wrap,
.site-home .home-page-feature__no-image {
    box-shadow: 0 14px 34px rgba(17, 49, 78, .085);
}

.site-home .home-slider-section .home-slider-shell:before {
    display: none;
    background: none;
}

/* Owl Carousel v1 needs block wrapper + floated items on desktop.
   Keep card internals flex, but do not flex the Owl layout containers. */
@media (min-width: 768px) {
    .site-home .home-slider-section .slider_s .owl-wrapper,
    .site-home .home-slider-section .slider_b .owl-wrapper,
    .site-home .slider_s .owl-wrapper,
    .site-home .slider_b .owl-wrapper {
        display: block !important;
        align-items: initial !important;
    }

    .site-home .home-slider-section .slider_s .owl-item,
    .site-home .home-slider-section .slider_b .owl-item,
    .site-home .slider_s .owl-item,
    .site-home .slider_b .owl-item {
        display: block !important;
        float: left !important;
        height: auto;
    }

    .site-home .home-slider-section .slider_s .owl-item > div,
    .site-home .home-slider-section .slider_b .owl-item > div,
    .site-home .slider_s .owl-item > *,
    .site-home .slider_b .owl-item > * {
        display: block !important;
        width: 100%;
    }

    .site-home .home-slider-section .slider_s .owl-item article.home-list-card,
    .site-home .home-slider-section .slider_b .owl-item article.home-list-card {
        display: flex !important;
        flex-direction: column;
        height: 100%;
    }
}

.site-home .home-news-cover,
.site-home .home-gallery-card__image,
.site-home .home-list-card__media,
.site-home .home-news-section .img_news_home,
.site-home .home-news-section .home-news-featured .img_news_hot {
    background: linear-gradient(135deg, #d7edf6 0%, #c7e4f1 100%);
}

.site-home .home-slider-section .home-slider-toolbar,
.site-home .home-news-section .home-news-toolbar,
.site-home .tit_home_bot {
    border-color: var(--cbe-line);
}

.site-home .home-slider-section .owl-wrapper-outer {
    overflow: hidden !important;
    padding-right: 1px !important;
    padding-left: 1px !important;
}

.site-home .home-slider-section .owl-item:hover {
    position: relative;
    z-index: 30;
}

/* Trial: roomier spacing between home modules without changing card internals. */
.site-home {
    --home-section-gap: 64px;
    --home-section-gap-tablet: 48px;
    --home-section-gap-mobile: 34px;
}

.site-home .home-slider-section,
.site-home .home-news-section,
.site-home .home-media,
.site-home .home-page-feature,
.site-home .home-contact-map-section {
    margin-top: var(--home-section-gap);
    margin-bottom: var(--home-section-gap);
}

.site-home .home-slider-section:first-child,
.site-home .home-news-section:first-child,
.site-home .home-media:first-child,
.site-home .home-page-feature:first-child,
.site-home .home-contact-map-section:first-child {
    margin-top: calc(var(--home-section-gap) * .55);
}

.site-home .home-contact-map-section__intro {
    margin: -6px 0 18px;
    color: #5f7284;
    font-size: 15px;
    line-height: 1.6;
}

.site-home .home-office-map {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .site-home {
        --home-section-gap: var(--home-section-gap-tablet);
    }
}

@media (max-width: 767px) {
    .site-home {
        --home-section-gap: var(--home-section-gap-mobile);
    }
}

/* Priority 3: unify Home cards across tour, bus, hotel and cruise modules. */
.site-home .home-list-card__media {
    aspect-ratio: 16 / 10;
    min-height: 0;
}

.site-home .home-list-card__media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.site-home .home-list-card__body {
    min-width: 0;
}

.site-home .home-list-card__title {
    min-height: 0;
}

.site-home .home-list-card__title a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow-wrap: anywhere;
}

.site-home .home-list-card__meta,
.site-home .home-list-card__chips,
.site-home .home-list-card__facilities {
    min-width: 0;
}

.site-home .home-list-card__meta span,
.site-home .home-list-card__chip,
.site-home .hotel-facility-chip {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.site-home .home-list-card__desc {
    display: -webkit-box;
    min-height: 44px;
    max-height: 44px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.site-home .home-list-card__footer {
    min-width: 0;
}

.site-home .home-list-card__price {
    min-width: 0;
}

.site-home .home-list-card__price strong {
    overflow-wrap: anywhere;
}

.site-home .home-list-card__cta {
    white-space: normal;
    text-align: center;
}

@media (max-width: 767px) {
    .site-home .home-slider-section {
        margin-right: 0;
        margin-left: 0;
    }

    .site-home .home-slider-section .home-slider-toolbar {
        gap: 12px;
        padding: 16px;
        border-radius: 20px;
    }

    .site-home .home-slider-section .home-slider-toolbar .tit_home > a {
        font-size: 22px;
        line-height: 1.25;
    }

    .site-home .home-slider-section .home-slider-more {
        width: 100%;
        min-height: 42px;
    }

    .site-home .home-list-card__body {
        padding: 15px;
    }

    .site-home .home-list-card__media,
    .site-home .home-list-card__media img {
        border-radius: 16px;
    }

    .site-home .home-list-card__footer {
        gap: 12px;
        align-items: stretch;
    }

    .site-home .home-list-card__cta {
        width: 100%;
        min-height: 42px;
    }
}

/* Keep home image frame fixed while the image itself zooms on hover. */
body.cbe-site.cbe-page-home #site-content :where(.home-news-section .home-news-featured .img_news_hot,.home-service-card .home-list-card__media) {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transform: none;
}

body.cbe-site.cbe-page-home #site-content :where(.home-news-section .home-news-featured .img_news_hot,.home-service-card .home-list-card__media) > img,
body.cbe-site.cbe-page-home #site-content .home-service-card .home-list-card__media > .home-list-card__media-empty {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center center;
    border-radius: 0 !important;
    transform-origin: center center;
}

body.cbe-site.cbe-page-home #site-content :where(.home-news-section .home-news-featured .img_news_hot,.home-service-card .home-list-card__media)::after {
    content: "";
    position: absolute;
    inset: var(--cbe-image-frame-inset, 18px) !important;
    z-index: 8;
    display: block;
    width: auto;
    height: auto;
    box-sizing: border-box;
    border: 1px solid var(--cbe-image-frame-border, rgba(255,255,255,.58)) !important;
    border-radius: calc(var(--cbe-image-frame-radius, 24px) - 6px) !important;
    background: none !important;
    box-shadow: none !important;
    opacity: 1;
    transform: none !important;
    transform-origin: center center;
    transition: none !important;
    pointer-events: none;
    will-change: auto;
}

body.cbe-site.cbe-page-home #site-content :where(.home-news-section .home-news-featured:hover .img_news_hot,.home-news-section .home-news-featured:focus-within .img_news_hot,.home-service-card:hover .home-list-card__media,.home-service-card:focus-within .home-list-card__media)::after {
    inset: var(--cbe-image-frame-inset, 18px) !important;
    border-radius: calc(var(--cbe-image-frame-radius, 24px) - 6px) !important;
    transform: none !important;
}

body.cbe-site.cbe-page-home #site-content .hotel-home-section .home-service-card--hotel .home-list-card__media,
body.cbe-site.cbe-page-home .site-home .hotel-home-section .home-service-card--hotel .home-list-card__media,
.site-home .hotel-home-section .home-service-card--hotel .home-list-card__media {
    --cbe-image-frame-radius: 24px;
    --cbe-image-frame-inset: 14px;
    --cbe-image-frame-border: rgba(255,255,255,.72);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

body.cbe-site.cbe-page-home #site-content .hotel-home-section .home-service-card--hotel .home-list-card__media > img,
body.cbe-site.cbe-page-home .site-home .hotel-home-section .home-service-card--hotel .home-list-card__media > img,
.site-home .hotel-home-section .home-service-card--hotel .home-list-card__media > img {
    border-radius: 0 !important;
    outline: 0 !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
}

body.cbe-site.cbe-page-home .site-home .hotel-home-section .home-service-card--hotel .home-list-card__badge,
.site-home .hotel-home-section .home-service-card--hotel .home-list-card__badge {
    z-index: 6;
}

body.cbe-site.cbe-page-home #site-content .hotel-home-section .home-service-card--hotel .home-list-card__media::before,
body.cbe-site.cbe-page-home .site-home .hotel-home-section .home-service-card--hotel .home-list-card__media::before,
.site-home .hotel-home-section .home-service-card--hotel .home-list-card__media::before {
    content: "";
    position: absolute;
    inset: var(--cbe-image-frame-inset, 14px) !important;
    z-index: 5;
    display: block;
    width: auto;
    height: auto;
    box-sizing: border-box;
    border: 1px solid var(--cbe-image-frame-border, rgba(255,255,255,.72)) !important;
    border-radius: calc(var(--cbe-image-frame-radius, 24px) - 6px) !important;
    background: none !important;
    box-shadow: 0 0 0 1px rgba(16,47,74,.10) !important;
    opacity: 1;
    transform: none !important;
    transform-origin: center center;
    transition: none !important;
    pointer-events: none;
    will-change: auto;
}

body.cbe-site.cbe-page-home #site-content .hotel-home-section .home-service-card--hotel:hover .home-list-card__media::before,
body.cbe-site.cbe-page-home #site-content .hotel-home-section .home-service-card--hotel:focus-within .home-list-card__media::before,
body.cbe-site.cbe-page-home .site-home .hotel-home-section .home-service-card--hotel:hover .home-list-card__media::before,
body.cbe-site.cbe-page-home .site-home .hotel-home-section .home-service-card--hotel:focus-within .home-list-card__media::before,
.site-home .hotel-home-section .home-service-card--hotel:hover .home-list-card__media::before,
.site-home .hotel-home-section .home-service-card--hotel:focus-within .home-list-card__media::before {
    inset: var(--cbe-image-frame-inset, 14px) !important;
    border-radius: calc(var(--cbe-image-frame-radius, 24px) - 6px) !important;
    transform: none !important;
}


/* Source: assets\css\home-modes\home-city-tour.css */
body.cbe-site-mode-city-tour .site-home {
    --home-mode-accent: #1d6f95;
    --home-mode-accent-strong: #0f6da8;
    --home-mode-soft: #edf9f5;
    --home-mode-ink: #132b44;
    background:
        linear-gradient(180deg, rgba(237, 249, 245, .86) 0, rgba(255, 255, 255, 0) 190px),
        #fff;
}

body.cbe-site-mode-city-tour .site-home .container {
    max-width: 1300px;
    padding: 50px 0px;
}

body.cbe-site-mode-city-tour .site-home .home-slider-section,
body.cbe-site-mode-city-tour .site-home .home-news-section,
body.cbe-site-mode-city-tour .site-home .home-media,
body.cbe-site-mode-city-tour .site-home .home-page-feature {
    margin-top: 76px;
}

body.cbe-site-mode-city-tour .site-home .home-slider-shell {
    padding-right: 15px;
    padding-left: 15px;
}

body.cbe-site-mode-city-tour .site-home :where(.slider_s,.slider_b,.slider_hotel_home,.slider_room_home,.slider_cruise_home,.slider_cabin_home,.slider_car_rental_home,.slider_location_home) {
    margin-right: 0;
    margin-left: 0;
}

body.cbe-site-mode-city-tour .site-home :where(.slider_s,.slider_b,.slider_hotel_home,.slider_room_home,.slider_cruise_home,.slider_cabin_home,.slider_car_rental_home,.slider_location_home) .owl-item {
    padding-right: 12px;
    padding-left: 12px;
}

body.cbe-site-mode-city-tour .site-home .home-slider-toolbar {
    align-items: flex-end;
    border-bottom: 1px solid rgba(22, 128, 106, .14);
    margin-bottom: 34px;
    padding-bottom: 16px;
}

body.cbe-site-mode-city-tour .site-home .home-slider-toolbar__icon,
body.cbe-site-mode-city-tour .site-home .home-section-kicker,
body.cbe-site-mode-city-tour .site-home .home-list-card__module {
    background: var(--home-mode-soft);
    color: var(--home-mode-accent);
}

body.cbe-site-mode-city-tour .site-home .home-list-card,
body.cbe-site-mode-city-tour .site-home .home-cruise-card {
    border-radius: 24px;
}

body.cbe-site-mode-city-tour .site-home .home-list-card__media,
body.cbe-site-mode-city-tour .site-home .home-list-card__media img {
    min-height: 190px;
}

body.cbe-site-mode-city-tour .site-home .home-list-card__price strong,
body.cbe-site-mode-city-tour .site-home .home-cruise-card__price strong {
    color: var(--home-mode-accent-strong);
}

body.cbe-site-mode-city-tour .site-home .home-service-card--tour .home-list-card__media,
body.cbe-site-mode-city-tour .site-home .home-service-card--tour .home-list-card__media img {
    min-height: 240px;
}

body.cbe-site-mode-city-tour .site-home .home-service-card--tour .home-list-card__body {
    gap: 9px;
}

body.cbe-site-mode-city-tour .site-home .home-service-card--tour .home-list-card__title {
    min-height: 44px;
}

body.cbe-site-mode-city-tour .site-home .home-service-card--tour .home-list-card__meta {
    display: grid;
    gap: 6px;
}

body.cbe-site-mode-city-tour .site-home .home-service-card--tour .home-list-card__meta span:nth-child(n+4),
body.cbe-site-mode-city-tour .site-home .home-service-card--tour .home-list-card__desc {
    display: none;
}

body.cbe-site-mode-city-tour .site-home .home-service-card--tour .home-list-card__footer {
    margin-top: 4px;
    padding-top: 10px;
}

body.cbe-site-mode-city-tour .site-home .home-service-card--tour .home-list-card__price strong {
    font-size: 21px;
}

body.cbe-site-mode-city-tour .site-home .home-service-card--tour .home-list-card__quick-actions {
    display: none;
}

body.cbe-site-mode-city-tour .site-home .home-service-card--tour .home-list-card__quick-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(22, 128, 106, .2);
    background: var(--home-mode-soft);
    color: var(--home-mode-accent-strong);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

body.cbe-site-mode-city-tour .site-home .home-service-card--tour .home-list-card__quick-action:first-child {
    background: var(--site-button-bg);
    color: #fff;
}

body.cbe-site-mode-city-tour .site-home .home-service-card--tour .home-list-card__quick-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(22, 128, 106, .16);
}

body.cbe-site-mode-city-tour .site-home .home-service-card--hotel,
body.cbe-site-mode-city-tour .site-home .home-service-card--bus {
    background: #fbfdff;
}

body.cbe-site-mode-city-tour .site-home .home-service-card--hotel .home-list-card__desc,
body.cbe-site-mode-city-tour .site-home .home-service-card--bus .home-list-card__desc {
    -webkit-line-clamp: 2;
}

body.cbe-site-mode-city-tour .site-home .home-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

body.cbe-site-mode-city-tour .site-home .home-media__col {
    display: flex;
}

body.cbe-site-mode-city-tour .site-home .home-media .mg_5_a {
    width: 100%;
    min-height: 0;
    padding: 28px 30px 30px;
    border-radius: 24px;
}

body.cbe-site-mode-city-tour .site-home .home-media .tit_home_bot {
    min-height: 86px;
    margin-bottom: 18px;
}

body.cbe-site-mode-city-tour .site-home .home-media .tit_home_bot > a,
body.cbe-site-mode-city-tour .site-home .home-media .tit_home_bot > span:not(.home-section-kicker) {
    font-size: 24px;
}

body.cbe-site-mode-city-tour .site-home .home-media .box_video_home,
body.cbe-site-mode-city-tour .site-home .home-media .box_video_home iframe {
    min-height: 426px;
    border-radius: 24px;
}

body.cbe-site-mode-city-tour .site-home .home-media .slider_album,
body.cbe-site-mode-city-tour .site-home .home-media .slider_album .owl-wrapper-outer,
body.cbe-site-mode-city-tour .site-home .home-media .slider_album .owl-wrapper,
body.cbe-site-mode-city-tour .site-home .home-media .slider_album .owl-item,
body.cbe-site-mode-city-tour .site-home .home-media .slider_album .item {
    height: 100%;
}

body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    height: 100%;
    gap: 16px;
}

body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-card {
    min-height: 0;
    border-radius: 24px;
}

body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-card__image {
    height: 100%;
    aspect-ratio: auto;
    border-radius: 24px;
}

body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-card:nth-child(n+5) {
    display: none;
}

body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-card__image:after {
    inset: var(--cbe-image-frame-inset, 18px);
    height: auto;
    box-sizing: border-box;
    z-index: 2;
    border: 1px solid var(--cbe-image-frame-border, rgba(255, 255, 255, .58));
    background: none;
    border-radius: calc(var(--cbe-image-frame-radius, 24px) - 6px);
    box-shadow: none;
    opacity: 1;
    transform: none;
    transform-origin: center;
    transition: none;
    will-change: auto;
}

body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-card__image:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 50% 52%, rgba(12, 30, 48, .48) 0, rgba(12, 30, 48, .24) 46%, rgba(12, 30, 48, .08) 100%);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-card__title {
    position: absolute;
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    z-index: 3;
    display: flex;
    width: calc(100% - 52px);
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 18px;
    background: rgba(13, 35, 54, .58);
    opacity: 0;
    text-align: center;
    transform: translate(-50%, -42%);
    transition: opacity .25s ease, transform .25s ease, background .25s ease;
    pointer-events: none;
    backdrop-filter: blur(6px);
}

body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-card__title a {
    display: -webkit-box;
    max-width: 100%;
    overflow: hidden;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .42);
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-card:hover .home-gallery-card__image:after,
body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-card:focus-within .home-gallery-card__image:after {
    opacity: 1;
    transform: none;
}

body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-card:hover .home-gallery-card__image:before,
body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-card:focus-within .home-gallery-card__image:before {
    opacity: 1;
}

body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-card:hover .home-gallery-card__title,
body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-card:focus-within .home-gallery-card__title {
    opacity: 1;
    transform: translate(-50%, -50%);
    background: rgba(13, 35, 54, .68);
}

@media (max-width: 767px) {
    body.cbe-site-mode-city-tour .site-home .home-slider-section,
    body.cbe-site-mode-city-tour .site-home .home-news-section,
    body.cbe-site-mode-city-tour .site-home .home-media,
    body.cbe-site-mode-city-tour .site-home .home-page-feature {
        margin-top: 46px;
    }

    body.cbe-site-mode-city-tour .site-home .home-slider-shell {
        padding-right: 8px;
        padding-left: 8px;
    }

    body.cbe-site-mode-city-tour .site-home :where(.slider_s,.slider_b,.slider_hotel_home,.slider_room_home,.slider_cruise_home,.slider_cabin_home,.slider_car_rental_home,.slider_location_home) {
        margin-right: -6px;
        margin-left: -6px;
    }

    body.cbe-site-mode-city-tour .site-home :where(.slider_s,.slider_b,.slider_hotel_home,.slider_room_home,.slider_cruise_home,.slider_cabin_home,.slider_car_rental_home,.slider_location_home) .owl-item {
        padding-right: 6px;
        padding-left: 6px;
    }

    body.cbe-site-mode-city-tour .site-home .home-slider-toolbar {
        align-items: flex-start;
        margin-bottom: 24px;
    }

    body.cbe-site-mode-city-tour .site-home .home-media {
        grid-template-columns: minmax(0, 1fr);
    }

    body.cbe-site-mode-city-tour .site-home .home-media .mg_5_a {
        padding: 20px;
    }

    body.cbe-site-mode-city-tour .site-home .home-media .tit_home_bot {
        min-height: 0;
    }

    body.cbe-site-mode-city-tour .site-home .home-list-card__media,
    body.cbe-site-mode-city-tour .site-home .home-list-card__media img {
        min-height: 180px;
    }

    body.cbe-site-mode-city-tour .site-home .home-media .box_video_home,
    body.cbe-site-mode-city-tour .site-home .home-media .box_video_home iframe {
        min-height: 240px;
    }

    body.cbe-site-mode-city-tour .site-home .home-media .slider_album,
    body.cbe-site-mode-city-tour .site-home .home-media .slider_album .owl-wrapper-outer,
    body.cbe-site-mode-city-tour .site-home .home-media .slider_album .owl-wrapper,
    body.cbe-site-mode-city-tour .site-home .home-media .slider_album .owl-item,
    body.cbe-site-mode-city-tour .site-home .home-media .slider_album .item,
    body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-grid {
        height: auto;
    }

    body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-card__image {
        height: auto;
        aspect-ratio: 1.48 / 1;
    }

    body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-card__title {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-card__image:before {
        opacity: 1;
    }

    body.cbe-site-mode-city-tour .site-home .home-media .home-gallery-card__image:after {
        opacity: 1;
    }
}

body.cbe-site-mode-city-tour .site-home .home-news-section .home-news-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

body.cbe-site-mode-city-tour .site-home .home-news-section .home-news-featured {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 0;
    padding: 22px;
    border-radius: 24px;
}

body.cbe-site-mode-city-tour .site-home .home-news-section .home-news-featured .img_news_hot {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    box-shadow: none;
}

body.cbe-site-mode-city-tour .site-home .home-news-section .home-news-featured .img_news_hot img,
body.cbe-site-mode-city-tour .site-home .home-news-section .home-news-featured .img_news_hot > img.h_n1 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
}

body.cbe-site-mode-city-tour .site-home .home-news-section .home-news-featured .sub_news_hot {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
    padding: 18px 2px 0;
}

body.cbe-site-mode-city-tour .site-home .home-news-section .name_news_hot {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.24;
}

body.cbe-site-mode-city-tour .site-home .home-news-section .day_news_hot {
    margin-bottom: 12px;
}

body.cbe-site-mode-city-tour .site-home .home-news-section .des_news_hot {
    font-size: 14px;
    line-height: 1.65;
    -webkit-line-clamp: 3;
}

body.cbe-site-mode-city-tour .site-home .home-news-section .home-news-featured__footer {
    margin-top: 18px;
    padding-top: 16px;
}

body.cbe-site-mode-city-tour .site-home .home-news-section .box_news_home {
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 132px;
    padding: 14px;
    border-radius: 24px;
}

body.cbe-site-mode-city-tour .site-home .home-news-section .img_news_home {
    height: 104px;
    border-radius: 24px;
}

body.cbe-site-mode-city-tour .site-home .home-news-section .home-news-list {
    --home-news-item-height: 132px;
    --home-news-item-gap: 14px;
}

body.cbe-site-mode-city-tour .site-home .home-news-section .home-news-list-window.is-sliding .box_news_home {
    min-height: 0;
}

@media (min-width: 992px) {
    body.cbe-site-mode-city-tour .site-home .home-news-section .home-news-list-window,
    body.cbe-site-mode-city-tour .site-home .home-news-section .home-news-list-window.is-sliding {
        min-height: 0;
    }

    body.cbe-site-mode-city-tour .site-home .home-news-section .home-news-list-window.is-sliding {
        -webkit-mask-image: none;
        mask-image: none;
    }

    body.cbe-site-mode-city-tour .site-home .home-news-section .home-news-list-window.is-sliding .home-news-list {
        height: auto;
        animation: none;
        will-change: transform;
    }

    body.cbe-site-mode-city-tour .site-home .home-news-section .home-news-list li {
        display: block;
        flex: 0 0 auto;
        width: 100%;
        height: var(--home-news-item-height, 132px);
        min-height: 0;
        margin: 0 0 var(--home-news-item-gap, 14px);
        overflow: visible;
    }

    body.cbe-site-mode-city-tour .site-home .home-news-section .home-news-list-window .box_news_home,
    body.cbe-site-mode-city-tour .site-home .home-news-section .home-news-list-window.is-sliding .box_news_home {
        width: 100%;
        height: var(--home-news-item-height, 132px);
        min-height: 0;
    }
}

body.cbe-site-mode-city-tour .site-home .home-news-section .img_news_home img {
    border-radius: 24px;
}

body.cbe-site-mode-city-tour .site-home .home-news-section .name_news_home {
    font-size: 15px;
}

body.cbe-site-mode-city-tour .site-home .home-news-section .des_news_home {
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 991px) {
    body.cbe-site-mode-city-tour .site-home .home-news-section .home-news-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    body.cbe-site-mode-city-tour .site-home .home-news-section .box_news_home {
        grid-template-columns: 92px minmax(0, 1fr);
    }
}

body.cbe-site-mode-city-tour .site-home .home-services-combo {
    margin-top: 0px;
    padding: 50px 0;
    background:
        linear-gradient(135deg, rgba(22, 128, 106, .1), rgba(255, 255, 255, 0) 48%),
        #f7fbfa;
    border-top: 1px solid rgba(22, 128, 106, .12);
    border-bottom: 1px solid rgba(22, 128, 106, .12);
}

body.cbe-site-mode-city-tour .site-home .hsc-head {
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

body.cbe-site-mode-city-tour .site-home .hsc-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    color: var(--home-mode-accent-strong);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body.cbe-site-mode-city-tour .site-home .hsc-head h2 {
    margin: 12px 0 8px;
    color: var(--home-mode-ink);
    font-size: 32px;
    line-height: 1.2;
}

body.cbe-site-mode-city-tour .site-home .hsc-head p {
    margin: 0;
    color: #5e7584;
    font-size: 15px;
}

body.cbe-site-mode-city-tour .site-home .hsc-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 22px;
    align-items: stretch;
}

body.cbe-site-mode-city-tour .site-home .hsc-panel {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 26px;
    border: 1px solid rgba(22, 128, 106, .18);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(23, 59, 77, .08);
}

body.cbe-site-mode-city-tour .site-home .hsc-panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--home-mode-ink);
    font-size: 18px;
    font-weight: 900;
}

body.cbe-site-mode-city-tour .site-home .hsc-panel-title i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 24px;
    background: var(--home-mode-soft);
    color: var(--home-mode-accent);
}

body.cbe-site-mode-city-tour .site-home .hsc-table-wrap {
    overflow-x: auto;
    margin-bottom: 18px;
}

body.cbe-site-mode-city-tour .site-home .hsc-table {
    width: 100%;
    min-width: 550px;
    margin: 0;
    border-collapse: collapse;
}

body.cbe-site-mode-city-tour .site-home .hsc-table th {
    padding: 11px 8px;
    border-bottom: 1px solid rgba(23, 59, 77, .1);
    color: #6f8593;
    font-size: 11px;
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
}

body.cbe-site-mode-city-tour .site-home .hsc-table td {
    padding: 13px 8px;
    border-bottom: 1px solid rgba(23, 59, 77, .08);
    color: #405b6a;
    font-size: 13px;
    line-height: 1.35;
    vertical-align: middle;
}

body.cbe-site-mode-city-tour .site-home .hsc-table tr:last-child td {
    border-bottom: 0;
}

body.cbe-site-mode-city-tour .site-home .hsc-origin a {
    color: var(--home-mode-ink);
    font-weight: 900;
    text-decoration: none;
}

body.cbe-site-mode-city-tour .site-home .hsc-origin a:hover {
    color: var(--home-mode-accent);
}

body.cbe-site-mode-city-tour .site-home .hsc-table .hsc-price {
    text-align: right;
    white-space: nowrap;
}

body.cbe-site-mode-city-tour .site-home td.hsc-price {
    color: var(--home-mode-accent-strong);
    font-weight: 900;
}

body.cbe-site-mode-city-tour .site-home .hsc-bus-list {
    display: grid;
    flex: 1 1 auto;
    align-content: start;
    gap: 14px;
    margin-bottom: 18px;
}

body.cbe-site-mode-city-tour .site-home .hsc-bus-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(23, 59, 77, .1);
    border-radius: 22px;
    background: linear-gradient(180deg, #fff 0%, #f8fcff 100%);
    color: var(--home-mode-ink);
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(17, 49, 78, .055);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

body.cbe-site-mode-city-tour .site-home .hsc-bus-card:hover,
body.cbe-site-mode-city-tour .site-home .hsc-bus-card:focus {
    transform: translateY(-2px);
    border-color: rgba(22, 128, 106, .3);
    color: var(--home-mode-ink);
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(22, 128, 106, .13);
}

body.cbe-site-mode-city-tour .site-home .hsc-bus-media {
    position: relative;
    display: block;
    min-height: 128px;
    overflow: hidden;
    background: #e8f3f0;
}

body.cbe-site-mode-city-tour .site-home .hsc-bus-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 128px;
    object-fit: cover;
    transition: transform .28s ease, filter .28s ease;
}

body.cbe-site-mode-city-tour .site-home .hsc-bus-card:hover .hsc-bus-media img,
body.cbe-site-mode-city-tour .site-home .hsc-bus-card:focus .hsc-bus-media img {
    filter: saturate(1.05) contrast(1.03);
    transform: scale(1.035);
}

body.cbe-site-mode-city-tour .site-home .hsc-bus-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 16px;
}

body.cbe-site-mode-city-tour .site-home .hsc-bus-kicker {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border: 1px solid rgba(22, 128, 106, .16);
    border-radius: 999px;
    background: var(--home-mode-soft);
    color: var(--home-mode-accent-strong);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.1;
}

body.cbe-site-mode-city-tour .site-home .hsc-bus-kicker i,
body.cbe-site-mode-city-tour .site-home .hsc-bus-meta i {
    color: var(--home-mode-accent);
}

body.cbe-site-mode-city-tour .site-home .hsc-bus-name {
    display: -webkit-box;
    overflow: hidden;
    color: var(--home-mode-ink);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

body.cbe-site-mode-city-tour .site-home .hsc-bus-meta {
    display: grid;
    gap: 8px;
    color: #5f7488;
    font-size: 13px;
    line-height: 1.4;
}

body.cbe-site-mode-city-tour .site-home .hsc-bus-meta span {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
}

body.cbe-site-mode-city-tour .site-home .hsc-bus-meta strong {
    color: var(--home-mode-accent-strong);
    font-weight: 900;
}

body.cbe-site-mode-city-tour .site-home .hsc-bus-card:only-child {
    grid-template-columns: 1fr;
}

body.cbe-site-mode-city-tour .site-home .hsc-bus-card:only-child .hsc-bus-media {
    min-height: 250px;
}

body.cbe-site-mode-city-tour .site-home .hsc-bus-card:only-child .hsc-bus-media img {
    min-height: 250px;
}

body.cbe-site-mode-city-tour .site-home .hsc-bus-card:only-child .hsc-bus-body {
    padding: 18px;
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-carousel {
    margin-bottom: 18px;
    overflow: hidden;
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-carousel .item {
    padding: 0 7px;
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-carousel .owl-wrapper-outer {
    margin: 0 -7px;
    width: calc(100% + 14px);
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-carousel .owl-controls {
    margin-top: 12px;
    text-align: center;
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-carousel .owl-page {
    display: inline-block;
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-carousel .owl-page span {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border-radius: 999px;
    background: rgba(22, 128, 106, .22);
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-carousel .owl-page.active span {
    width: 20px;
    background: var(--home-mode-accent);
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-card {
    display: flex;
    min-width: 0;
    height: 100%;
    min-height: 455px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(23, 59, 77, .1);
    border-radius: 24px;
    background: #fbfdff;
    color: inherit;
    text-decoration: none;
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-card:hover {
    border-color: rgba(22, 128, 106, .3);
    box-shadow: 0 12px 26px rgba(22, 128, 106, .13);
    transform: translateY(-2px);
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-img {
    position: relative;
    display: block;
    flex: 0 0 auto;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    isolation: isolate;
    border-radius: 24px 24px 0 0;
    background: #e8f3f0;
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-img::after {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 2;
    display: block;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 18px;
    pointer-events: none;
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-img img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform-origin: center;
    transition: transform .35s ease;
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-card:hover .hsc-hotel-img img,
body.cbe-site-mode-city-tour .site-home .hsc-hotel-card:focus .hsc-hotel-img img {
    transform: scale(1.04);
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 3;
    display: inline-flex;
    max-width: calc(100% - 24px);
    min-height: 30px;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--home-mode-primary);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(17, 49, 78, .14);
    backdrop-filter: blur(8px);
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-badge i {
    color: #d9a23a;
    font-size: 12px;
    line-height: 1;
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-badge span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-info {
    display: grid;
    grid-template-rows: auto minmax(18px, auto) auto;
    gap: 8px;
    flex: 1;
    padding: 12px;
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-name {
    display: -webkit-box;
    min-height: 40px;
    overflow: hidden;
    color: var(--home-mode-ink);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-loc {
    display: flex;
    gap: 6px;
    min-height: 18px;
    color: #607684;
    font-size: 12px;
    line-height: 1.3;
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-price {
    align-self: end;
    color: #607684;
    font-size: 12px;
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-price strong {
    color: var(--home-mode-accent-strong);
    font-size: 14px;
}

body.cbe-site-mode-city-tour .site-home .hsc-hotel-price small {
    color: #7d919d;
    font-size: 11px;
}

body.cbe-site-mode-city-tour .site-home .hsc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    margin-top: auto;
    padding: 10px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

body.cbe-site-mode-city-tour .site-home .hsc-btn-primary {
    background: var(--site-button-bg);
    color: #fff;
    box-shadow: var(--site-button-shadow);
}

body.cbe-site-mode-city-tour .site-home .hsc-btn-primary:hover {
    background: var(--site-button-bg-hover);
    color: #fff;
}

body.cbe-site-mode-city-tour .site-home .hsc-btn-outline {
    border: 1px solid rgba(22, 128, 106, .22);
    background: #fff;
    color: var(--home-mode-accent-strong);
}

body.cbe-site-mode-city-tour .site-home .hsc-btn-outline:hover {
    background: var(--home-mode-soft);
    color: var(--home-mode-accent-strong);
}

@media (max-width: 991px) {
    body.cbe-site-mode-city-tour .site-home .hsc-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body.cbe-site-mode-city-tour .site-home .home-services-combo {
        margin-top: 42px;
        padding: 42px 0;
    }

    body.cbe-site-mode-city-tour .site-home .hsc-head {
        text-align: left;
    }

    body.cbe-site-mode-city-tour .site-home .hsc-head h2 {
        font-size: 25px;
    }

    body.cbe-site-mode-city-tour .site-home .hsc-panel {
        padding: 18px;
    }

    body.cbe-site-mode-city-tour .site-home .hsc-bus-card {
        grid-template-columns: 118px minmax(0, 1fr);
        border-radius: 20px;
    }

    body.cbe-site-mode-city-tour .site-home .hsc-bus-media,
    body.cbe-site-mode-city-tour .site-home .hsc-bus-media img {
        min-height: 118px;
    }

    body.cbe-site-mode-city-tour .site-home .hsc-bus-card:only-child .hsc-bus-media,
    body.cbe-site-mode-city-tour .site-home .hsc-bus-card:only-child .hsc-bus-media img {
        min-height: 210px;
    }

    body.cbe-site-mode-city-tour .site-home .hsc-bus-body {
        padding: 14px;
    }

    body.cbe-site-mode-city-tour .site-home .hsc-bus-name {
        font-size: 15px;
    }

    body.cbe-site-mode-city-tour .site-home .hsc-hotel-carousel .item {
        padding: 0;
    }

    body.cbe-site-mode-city-tour .site-home .hsc-hotel-carousel .owl-wrapper-outer {
        margin: 0;
        width: 100%;
    }

    body.cbe-site-mode-city-tour .site-home .hsc-hotel-card {
        min-height: 420px;
    }

    body.cbe-site-mode-city-tour .site-home .hsc-hotel-img {
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 480px) {
    body.cbe-site-mode-city-tour .site-home .hsc-bus-card {
        grid-template-columns: 1fr;
    }

    body.cbe-site-mode-city-tour .site-home .hsc-bus-media,
    body.cbe-site-mode-city-tour .site-home .hsc-bus-media img {
        min-height: 180px;
    }
}

