.k-htl-container {
    display: flex;
    gap: 20px;
    align-items: stretch;
    background: #1eff3312;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.k-htl-left-col {
    width: 28%;
    flex-shrink: 0;
}

.k-htl-right-col {
    width: calc(72% - 20px);
    position: relative;
}

.k-htl-banner-wrapper {
    position: relative;
    width: 100%;
    padding-top: 142.857%;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.k-htl-container .k-hfl-tl-item-inner {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.k-htl-banner-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.k-htl-view-all-wrapper {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 99;
}

.k-htl-view-all-btn {
    padding: 6px 6px 6px 20px;
    background: linear-gradient(135deg, #55A630 0%, #166534 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    line-height: 1;
}

.k-htl-view-all-icon {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #166534;
    transition: transform 0.3s ease;
}

.k-htl-view-all-icon svg {
    width: 18px;
    height: 18px;
}

.k-htl-view-all-btn:hover .k-htl-view-all-icon {
    transform: translateX(2px);
}

.k-htl-view-all-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #fff !important;
    opacity: 0.9;
}

.k-htl-container .k-hfl-tour-list-wrapper {
    padding: 22px 16px !important;
}

.k-htl-container .k-hfl-button-next,
.k-htl-container .k-hfl-button-prev {
    color: #fff;
    background: #55A630;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    transition: all 0.3s ease;
}

.k-htl-container .k-hfl-button-next:hover,
.k-htl-container .k-hfl-button-prev:hover {
    background: #55A630;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.k-htl-container .k-hfl-button-next {
    right: -24px;
}

.k-htl-container .k-hfl-button-prev {
    left: -24px;
}

.k-htl-container .k-hfl-button-next:after,
.k-htl-container .k-hfl-button-prev:after {
    font-family: swiper-icons;
    font-size: 18px;
    font-weight: bold;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.k-htl-container .k-hfl-button-next:after {
    content: 'next';
}

.k-htl-container .k-hfl-button-prev:after {
    content: 'prev';
}

@media (max-width: 1024px) {
    .k-htl-container {
        flex-direction: column;
    }

    .k-htl-left-col,
    .k-htl-right-col {
        width: 100%;
    }

    .k-htl-banner-wrapper {
        padding-top: 56.25%;
    }
}