.kti-section {
    width: 100%;
    max-width: 1240px;
    margin: 52px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.kti-section *,
.kti-section *::before,
.kti-section *::after {
    box-sizing: border-box;
}

.kti-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.kti-section__title {
    margin: 0;
    color: #2f7e5e;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    font-weight: 700;
}

.kti-section__arrows {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
}

.kti-arrow {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid #e1e5e3;
    border-radius: 50%;
    background: #fff;
    color: #2f7e5e;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.kti-arrow:hover,
.kti-arrow:focus {
    background: #2f7e5e;
    border-color: #2f7e5e;
    color: #fff;
    transform: translateY(-1px);
    outline: none;
}

.kti-slider {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 3px 2px 16px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.kti-slider::-webkit-scrollbar {
    display: none;
}

.kti-card {
    flex: 0 0 calc(25% - 17px);
    min-width: 0;
    margin: 0;
    background: #fff;
    border: 1px solid #e9eceb;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 4px 14px rgba(25, 45, 36, .04);
    transition: transform .25s ease, box-shadow .25s ease;
}

.kti-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 34px rgba(25, 45, 36, .12);
}

.kti-card__image {
    position: relative;
    display: block;
    height: 285px;
    overflow: hidden;
    background: #eef3f0;
    text-decoration: none;
}

.kti-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.kti-card:hover .kti-card__image img {
    transform: scale(1.045);
}

.kti-card__no-image {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #809087;
    font-weight: 600;
}

.kti-card__duration {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(255,255,255,.96);
    color: #1e2b24;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 5px 14px rgba(0,0,0,.14);
}

.kti-card__body {
    padding: 18px;
}

.kti-card__location {
    margin: 0 0 7px;
    color: #2f7e5e;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.kti-card__title {
    margin: 0 0 9px;
    min-height: 52px;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
}

.kti-card__title a {
    color: #1e2521;
    text-decoration: none;
}

.kti-card__title a:hover {
    color: #2f7e5e;
}

.kti-card__type {
    min-height: 20px;
    margin-bottom: 15px;
    color: #78827d;
    font-size: 13px;
}

.kti-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: 5px;
    padding-top: 15px;
    border-top: 1px solid #edf0ee;
}

.kti-card__price {
    min-width: 0;
    color: #158a2b;
}

.kti-card__price-label {
    display: block;
    margin-bottom: 2px;
    color: #909893;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.kti-card__price strong {
    display: block;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 800;
}

.kti-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 13px;
    border-radius: 5px;
    background: #2f7e5e;
    color: #fff !important;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none !important;
    transition: background .2s ease, transform .2s ease;
}

.kti-card__button:hover,
.kti-card__button:focus {
    background: #226348;
    color: #fff !important;
    transform: translateY(-1px);
}

.kti-admin-message {
    max-width: 1180px;
    margin: 20px auto;
    padding: 12px 16px;
    border-left: 4px solid #dba617;
    background: #fff8dd;
    color: #342f20;
}

@media (max-width: 1100px) {
    .kti-card {
        flex-basis: calc(33.333% - 15px);
    }
}

@media (max-width: 820px) {
    .kti-card {
        flex-basis: calc(50% - 11px);
    }
}

@media (max-width: 600px) {
    .kti-section {
        margin: 36px auto;
        padding: 0 15px;
    }

    .kti-section__header {
        margin-bottom: 18px;
    }

    .kti-section__arrows {
        display: none;
    }

    .kti-card {
        flex-basis: 86%;
    }

    .kti-card__image {
        height: 250px;
    }

    .kti-card__title {
        min-height: 0;
    }
}
