/* music-mixes.css */
@import url('/fonts.css');
@import url('/tailwind.css');
@import url('/app/global.css');

html, body {
  font-family: var(--font-inter) !important;
  margin: 0;
  padding: 0;
}

/* Base container */
.container-all-music-grid-playlists-section {
  max-width: 1150px;
  margin: 0 auto;
}

/* Header styling */
.container-all-music-grid-playlists-section header {
  margin-bottom: 1rem;
  text-align: left;
  padding-left: 1.25rem;
}

.container-all-music-grid-playlists-section header h2 {
  margin: 0;
}

.sub-title-music {
  background-color: #000;
  color: #fff !important;
  padding: 4px 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Simplified grid */
.video-grid-all-music-grid-playlists-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 23rem));
  gap: 1rem;
  margin: 0 auto;
  width: 80vw;
  justify-content: center;

  padding-bottom: 8rem;
}

/* Target individual Spotify and SoundCloud containers */
.video-container-playlists-home .thumbnail-wrapper-playlists-home.platform-spotify,
.video-container-playlists-home .thumbnail-wrapper-playlists-home.platform-soundcloud,
.video-container-playlists-home .thumbnail-wrapper-playlists-home.platform-audius {
  max-width: 13.5rem;
  margin: 0 auto;
}

/* Video container */
.video-container-playlists-home {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: visible; /* Changed to visible to show stacked layers */
  width: 100%;
}

/* Thumbnail wrapper with platform-specific ratios */
.video-container-playlists-home .thumbnail-wrapper-playlists-home {
  position: relative;
  width: 100%;
  background-color: transparent; /* Changed to transparent */
  cursor: pointer;
  border-radius: 1rem;
  overflow: visible; /* Changed to visible */
  /* padding-top: 12px; */
}

/* YouTube - 16:9 ratio */
.video-container-playlists-home .thumbnail-wrapper-playlists-home.platform-youtube {
  aspect-ratio: 16/9;
}

/* Spotify & SoundCloud - 1:1 ratio */
.video-container-playlists-home .thumbnail-wrapper-playlists-home.platform-spotify,
.video-container-playlists-home .thumbnail-wrapper-playlists-home.platform-soundcloud,
.video-container-playlists-home .thumbnail-wrapper-playlists-home.platform-audius {
  aspect-ratio: 1/1;
}

/* Default ratio for unknown platforms */
.video-container-playlists-home .thumbnail-wrapper-playlists-home.platform-default {
  aspect-ratio: 16/9;
}

.video-container-playlists-home .thumbnail-wrapper-playlists-home a {
  display: block;
  width: 100%;
  height: calc(100% - 12px); /* Adjust for stack space */
  position: absolute;
  top: 12px; /* Start below the stack layers */
  left: 0;
  z-index: 10; /* High z-index for clickable area */
}

/* Playlist Collections Stack Container */
.playlist-collections-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Main thumbnail container (top layer) */
.thumbnail-main-container {
  position: relative;
  width: 100%;
  height: calc(100% - 12px);
  border-radius: 1rem;
  overflow: hidden;
  z-index: 3;
  margin-top: 12px;
  outline: 1px solid white;
  aspect-ratio: 16/9;
  /* Add base transition here */
  transition: transform 0.2s ease;
}

/* Stack Layer 1 (Primary/Middle layer) */
.playlist-collections-stack-1 {
  position: absolute;
  top: -4px;
  left: 8px;
  right: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 12px);
  background-color: #606060;
  border-radius: 12px;
  z-index: 2;
  outline: 1px solid white;
  /* Add base transitions here */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Stack Layer 2 (Secondary/Bottom layer) */
.playlist-collections-stack-2 {
  position: absolute;
  top: -8px;
  left: 12px;
  right: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 12px);
  background-color: #505050;
  opacity: 0.7;
  border-radius: 12px;
  z-index: 1;
  outline: 1px solid white;
  /* Add base transitions here */
  transition: background-color 0.3s ease, opacity 0.2s ease, transform 0.2s ease;
}

/* Thumbnail image */
.video-container-playlists-home .thumbnail-playlists-home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

/* Platform badge */
.video-container-playlists-home .platform-badge-playlists-home {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 5;
  color: white;
}

.platform-badge-playlists-home.platform-youtube {
  background: #ff0000;
}

.platform-badge-playlists-home.platform-spotify {
  background: #1db954;
}

.platform-badge-playlists-home.platform-soundcloud {
  background: #ff5500;
}

.platform-badge-playlists-home.platform-audius {
  background: #cc0fe0;
}

.platform-badge-playlists-home.platform-default {
  background: rgba(0, 0, 0, 0.7);
}

/* Track count badge */
.video-container-playlists-home .track-count-badge-playlists-home {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.063rem .25rem; /* 1px 4px in rem */
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 4;
}

/* Duration badge */
.video-container-playlists-home .duration-badge-playlists-home {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 4;
}

/* No thumbnail placeholder */
.video-container-playlists-home .no-thumbnail-playlists-home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.875rem;
  border-radius: 1rem;
}

.video-container-playlists-home .platform-icon-playlists-home {
  width: 32px;
  height: 32px;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

/* Video title styling */
.video-container-playlists-home .video-title-playlists-home {
  text-align: center;
  margin: 0.75rem 0 0.5rem;
  padding: 0 0.5rem;
  line-height: 1.3;
  color: var(--text-primary);
  cursor: pointer;
}

.video-container-playlists-home .playlist-title-text-playlists-home {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-container-playlists-home .playlist-platform-info-playlists-home {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  text-transform: capitalize;
}

/* No videos message */
.video-grid-all-music-grid-playlists-home .no-videos-playlists-home {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 1rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Hover effects for thumbnail area only */
.thumbnail-wrapper-playlists-home:hover .thumbnail-main-container {
  /* transform: translateY(-2px); */
}

.thumbnail-wrapper-playlists-home:hover .playlist-collections-stack-1 {
  /* transform: translateY(-3px); */
}

.thumbnail-wrapper-playlists-home:hover .playlist-collections-stack-2 {
  opacity: 0.8;
  /* transform: translateY(-4px); */
}

/* Dark overlay and play text on hover */
/* .thumbnail-wrapper-playlists-home .thumbnail-main-container::after {
  content: "Listen in a new Tab";
  font-family: var(--font-inter);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 1rem;
  z-index: 20;
  opacity: 0;
} */

/* music-mixes.css */
@import url('/fonts.css');
@import url('/tailwind.css');
@import url('/app/global.css');

html, body {
  font-family: var(--font-inter) !important;
  margin: 0;
  padding: 0;
}

/* Base container */
.container-all-music-grid-playlists-section {
  max-width: 1150px;
  margin: 0 auto;
}

/* Header styling */
.container-all-music-grid-playlists-section header {
  margin-bottom: 1rem;
  text-align: left;
  padding-left: 1.25rem;
}

.container-all-music-grid-playlists-section header h2 {
  margin: 0;
}

.sub-title-music {
  background-color: #000;
  color: #fff !important;
  padding: 4px 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Simplified grid */
.video-grid-all-music-grid-playlists-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 23rem));
  gap: 1rem;
  margin: 0 auto;
  width: 80vw;
  justify-content: center;

  padding-bottom: 8rem;
}

/* Target individual Spotify and SoundCloud containers */
.video-container-playlists-home .thumbnail-wrapper-playlists-home.platform-spotify,
.video-container-playlists-home .thumbnail-wrapper-playlists-home.platform-soundcloud,
.video-container-playlists-home .thumbnail-wrapper-playlists-home.platform-audius {
  max-width: 13.5rem;
  margin: 0 auto;
}

/* Video container */
.video-container-playlists-home {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: visible; /* Changed to visible to show stacked layers */
  width: 100%;
}

/* Thumbnail wrapper with platform-specific ratios */
.video-container-playlists-home .thumbnail-wrapper-playlists-home {
  position: relative;
  width: 100%;
  background-color: transparent; /* Changed to transparent */
  cursor: pointer;
  border-radius: 1rem;
  overflow: visible; /* Changed to visible */
  /* padding-top: 12px; */
}

/* YouTube - 16:9 ratio */
.video-container-playlists-home .thumbnail-wrapper-playlists-home.platform-youtube {
  aspect-ratio: 16/9;
}

/* Spotify & SoundCloud - 1:1 ratio */
.video-container-playlists-home .thumbnail-wrapper-playlists-home.platform-spotify,
.video-container-playlists-home .thumbnail-wrapper-playlists-home.platform-soundcloud,
.video-container-playlists-home .thumbnail-wrapper-playlists-home.platform-audius {
  aspect-ratio: 1/1;
}

/* Default ratio for unknown platforms */
.video-container-playlists-home .thumbnail-wrapper-playlists-home.platform-default {
  aspect-ratio: 16/9;
}

.video-container-playlists-home .thumbnail-wrapper-playlists-home a {
  display: block;
  width: 100%;
  height: calc(100% - 12px); /* Adjust for stack space */
  position: absolute;
  top: 12px; /* Start below the stack layers */
  left: 0;
  z-index: 10; /* High z-index for clickable area */
}

/* Playlist Collections Stack Container */
.playlist-collections-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Main thumbnail container (top layer) */
.thumbnail-main-container {
  position: relative;
  width: 100%;
  height: calc(100% - 12px);
  border-radius: 1rem;
  overflow: hidden;
  z-index: 3;
  margin-top: 12px;
  outline: 1px solid white;
  aspect-ratio: 16/9;
  /* Add base transition here */
  transition: transform 0.2s ease;
}

/* Stack Layer 1 (Primary/Middle layer) */
.playlist-collections-stack-1 {
  position: absolute;
  top: -4px;
  left: 8px;
  right: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 12px);
  background-color: #606060;
  border-radius: 12px;
  z-index: 2;
  outline: 1px solid white;
  /* Add base transitions here */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Stack Layer 2 (Secondary/Bottom layer) */
.playlist-collections-stack-2 {
  position: absolute;
  top: -8px;
  left: 12px;
  right: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 12px);
  background-color: #505050;
  opacity: 0.7;
  border-radius: 12px;
  z-index: 1;
  outline: 1px solid white;
  /* Add base transitions here */
  transition: background-color 0.3s ease, opacity 0.2s ease, transform 0.2s ease;
}

/* Thumbnail image */
.video-container-playlists-home .thumbnail-playlists-home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

/* Platform badge */
.video-container-playlists-home .platform-badge-playlists-home {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 5;
  color: white;
}

.platform-badge-playlists-home.platform-youtube {
  background: #ff0000;
}

.platform-badge-playlists-home.platform-spotify {
  background: #1db954;
}

.platform-badge-playlists-home.platform-soundcloud {
  background: #ff5500;
}

.platform-badge-playlists-home.platform-audius {
  background: #cc0fe0;
}

.platform-badge-playlists-home.platform-default {
  background: rgba(0, 0, 0, 0.7);
}

/* Track count badge */
.video-container-playlists-home .track-count-badge-playlists-home {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.063rem .25rem; /* 1px 4px in rem */
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 4;
}

/* Duration badge */
.video-container-playlists-home .duration-badge-playlists-home {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 4;
}

/* No thumbnail placeholder */
.video-container-playlists-home .no-thumbnail-playlists-home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.875rem;
  border-radius: 1rem;
}

.video-container-playlists-home .platform-icon-playlists-home {
  width: 32px;
  height: 32px;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

/* Video title styling */
.video-container-playlists-home .video-title-playlists-home {
  text-align: center;
  margin: 0.75rem 0 0.5rem;
  padding: 0 0.5rem;
  line-height: 1.3;
  color: var(--text-primary);
  cursor: pointer;
}

.video-container-playlists-home .playlist-title-text-playlists-home {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-container-playlists-home .playlist-platform-info-playlists-home {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  text-transform: capitalize;
}

/* No videos message */
.video-grid-all-music-grid-playlists-home .no-videos-playlists-home {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 1rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Hover effects for thumbnail area only */
.thumbnail-wrapper-playlists-home:hover .thumbnail-main-container {
  /* transform: translateY(-2px); */
}

.thumbnail-wrapper-playlists-home:hover .playlist-collections-stack-1 {
  /* transform: translateY(-3px); */
}

.thumbnail-wrapper-playlists-home:hover .playlist-collections-stack-2 {
  opacity: 0.8;
  /* transform: translateY(-4px); */
}

/* Dark overlay and play text on hover */
/* .thumbnail-wrapper-playlists-home .thumbnail-main-container::after {
  content: "Listen in a new Tab";
  font-family: var(--font-inter);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 1rem;
  z-index: 20;
  opacity: 0;
} */

.thumbnail-wrapper-playlists-home .thumbnail-main-container::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='64' height='64'%3E%3Cpath fill-rule='evenodd' d='M4.5 5.653c0-1.427 1.529-2.33 2.779-1.643l11.54 6.347c1.295.712 1.295 2.573 0 3.286L7.28 19.99c-1.25.687-2.779-.217-2.779-1.643V5.653Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  font-family: var(--font-inter);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 1rem;
  z-index: 20;
  opacity: 0;
}

/* Show and animate the overlay on hover */
.thumbnail-wrapper-playlists-home:hover .thumbnail-main-container::after {
  background: rgba(0, 0, 0, 0.5) !important;
  opacity: 1 !important;
}

.thumbnail-wrapper-playlists-home .thumbnail-main-container::after:hover {
  opacity: 1 !important;
}

/*aaa*/

/* Show and animate the overlay on hover */
.thumbnail-wrapper-playlists-home:hover .thumbnail-main-container::after {
  background: rgba(0, 0, 0, 0.6);
  /* backdrop-filter: blur(2.5px); */
  opacity: 1;
}

/*aaa*/
/* music-mixes.php Responsive Design */

/* Desktop | 1281px - 1440px  */
@media (max-width: 1280px) {
  /* None, coded on macbook m1 pro */
}

/* Medium Laptop/Desktop | 1515px - 1920px */
@media (max-width: 1515px) {
 /* None, coded on macbook m1 pro */
}

/* Small Laptop/Desktop | 1024px - 1280px */
@media (max-width: 1024px) {
  .video-grid-all-music-grid-playlists-home {
    grid-template-columns: repeat(auto-fit, minmax(0, 20rem)) !important;
    gap: 1.25rem !important;
    width: 90vw !important;
  }
  
  .text-6xl {
    font-size: 2.5rem !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  
  .playlist-title-text-playlists-home {
    font-size: 1rem !important;
  }
  
  .playlist-platform-info-playlists-home {
    font-size: 0.85rem !important;
  }
}

/* Mobile Small Portrait (Normal) | up to 480px */
/* S20+, iPhone 12, iPhone 13 */
@media (max-width: 480px) and (orientation: portrait) {
  .video-grid-all-music-grid-playlists-home {
    grid-template-columns: repeat(1, minmax(0, 20rem)) !important;
    gap: 1rem !important;
    width: 95vw !important;
  }
  
  .text-6xl {
    font-size: 2rem !important;
  }
  
  .sub-title-music {
    font-size: 0.9rem !important;
    padding: 3px 8px !important;
  }
  
  .playlist-title-text-playlists-home {
    font-size: 0.9rem !important;
  }
  
  .playlist-platform-info-playlists-home {
    font-size: 0.8rem !important;
  }
  
  .platform-badge-playlists-home {
    font-size: 0.6rem !important;
    padding: 0.2rem 0.4rem !important;
  }
  
  .duration-badge-playlists-home {
    font-size: 0.7rem !important;
    padding: 0.1rem 0.3rem !important;
  }
  
  .track-count-badge-playlists-home {
    font-size: 0.7rem !important;
    padding: 0.05rem 0.2rem !important;
  }
  
  .playlist-collections-stack-1 {
    left: 4px !important;
    right: 4px !important;
    width: calc(100% - 8px) !important;
    top: -2px !important;
  }
  
  .playlist-collections-stack-2 {
    left: 6px !important;
    right: 6px !important;
    width: calc(100% - 12px) !important;
    top: -4px !important;
  }

  .pt-title {
    margin-top: 2.25rem !important;
  }
}

/* Mobile Small Landscape (Seitlich gehlaten) | up to 950px */
/* S20+, iPhone 14, iPhone 15 Pro in Landscape (Seitlich gehlaten) */
@media (max-width: 950px) and (orientation: landscape) {
  .video-grid-all-music-grid-playlists-home {
    grid-template-columns: repeat(3, minmax(0, 18rem)) !important;
    gap: 1rem !important;
    width: 95vw !important;
  }
  
  .text-6xl {
    font-size: 2.25rem !important;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  
  .sub-title-music {
    font-size: 0.95rem !important;
    padding: 3px 9px !important;
  }
  
  .playlist-title-text-playlists-home {
    font-size: 0.95rem !important;
  }
  
  .playlist-platform-info-playlists-home {
    font-size: 0.85rem !important;
  }
  
  .platform-badge-playlists-home {
    font-size: 0.62rem !important;
  }
  
  .duration-badge-playlists-home {
    font-size: 0.72rem !important;
    padding: 0.12rem 0.35rem !important;
  }
  
  .track-count-badge-playlists-home {
    font-size: 0.72rem !important;
  }
}

/* Mobile Large Portrait (Normal) | 481px - 600px */
/* iPhone 14 Pro Max, Pixel 7 Pro, larger phones */
@media (min-width: 481px) and (max-width: 600px) and (orientation: portrait) {
  .video-grid-all-music-grid-playlists-home {
    grid-template-columns: repeat(1, minmax(0, 22rem)) !important;
    gap: 1.25rem !important;
    width: 95vw !important;
  }
  
  .text-6xl {
    font-size: 2.25rem !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  
  .sub-title-music {
    font-size: 1rem !important;
    padding: 4px 9px !important;
  }
  
  .playlist-title-text-playlists-home {
    font-size: 1rem !important;
  }
  
  .playlist-platform-info-playlists-home {
    font-size: 0.9rem !important;
  }
  
  .platform-badge-playlists-home {
    font-size: 0.64rem !important;
  }
  
  .duration-badge-playlists-home {
    font-size: 0.74rem !important;
    padding: 0.14rem 0.38rem !important;
  }
  
  .track-count-badge-playlists-home {
    font-size: 0.74rem !important;
  }
}

/* Tablet Portrait (Normal) | 601px - 1024px */
@media (min-width: 601px) and (max-width: 1024px) and (orientation: portrait) {
  .video-grid-all-music-grid-playlists-home {
    grid-template-columns: repeat(3, minmax(0, 18rem)) !important;
    gap: 1.25rem !important;
    width: 90vw !important;
  }
  
  .text-6xl {
    font-size: 2.75rem !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  
  .sub-title-music {
    font-size: 1rem !important;
    padding: 4px 10px !important;
  }
  
  .playlist-title-text-playlists-home {
    font-size: 1.05rem !important;
  }
  
  .playlist-platform-info-playlists-home {
    font-size: 0.9rem !important;
  }
  
  .platform-badge-playlists-home {
    font-size: 0.65rem !important;
  }
  
  .duration-badge-playlists-home {
    font-size: 0.75rem !important;
    padding: 0.15rem 0.4rem !important;
  }
  
  .track-count-badge-playlists-home {
    font-size: 0.75rem !important;
  }
}

/* Tablet Landscape (Seitlich gehlaten) | 951px - 1366px */
@media (min-width: 951px) and (max-width: 1366px) and (orientation: landscape) {
  .video-grid-all-music-grid-playlists-home {
    grid-template-columns: repeat(3, minmax(0, 20rem)) !important;
    gap: 1.35rem !important;
    width: 85vw !important;
  }
  
  .text-6xl {
    font-size: 2.75rem !important;
    padding-top: 1.15rem !important;
    padding-bottom: 1.15rem !important;
  }
  
  .sub-title-music {
    font-size: 1rem !important;
    padding: 4px 10px !important;
  }
  
  .playlist-title-text-playlists-home {
    font-size: 1.05rem !important;
  }
  
  .playlist-platform-info-playlists-home {
    font-size: 0.9rem !important;
  }
  
  .platform-badge-playlists-home {
    font-size: 0.65rem !important;
  }
  
  .duration-badge-playlists-home {
    font-size: 0.75rem !important;
    padding: 0.15rem 0.4rem !important;
  }
  
  .track-count-badge-playlists-home {
    font-size: 0.75rem !important;
  }
}