.container-potof-video {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 16px;
}



.container-potof-video .video-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    height: 240px; /* Mobile Height */
    border-radius: 12px;
    background: #000;
    overflow: hidden;
}

.container-potof-video .video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
}

.container-potof-video .video-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: none;
}

.container-potof-video .video-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.container-potof-video .video-container.is-active .video-iframe-container {
    display: block;
}

.container-potof-video .video-container.is-active .video-image-wrapper {
    display: none;
}

.container-potof-video .video-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container-potof-video .video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.container-potof-video .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.container-potof-video .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    z-index: 3;
    transition: transform 0.3s ease;
}

.container-potof-video .video-container:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.container-potof-video .video-play-btn svg {
    width: 100%;
    height: 100%;
}

.container-potof-video .video-info-card {
    display: none;
}

@media (min-width: 1024px) {
    .container-potof-video {
        padding: 100px 16px;
    }

    .container-potof-video .video-wrapper {
        border-radius: 36px;
        height: 620px; /* Desktop Height */
    }

    .container-potof-video .video-play-btn {
        width: 124px;
        height: 124px;
    }

    .container-potof-video .video-info-card {
        display: flex;
        flex-direction: column;
        position: absolute;
        bottom: 36px;
        left: 36px;
        width: 340px;
        background: rgba(252, 249, 248, 0.7);
        backdrop-filter: blur(5.4px);
        -webkit-backdrop-filter: blur(5.4px);
        border-radius: 14.5px;
        padding: 22px;
        z-index: 4;
        gap: 8px;
    }

    .container-potof-video .video-info-title {
        color: #1f1f42;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.4;
        display: block;
    }

    .container-potof-video .video-info-desc {
        color: #1f1f42;
        font-size: 12px;
        line-height: 1.5;
        display: block;
    }
}
