.rgvs-wrapper {
    max-width: 100%;
    margin: auto;
    box-sizing: border-box;
}

.rgvs-slider {
    position: relative;
    overflow: hidden;
}

.rgvs-track {
    display: flex;
    gap: 12px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.rgvs-item {
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #0e66be !important;
    border-radius: 16px !important;
}

.rgvs-item iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: none;
    background: #000;
    cursor: pointer;
}

.rgvs-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgb(19, 37, 139);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
}

.rgvs-prev {
    left: 6px;
}

.rgvs-next {
    right: 6px;
}

@media (min-width: 1025px) {
    .rgvs-item {
        width: calc((100% - 36px) / 4);
    }
}

@media (min-width: 600px) and (max-width: 1024px) {
    .rgvs-item {
        width: calc((100% - 24px) / 3);
    }
}

@media (max-width: 599px) {
    .rgvs-item {
        width: 100%;
    }

    .rgvs-btn {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
}

/* ===============================
           FULLSCREEN MODAL
        =============================== */

.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    width: 92vw;
    height: 92vh;
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    user-select: none;
}

.career-card {
    background-color: transparent;
    box-shadow: none !important;
    border: none;
}