.category-landing-video {
    align-items: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 63px rgba(34, 60, 80, 0.15);
    display: grid;
    gap: clamp(24px, 3vw, 46px);
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1fr);
    margin-top: clamp(24px, 4vw, 48px);
    overflow: hidden;
    padding: clamp(18px, 3vw, 36px);
}

.category-landing-video__media {
    background: #171717;
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
    justify-self: center;
    max-width: 340px;
    overflow: hidden;
    width: 100%;
}

.category-landing-video__media video {
    aspect-ratio: 29 / 40;
    background: #171717;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.category-landing-video__content {
    max-width: 650px;
}

.category-landing-video__content h3 {
    color: #000;
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 800;
    line-height: 1.08;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.category-landing-video__content p {
    color: #333;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.55;
    margin-bottom: 14px;
}

.category-landing-video__description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 750px) {
    .category-landing-video {
        grid-template-columns: 1fr;
    }

    .category-landing-video__media {
        max-width: 280px;
    }

    .category-landing-video__content {
        max-width: none;
    }
}
