:root {
    --primary-color: #8EA8B8;
}

.grayscale {
    filter: grayscale(100%);
}

.playlist-section {
    background-color: var(--primary-color);
    color: var(--background-color);
    position: relative;
}

.playlist-section__boom-image {
    position: absolute;
    top: 0vh;
    left: 0.5vw;
    width: clamp(100px, 10vw, 500px);
    height: auto;
    z-index: 0;
}

.playlist-section__iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Desktop layout for playlist section */
@media (min-width: 768px) {
    .playlist-section {
        height: 400px;
    }
    
    .playlist-section .section-with-info-and-media__info {
        flex: 1.5; /* 60% */
    }
    
    .playlist-section .section-with-info-and-media__media {
        flex: 1; /* 40% */
        padding: 24px 24px 24px 0; /* top right bottom left - equal padding on top, right, bottom */
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Mobile layout adjustments */
@media (max-width: 767px) {
    .playlist-section .section-with-info-and-media__info {
        min-height: auto; /* remove large min-height that caused extra space */
        padding: 3rem 2rem;
    }
    
    .playlist-section .section-with-info-and-media__media {
        padding: 0 1rem 1rem 1rem; /* 0 top, and 1rem on left, right, and bottom for equal spacing. */
        background-color: var(--primary-color);
    }

    .playlist-section iframe {
        width: 100%;
        height: 352px;
    }
} 