/* Video Player Styles - Shared across all components */

.video-player {
    width: 100%;
    margin: 48px auto;
}

.video-player__thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.video-player__thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.video-player__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-player__play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-player__embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-player__embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #1C45F5;
    border-radius: 12px;
    overflow: hidden;
}
