@media (max-width: 768px) {
    .artist-section {
        padding: 30px 30px 15px 30px;
        height: auto;
    }
    
    .artist-name {
        font-size: 48px;
        margin: 0 0 5px 0;
    }

    .artist-location {
        font-size: 18px;
        line-height: 1;
        margin: 0 0 30px 0;
    }

    .artist-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin: 20px 0 0 0;
        align-items: stretch;
    }

    .mcr-player {
        gap: 0px;
        padding: 6px 4px 6px 4px;
    }

    .mcr-player__btn {
        width: 36px;
        height: 36px;
    }

    .mcr-player__btn svg {
        width: 34px;
    }

    .mcr-player__meta {
        gap: 10px;
    }

    .mcr-player__label {
        font-size: 20px;
    }

    .mcr-player__track {
        font-size: 14px;
        transform: translateY(1px);
        margin-left: 8px;
    }

    @keyframes track-breathe {
        0%, 100% { transform: translateY(1px) scale(1); }
        50%      { transform: translateY(1px) scale(1.09); }
    }

    .mcr-player.is-playing .mcr-player__track {
        animation: track-breathe 5s ease-in-out infinite;
    }

    .artist-social-icons {
        gap: 25px;
    }

    .artist-social-icons a img {
        width: 36px;
        height: 36px;
    }

    .description-section {
        font-size: 18px;
        line-height: 1.8;
        margin: 30px 0 20px 0;
    }

    .artist-videos {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 30px 50px 30px;
        gap: 30px;
        align-items: start;
        grid-template-columns: repeat(auto-fit, 1fr);
    }

    .artist-videos__header {
        font-size: 36px;
        margin: 0 0 0px 0;
    }

    .yt-embed iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        display: block;
        max-width: 75vw;
        min-width: 0px;
    }

    .yt-embed {
        display: flex;
        justify-content: center;
    }


    .related-merch-section {
        padding: 0 20px 60px 20px;
    }

    .related-merch-content {
        position: relative;
        max-width: 95%;
        margin: 0 auto;
    }

    .store-section {
        padding: 0 2vw;
        margin-bottom: 20px;
        gap: 10px;
    }
  
    .store-heading {
        font-size: 36px;
        align-self: center;
    }
  
    .store-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2.5vw;
        padding: 0;
    }

    .merch-block {
      max-width: 200px;
      border: 2px solid #0B1215;
    }
  
    .merch-block:hover .default-image {
        opacity: 1;
    }
  
    .merch-block:hover .hover-image {
        opacity: 0;
    }
  
    .merch-block .default-image {
        opacity: 1;
        transition: opacity 0.35s ease-in-out;
    }
  
    .merch-block .hover-image {
        opacity: 0;
        transition: opacity 0.35s ease-in-out;
    }
  
    .merch-block.scrolled .default-image {
        opacity: 0;
    }
  
    .merch-block.scrolled .hover-image {
        opacity: 1;
    }
  
    .merch-block-names-container {
        padding: 2px 4px 0 4px;
        border-right: 2px solid #0B1215;
    }

    .merch-block-details-container {
        border-top: 2px solid #0B1215;
    }
    
    .merch-block-artist-name {
        font-size: clamp(12px, 1vw, 14px);
        margin-bottom: 0px;
    }
    
    .merch-block-product-name {
        font-size: clamp(8px, 0.8vw, 9px);
    }
  
    .merch-block-price {
        font-size: clamp(8px, 90%, 16px);
    }
}