:root {
    --dl-red:   #cc0000;
    --dl-dark:  #1a1a1a;
    --dl-white: #ffffff;
}

/* ── Visually hidden (sr-only) ───────────────────────────── */
.kol-cta__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Page wrapper ────────────────────────────────────────── */
.kol-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 60px;
    background: #fff;
}

/* ── Hero ────────────────────────────────────────────────── */
.kol-hero {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #111;
    display: flex;
    align-items: flex-end;
}

.kol-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .65) 100%);
}

.kol-hero__content {
    position: relative;
    padding: 40px 48px;
    color: #fff;
    max-width: 700px;
    z-index: 1;
}

.kol-hero__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    background: var(--dl-red);
    color: #fff;
    padding: 3px 12px;
    margin-bottom: 12px;
}

.kol-hero__title {
    font-size: clamp(22px, 4vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 12px;
    letter-spacing: .03em;
}

.kol-hero__body {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .85);
    margin: 0;
}

/* ── Groups ──────────────────────────────────────────────── */
.kol-group {
    padding: 48px 0 32px;
    border-bottom: 1px solid #e8e8e8;
}

.kol-group:last-of-type {
    border-bottom: none;
}

.kol-group__header {
    text-align: center;
    margin-bottom: 32px;
}

.kol-group__title {
    display: inline-block;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--dl-dark);
    padding-bottom: 10px;
    border-bottom: 3px solid var(--dl-red);
    margin: 0;
}

.kol-group__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Card ────────────────────────────────────────────────── */
.kol-card {
    width: 160px;
    text-align: center;
}

a.kol-card,
.kol-card--linked {
    display: block;
    text-decoration: none;
    color: inherit;
}

a.kol-card:focus-visible,
.kol-card--linked:focus-visible {
    outline: 2px solid #d6001c;
    outline-offset: 4px;
}

.kol-card__photo {
    width: 160px;
    height: 213px;
    margin: 0 auto 10px;
    overflow: hidden;
    border-radius: 2px;
    background: #f0f0f0;
    contain: layout style;
}

.kol-card__photo img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.kol-card__photo:not(:has(img)) {
    background: linear-gradient(160deg, #2a2a2a 0%, #484848 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: rgba(255, 255, 255, .25);
}

.kol-card__name {
    font-size: 12px;
    font-weight: 700;
    color: var(--dl-dark);
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.3;
}

.kol-card__title {
    font-size: 11px;
    color: #888;
    margin-top: 3px;
    line-height: 1.4;
}

/* ── CTA ─────────────────────────────────────────────────── */
.kol-cta {
    background: #f5f5f5;
    padding: 48px 24px;
    text-align: center;
}

.kol-cta__inner {
    max-width: 560px;
    margin: 0 auto;
}

.kol-cta__copy {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.kol-cta__form {
    display: flex;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
}

.kol-cta__input {
    flex: 1;
    min-width: 0;
    padding: 11px 14px;
    border: 1px solid #ccc;
    border-right: none;
    font-size: 13px;
    outline: none;
    transition: border-color .15s;
}

.kol-cta__input:focus {
    border-color: var(--dl-dark);
    box-shadow: 0 0 0 2px rgba(26, 26, 26, .15);
}

.kol-cta__btn {
    padding: 11px 22px;
    background: var(--dl-dark);
    color: var(--dl-white);
    border: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}

.kol-cta__btn:hover {
    background: var(--dl-red);
}

.kol-cta__btn:focus-visible {
    outline: 2px solid var(--dl-red);
    outline-offset: 2px;
}

/* ── Home-page KOL slider ────────────────────────────────── */
.kol-slider-wrap {
    position: relative;
    overflow: hidden;
}

.kol-slider__heading {
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--dl-dark);
    padding-bottom: 10px;
    border-bottom: 3px solid var(--dl-red);
    margin: 0 auto 32px;
    display: inline-block;
}

.kol-slider {
    padding-bottom: 40px !important;
}

.kol-slider .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

/* Arrow buttons */
.kol-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 20px));
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(26, 26, 26, .25);
    background: rgba(255, 255, 255, .9);
    color: var(--dl-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, border-color .15s, color .15s;
    padding: 0;
}

.kol-slider__arrow svg {
    width: 16px;
    height: 16px;
}

.kol-slider__prev { left: 0; }
.kol-slider__next { right: 0; }

.kol-slider__arrow:hover,
.kol-slider__arrow:focus-visible {
    background: var(--dl-dark);
    border-color: var(--dl-dark);
    color: #fff;
    outline: none;
}

.kol-slider__arrow.swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
}

/* Pagination dots */
.kol-slider__pagination {
    bottom: 0 !important;
}

.kol-slider__pagination .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 6px;
    height: 6px;
}

.kol-slider__pagination .swiper-pagination-bullet-active {
    background: var(--dl-red);
    width: 18px;
    border-radius: 3px;
}

/* name + title in slider */
.kol-slider .kol-card__name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.3;
    margin-top: 12px;
}

.kol-slider .kol-card__title {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

/* card photo in slider — portrait crop */
.kol-slider .kol-card__photo {
    width: 100%;
    height: 0;
    padding-bottom: 133%;      /* 3:4 ratio */
    position: relative;
    margin: 0 0 10px;
}

.kol-slider .kol-card__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.kol-slider .kol-card__photo-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #2a2a2a 0%, #484848 100%);
    display: block;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .kol-hero {
        min-height: 280px;
    }

    .kol-group__grid {
        gap: 20px 16px;
    }
}

@media (max-width: 640px) {
    .kol-hero__content {
        padding: 28px 20px;
    }

    .kol-card { width: 160px; }
    .kol-card__photo { width: 160px; height: 213px; }
}

@media (max-width: 480px) {
    .kol-card { width: 160px; }
    .kol-card__photo { width: 160px; height: 213px; }

    .kol-cta {
        padding: 36px 16px;
    }

    .kol-cta__form {
        flex-direction: column;
    }

    .kol-cta__input {
        border-right: 1px solid #ccc;
        border-bottom: none;
    }

    .kol-cta__btn {
        width: 100%;
        padding: 12px;
    }
}
