/* =========================================
   VIDEO PROFILE
========================================= */

.video-profile-section {
    padding: 120px 0;
    background: var(--background);
}


/* =========================================
   VIDEO CARD
========================================= */

.video-profile-card {
    position: relative;

    display: block;

    overflow: hidden;

    min-height: 560px;

    border-radius: 32px;

    box-shadow:
        0 25px 60px rgba(32, 54, 109, 0.14);
}


/* =========================================
   IMAGE
========================================= */

.video-profile-image {
    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.video-profile-card:hover .video-profile-image {
    transform: scale(1.05);
}


/* =========================================
   OVERLAY
========================================= */

.video-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(23, 42, 84, 0.12) 0%,
            rgba(23, 42, 84, 0.75) 100%
        );
}


/* =========================================
   CONTENT
========================================= */

.video-profile-content {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 40px;

    text-align: center;

    color: #ffffff;
}


/* PLAY BUTTON */

.video-play {
    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    padding-left: 5px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    color: var(--primary);

    font-size: 24px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.video-profile-card:hover .video-play {
    transform: scale(1.1);

    background: var(--secondary);

    color: #ffffff;
}


/* LABEL */

.video-label {
    margin-bottom: 10px;

    color: var(--secondary-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* TITLE */

.video-profile-content h3 {
    margin-bottom: 10px;

    color: #ffffff;

    font-size: clamp(30px, 4vw, 48px);

    font-weight: 800;
}


/* DESCRIPTION */

.video-profile-content p {
    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;

    letter-spacing: 0.5px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 700px) {

    .video-profile-section {
        padding: 80px 0;
    }

    .video-profile-card {
        min-height: 420px;

        border-radius: 24px;
    }

    .video-play {
        width: 68px;
        height: 68px;

        font-size: 20px;
    }

    .video-profile-content {
        padding: 25px;
    }
}