.video-container {
  position: relative;
  width: 100%;
  height: 67vw; /* Example: full viewport height */
  overflow: visible; /* Hides any video overflow */
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    height: 67vw;
    width: 100vw;
    object-fit: cover; /* Ensures the video covers the entire container */
    z-index: -5;
}

.video-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

@media (max-width: 768px) {
    .video-container {
        width: 100vw;
        height: 180vw;
        overflow: hidden;
    }

    .video-container video {
        height: 180vw;
        width: 150vw;
        overflow: hidden;
    }
}

.content {
    font-family: 'Zona Pro Light', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    height: 110%;
    box-sizing: border-box;
    color: white;
    margin-top: 0;
}

.content h2 {
    font-weight: lighter;
    font-size: 3.5vw;
}

.content img {
    width: 40vw;
}

.content p {
    font-size: 1.35vw;
    margin: 2vw 12vw;
    margin-bottom: 3vw;
    text-justify: center;
    text-align: center;
    margin-top: 4vw;
}

.content .mobile-text {
    display: none;
}

@media (max-width: 768px) {
    .content h2 {
        font-size: 6vw;
    }

    .content img {
        width: 76vw;
        margin: 0;
    }

    .content p {
        font-size: 3.5vw;
    }

    .content .mobile-text {
        display: block;
    }

    .content .desktop-text {
        display: none;
    }
}

.banner {
    position: absolute;
    width: 100vw;
    left: 0;
    bottom: -25.5vw;
}

@media (max-width: 768px) {
    .banner {
        bottom: -33vw;
    }
}

.audio-player {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 24vw;
}

.audio-player .audio-banner{
    object-fit: cover;
    width: 100vw;
    padding: 0;
}

/* Style for when the audio player is active */
.audio-player.active .audio-banner {
    filter: brightness(0) saturate(100%) invert(14%) sepia(100%) saturate(5340%) hue-rotate(311deg) brightness(108%) contrast(88%);
    z-index: 0;
    /* The image will be overlayed on this background color */
}

.profile-image {
    position: absolute;
    bottom: 0; /* Example: aligns to the bottom */
    z-index: 10; /* Ensures it's above the banner */
    width: 27vw;
    left: 6vw;
}

.audio-player:nth-child(4n+1) .profile-image {
    left: 15vw;
}

.play-sound {
    position: absolute;
    z-index: 10;
    width: 7vw;
    top: 3vw;
    left: 35vw;
}
.play-sound:hover { cursor: pointer; }

.audio-player:nth-child(4n+1) .play-sound {
    left: 44vw;
    top: 4vw;
}

.profile-text {
    position: absolute;
    z-index: 10;
    top: 6vw;
    left: 45vw;
    height: 7.5vw;
}

.audio-player:nth-child(4n+1) .profile-text {
    left: 53vw;
    top: 8vw;
    height:10vw
}

.more-arrow {
    position: absolute;
    z-index: 10;
    top: 13.5vw;
    left: 44vw;
    width: 29.7vw;
}

.audio-player:nth-child(4n+1) .more-arrow {
    left: 53vw;
    top: 15vw;
}

.spacer {
    height: 5vw;
    z-index: 900;
}

.audio-players {
    padding-top: 17.5vw;
    background-color: #140D23;
    padding-bottom: 5vw;
}
