/* Product Videos Component Styles */

/* Main container */
.product-videos {
    padding: 80px 80px;
}

/* Header styling */
.product-videos-header h2 {
    font-family: 'OptimaProRoman', sans-serif;
    font-size: 44px;
    line-height: 56px;
    font-weight: 400;
    color: #434B5E;
    margin-bottom: 32px;
}

/* Videos content layout */
.product-videos-content {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
}

/* Individual video item */
.product-video-item {
    flex: 1 1 0px;
}

/* YouTube video container */
.product-video-item-yt {
    width: 100%;
    height: 100%;
}

/* YouTube iframe styling */
.product-video-item-yt iframe {
    width: 100%;
    height: 315px;
    border: none;
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
    .product-videos {
        padding: 40px;
    }

    .product-videos-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media screen and (max-width: 744px) {
    .product-videos {
        padding: 32px 16px;
    }

    .product-videos-header h2 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 16px;
    }

    .product-videos-content {
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .product-video-item-yt iframe {
        height: 185px;
    }
}
