@charset "UTF-8";

.video-banner-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 240px;
    overflow: hidden;
    background: #111;
}

.video-background {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    padding: 20px;
    text-align: center;
    z-index: 1;
}

.video-banner-readmore .readmore-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 25px;
    color: #fff;
    background: #222;
    border: 3px solid #fff;
    border-radius: 23px;
    opacity: 0.8;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.video-banner-readmore .readmore-button:hover,
.video-banner-readmore .readmore-button:focus {
    opacity: 1;
    background-color: #0056b3;
}

@media (max-width: 600px) {
    .video-banner-container {
        min-height: 180px;
    }

    .video-overlay {
        padding: 15px;
    }
}
