/* -------------------------------------------------------------------------
 * Section: intro
 * ------------------------------------------------------------------------- */

 .ket-intro {
    padding: clamp(25px, 4vw, 60px) 16px clamp(5px, 2vw, 5px);
}

.ket-collaborate-container {
    width: min(1280px, calc(100% - 24px));
    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 5vw, 80px);

    padding-bottom: clamp(16px, 2vw, 28px);
    border-bottom: 1px solid #140d9c;
}

.ket-logo {
    margin: 0;
    flex: 0 0 auto;
    line-height: 0;
}

.ket-home-landing__logo {
    display: block;
    width: clamp(250px, 20vw, 350px);
    height: auto;
    object-fit: contain;
}

#ket-collaborate-title {
    margin: 0;
    max-width: 650px;

    font-size: clamp(1.1rem, 5vw, 1.6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 700;
}

#ket-collaborate-text {
    width: min(1280px, calc(100% - 32px));
    margin: clamp(24px, 3vw, 45px) auto 0;

    font-size: clamp(0.78rem, 3vw, 0.9rem);
    line-height: 1.45;
    font-weight: 400;
    text-align: center;
}


@media (max-width: 768px) {
    .ket-collaborate-container {
        flex-direction: column;
        gap: 18px;
        text-align: center;
        padding-bottom: 22px;
    }

    .ket-intro .ket-home-landing__logo {
        width: clamp(150px, 45vw, 220px);
    }

    #ket-collaborate-title {
        max-width: 100%;
        font-size: clamp(1.0rem, 5vw, 1.5rem);
        line-height: 1.12;
        text-align: center;
    }

    #ket-collaborate-text {
        width: min(100% - 28px, 720px);
        margin-top: 18px;

        font-size: clamp(0.78rem, 3vw, 0.9rem);
        line-height: 1.45;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ket-intro {
        padding: 28px 16px 8px;
    }

    .ket-intro .ket-home-landing__logo {
        width: clamp(120px, 48vw, 170px);
    }

    .ket-collaborate-container {
        gap: 14px;
    }

    #ket-collaborate-title {
        font-size: clamp(0.8rem, 8vw, 1.15rem);
        letter-spacing: -0.03em;
    }

    #ket-collaborate-text {
        margin-top: 16px;

        font-size: 0.7rem;
        line-height: 1.42;
    }
}

/* -------------------------------------------------------------------------
 * Section: video
 * ------------------------------------------------------------------------- */

.ket-video {
    padding: clamp(50px, 7vw, 110px) 16px;
    background: #ffffff;
}

.ket-video-container {
    width: min(1280px, calc(100% - 24px));
    margin-inline: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

#ket-video-title {
    max-width: 1280px;
    margin: 0 0 clamp(28px, 4vw, 56px);

    color: #111827;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.02em;
}

.ket-video-container .ket-partnerrequests-video__card {
    width: min(800px, 100%);
    max-width: 100%;
    margin-inline: auto;
}

.ket-partnerrequests-video__card .ket-video-card-template__media {
    border-radius: 20px;
}

.ket-partnerrequests-video__card .ket-video-card-template__play {
    width: 92px;
    height: 92px;
}

.ket-partnerrequests-video__card .ket-video-card-template__play::before {
    border-top-width: 17px;
    border-bottom-width: 17px;
    border-left-width: 26px;
}

@media (max-width: 768px) {
    .ket-partnerrequests-video__card .ket-video-card-template__play {
        opacity: 0.65;
    }
}

/* -------------------------------------------------------------------------
 * Section: benefits table
 * ------------------------------------------------------------------------- */

.ket-partnerrequests-benefits {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

.ket-partnerrequests-benefit-row {
    width: 100%;
    background: #ffffff;
}

.ket-partnerrequests-benefit-row:nth-child(odd) {
    background: #f4f4f6;
}

.ket-partnerrequests-benefit-inner {
    width: min(1290px, calc(100% - 32px));
    margin-inline: auto;

    display: grid;
    grid-template-columns: 42px 240px minmax(0, 1fr);
    column-gap: 28px;
    align-items: center;

    min-height: 88px;
    padding: 26px 0;
    box-sizing: border-box;
}

.ket-partnerrequests-benefit-icon {
    width: 42px;
    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #00bff3;
    font-size: 32px;
    line-height: 1;
}

.ket-partnerrequests-benefit-title {
    margin: 0;

    color: #303030;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.ket-partnerrequests-benefit-text {
    margin: 0;

    color: #444444;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
}

.ket-partnerrequests-benefit-text strong {
    color: #303030;
    font-weight: 700;
}

@media (max-width: 900px) {
    .ket-partnerrequests-benefit-inner {
        grid-template-columns: 42px minmax(0, 1fr);
        row-gap: 8px;
        column-gap: 20px;
        padding: 24px 0;
    }

    .ket-partnerrequests-benefit-title {
        align-self: center;
    }

    .ket-partnerrequests-benefit-text {
        grid-column: 2;
    }
}

@media (max-width: 560px) {
    .ket-partnerrequests-benefit-inner {
        grid-template-columns: 1fr;
        row-gap: 12px;
        padding: 28px 0;
    }

    .ket-partnerrequests-benefit-icon,
    .ket-partnerrequests-benefit-title,
    .ket-partnerrequests-benefit-text {
        grid-column: 1;
    }

    .ket-partnerrequests-benefit-icon {
        justify-content: flex-start;
    }
}

/* -------------------------------------------------------------------------
 * Section: browse
 * ------------------------------------------------------------------------- */

.ket-browse {
    width: 100%;
    padding: 44px 16px 34px;
    background: #ffffff;
    text-align: center;
    box-sizing: border-box;
}

#ket-browse-text {
    margin: 0;

    color: #303030;
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 700;
    line-height: 1.35;
}

.ket-browse-button {
    margin-top: 40px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.ket-browse-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 265px;
    min-height: 47px;
    padding: 12px 28px;

    background: #005e86;
    color: #ffffff;

    border-radius: 999px;
    border: 0;

    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    transition:
        background 0.2s ease-in-out,
        transform 0.2s ease-in-out;
}

.ket-browse-btn:hover,
.ket-browse-btn:focus {
    background: #0073aa;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

.ket-browse-btn i {
    color: #ffffff;
    font-size: 17px;
    line-height: 1;
}


.ket-browse__image-wrap {
    position: relative;
    display: block;

    width: 100vw;
    max-width: none;

    height: 45vh;
    min-height: 280px;
    max-height: 400px;

    margin: 40px calc(50% - 50vw) 0;

    overflow: hidden;
    line-height: 0;
}

.ket-browse__image-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 45%;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0) 100%
    );

    pointer-events: none;
    z-index: 2;
}

.ket-browse__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center 60%;

    border-radius: 0;
}


@media (max-width: 600px) {
    .ket-browse {
        padding: 36px 16px 30px;
    }

    .ket-browse-button {
        margin-top: 28px;
    }

    .ket-browse-btn {
        width: 100%;
        max-width: 320px;
        min-width: 0;
        font-size: 16px;
    }
}
