.site-header .inside-header {
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-top: clamp(2rem, calc(1.463rem + 2.685vw), 4rem);
  padding-bottom: clamp(2rem, calc(1.463rem + 2.685vw), 4rem);
}
/* Wrapper dictates the hover behavior */
.bandcamp-wrapper {
    position: relative;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}
/* Let hover events trigger underlying elements without blocking */
.bandcamp-wrapper iframe {
    pointer-events: none;
}
/* Bring clicks back to life on the player controls */
.bandcamp-wrapper:hover iframe {
    pointer-events: auto;
}
/* Apply your desired hover effect */
.bandcamp-wrapper:hover {
    transform: scale(1.05); /* Example hover scale */
}

/* Container holding the Bandcamp iframe */
.bandcamp-wrapper {
    position: relative;
    overflow: hidden;
}

/* Push the bottom playlist container to appear on hover */
.bandcamp-wrapper .fixed {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 10;
}

/* Make the playlist appear when hovering over the container */
.bandcamp-wrapper:hover .fixed {
    opacity: 1;
}