/**
 * HZPROD Press Releases Carousel - Scoped Stylesheet
 * Strictly scoped to .hzprod-press-carousel-wrapper
 * Brand Accent: #FF6A1D (HZPROD Orange)
 */

.hzprod-press-carousel-wrapper {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  color: #ffffff;
  overflow: hidden;
}

.hzprod-press-carousel-wrapper *,
.hzprod-press-carousel-wrapper *::before,
.hzprod-press-carousel-wrapper *::after {
  box-sizing: border-box;
}

/* ==========================================================================
   Header Section (Title & Arrows)
   ========================================================================== */
.hzprod-press-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 20px;
}

.hzprod-press-header-left {
  flex: 1;
  min-width: 0;
}

.hzprod-press-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #FF6A1D;
  margin-bottom: 6px;
  display: block;
}

.hzprod-press-title {
  margin: 0;
  padding: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hzprod-press-desc {
  margin: 8px 0 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #9ca3af;
  max-width: 680px;
}

/* Header Navigation Arrows */
.hzprod-press-nav-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ==========================================================================
   Category Filter Bar & "View All" Button
   ========================================================================== */
.hzprod-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.hzprod-filter-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  padding-bottom: 2px;
}

.hzprod-filter-tabs::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.hzprod-filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #9ca3af;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  outline: none;
  font-family: inherit;
  user-select: none;
  -webkit-user-select: none;
}

.hzprod-filter-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 106, 29, 0.45);
  background: rgba(255, 106, 29, 0.08);
  transform: translateY(-1px);
}

.hzprod-filter-btn.active {
  background: #FF6A1D;
  border-color: #FF6A1D;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(255, 106, 29, 0.38);
}

.hzprod-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #FF6A1D;
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid rgba(255, 106, 29, 0.3);
  border-radius: 9999px;
  background: rgba(255, 106, 29, 0.06);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  margin-left: auto;
}

.hzprod-view-all-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.hzprod-view-all-btn:hover {
  background: #FF6A1D;
  border-color: #FF6A1D;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(255, 106, 29, 0.35);
  transform: translateY(-1px);
}

.hzprod-view-all-btn:hover svg {
  transform: translateX(3px);
}

.hzprod-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  outline: none;
  user-select: none;
  -webkit-user-select: none;
}

.hzprod-nav-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.hzprod-nav-btn:hover:not(.swiper-button-disabled) {
  background: #FF6A1D;
  border-color: #FF6A1D;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(255, 106, 29, 0.35);
  transform: translateY(-1px);
}

.hzprod-nav-prev:hover:not(.swiper-button-disabled) svg {
  transform: translateX(-2px);
}

.hzprod-nav-next:hover:not(.swiper-button-disabled) svg {
  transform: translateX(2px);
}

.hzprod-nav-btn:active:not(.swiper-button-disabled) {
  transform: translateY(0);
}

.hzprod-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==========================================================================
   Swiper Carousel Container
   ========================================================================== */
.hzprod-swiper-container {
  position: relative;
  width: 100%;
  overflow: visible; /* Allows shadows/smooth hover without clip */
}

/* Clipping container for the carousel track */
.hzprod-swiper-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hzprod-swiper-container .swiper-wrapper {
  display: flex;
  box-sizing: border-box;
  transition-property: transform;
}

.hzprod-swiper-container .swiper-slide {
  height: auto; /* Required for equal height flex child */
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* ==========================================================================
   Card Styling
   ========================================================================== */
.hzprod-press-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #121417;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 16px 16px 22px 16px;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.35s ease;
}

.hzprod-press-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 29, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45),
              0 0 20px rgba(255, 106, 29, 0.12);
}

/* Card Image */
.hzprod-card-image-wrap {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #1a1d23;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
}

.hzprod-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hzprod-press-card:hover .hzprod-card-image {
  transform: scale(1.05);
}

/* Image Placeholder fallback */
.hzprod-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #181b21 0%, #222630 100%);
  color: rgba(255, 255, 255, 0.3);
}

.hzprod-card-image-placeholder svg {
  width: 38px;
  height: 38px;
}

/* Card Body Content */
.hzprod-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 18px 4px 0 4px;
}

/* Category Pill Badge */
.hzprod-card-category-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.hzprod-card-category-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 106, 29, 0.12);
  color: #FF6A1D;
  border-radius: 9999px;
  padding: 4px 11px 4px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.hzprod-card-category-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF6A1D;
  margin-right: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255, 106, 29, 0.6);
}

/* Card Title */
.hzprod-card-title {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #f3f4f6;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hzprod-card-title a {
  color: inherit;
  text-decoration: none;
}

.hzprod-press-card:hover .hzprod-card-title {
  color: #ffffff;
}

/* Card Excerpt */
.hzprod-card-excerpt {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #9ca3af;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 18px;
}

/* Card Footer / Meta */
.hzprod-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #6b7280;
  gap: 10px;
}

.hzprod-card-meta-left {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.hzprod-card-date {
  font-weight: 500;
  color: #8b949e;
}

.hzprod-card-dot-sep {
  opacity: 0.5;
  font-weight: bold;
}

.hzprod-card-readtime {
  font-weight: 500;
  color: #8b949e;
}

.hzprod-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 12px;
  color: #FF6A1D;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.hzprod-card-readmore svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.hzprod-press-card:hover .hzprod-card-readmore svg {
  transform: translateX(3px);
}

/* ==========================================================================
   Pagination Dots (Optional)
   ========================================================================== */
.hzprod-swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.hzprod-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 !important;
}

.hzprod-swiper-pagination .swiper-pagination-bullet-active {
  background: #FF6A1D;
  width: 24px;
  box-shadow: 0 0 10px rgba(255, 106, 29, 0.5);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hzprod-press-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .hzprod-press-header {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }

  .hzprod-press-title {
    font-size: 22px;
  }

  .hzprod-press-desc {
    font-size: 14px;
    margin-top: 6px;
  }

  .hzprod-press-nav-group {
    gap: 8px;
    margin-top: 2px;
  }

  .hzprod-nav-btn {
    width: 38px;
    height: 38px;
  }

  .hzprod-nav-btn svg {
    width: 16px;
    height: 16px;
  }

  .hzprod-card-title {
    font-size: 18px;
  }

  .hzprod-press-card {
    padding: 14px 14px 18px 14px;
    border-radius: 16px;
  }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hzprod-press-card,
  .hzprod-card-image,
  .hzprod-nav-btn,
  .hzprod-card-readmore svg,
  .hzprod-spotify-slide-card,
  .hzprod-vnav-btn {
    transition: none !important;
    transform: none !important;
  }
}

/* ==========================================================================
   SPOTIFY TRACKS VERTICAL CAROUSEL (ACTS & COLLABORATORS)
   ========================================================================== */

.hzprod-spotify-vertical-wrapper {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #f3f4f6;
  padding: 30px 0;
}

/* Section Header */
.hzprod-spotify-section-header {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hzprod-spotify-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a1a1aa;
  width: fit-content;
}

.hzprod-badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF6A1D;
  box-shadow: 0 0 10px rgba(255, 106, 29, 0.8);
  animation: hzprodPulse 2s infinite ease-out;
}

@keyframes hzprodPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hzprod-spotify-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
}

.hzprod-spotify-subheading {
  font-size: 15px;
  line-height: 1.65;
  color: #9ca3af;
  max-width: 720px;
  margin: 0;
}

/* Featured Artists & Credits Strip */
.hzprod-credits-strip-container {
  background: rgba(14, 15, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.hzprod-credits-strip-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF6A1D;
  font-weight: 700;
}

.hzprod-credits-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hzprod-collaborator-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: #e4e4e7;
  font-weight: 500;
  transition: all 0.2s ease;
}

.hzprod-collaborator-tag:hover {
  background: rgba(255, 106, 29, 0.12);
  border-color: rgba(255, 106, 29, 0.4);
  color: #ffffff;
}

.tag-bullet {
  color: #FF6A1D;
  font-size: 14px;
  line-height: 1;
}

/* Vertical Carousel Stage */
.hzprod-spotify-stage-container {
  position: relative;
  width: 100%;
  border-radius: 28px;
  background: #050508;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 20px;
  box-sizing: border-box;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}

/* Top & Bottom Fade Masks */
.hzprod-vmask-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to bottom, #050508 10%, transparent 100%);
  pointer-events: none;
  z-index: 10;
}

.hzprod-vmask-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: linear-gradient(to top, #050508 15%, transparent 100%);
  pointer-events: none;
  z-index: 10;
}

/* Swiper Container */
.hzprod-spotify-swiper-container {
  position: relative;
  width: 100%;
  height: 640px;
  overflow: hidden;
  padding: 0 40px;
  box-sizing: border-box;
}

.hzprod-spotify-swiper-container .swiper-wrapper {
  flex-direction: column;
}

.hzprod-spotify-slide {
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Split Slide Card */
.hzprod-spotify-slide-card {
  width: 100%;
  height: 100%;
  max-height: 590px;
  background: #0c0d12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 24px;
  padding: 24px;
  box-sizing: border-box;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.hzprod-spotify-slide-card:hover {
  border-color: rgba(255, 106, 29, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(255, 106, 29, 0.06);
}

/* Player Column */
.hzprod-spotify-player-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.spotify-embed-card-box {
  background: #111218;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.spotify-card-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  color: #a1a1aa;
  letter-spacing: 0.08em;
  padding: 0 4px;
}

.spotify-card-indicator .indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.8);
}

.spotify-iframe-responsive-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #121212;
}

.spotify-iframe-responsive-wrapper iframe {
  display: block;
  width: 100%;
  height: 352px;
  border: none;
  border-radius: 12px;
}

/* Info Column */
.hzprod-spotify-info-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 4px 8px 12px;
  overflow-y: auto;
  box-sizing: border-box;
}

/* Act & Index Header */
.track-act-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.hzprod-act-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 106, 29, 0.12);
  border: 1px solid rgba(255, 106, 29, 0.35);
  color: #FF6A1D;
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.hzprod-index-number {
  font-family: 'Space Grotesk', monospace;
  font-size: 12px;
  color: #71717a;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Track Name */
.hzprod-track-name {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

/* Featured Artists Line */
.hzprod-featured-artists-bar {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  color: #d4d4d8;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.featured-label {
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  color: #a1a1aa;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.featured-names {
  font-weight: 600;
  color: #ffffff;
}

/* Story / Meaning Box */
.hzprod-story-box {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #FF6A1D;
  border-radius: 0 12px 12px 0;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.story-box-title {
  font-family: 'Space Grotesk', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF6A1D;
  margin: 0 0 6px 0;
  font-weight: 700;
}

.hzprod-track-story-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #d1d5db;
  margin: 0;
}

/* Collaborator Chips */
.hzprod-card-collaborators-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.chip-label {
  font-family: 'Space Grotesk', monospace;
  font-size: 10px;
  color: #71717a;
  letter-spacing: 0.08em;
  margin-right: 4px;
}

.collab-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 11.5px;
  color: #e4e4e7;
  font-family: 'Space Grotesk', monospace;
}

/* Production Meta Footer */
.hzprod-track-meta-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  color: #a1a1aa;
  letter-spacing: 0.08em;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.meta-spec-icon {
  font-size: 13px;
}

/* Vertical Navigation Buttons (Up / Down) */
.hzprod-vnav-controls {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}

.hzprod-vnav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(18, 19, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.hzprod-vnav-btn:hover {
  background: #FF6A1D;
  border-color: #FF6A1D;
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(255, 106, 29, 0.4);
}

.hzprod-vnav-btn:active {
  transform: scale(0.96);
}

/* Vertical Pagination Dots */
.hzprod-spotify-vertical-pagination {
  position: absolute;
  left: 14px !important;
  right: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: auto !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 25;
}

.hzprod-v-bullet {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  opacity: 0.4;
  transition: all 0.25s ease;
}

.hzprod-v-bullet .bullet-inner {
  width: 5px;
  height: 16px;
  border-radius: 4px;
  background: #71717a;
  transition: all 0.25s ease;
}

.hzprod-v-bullet .bullet-label {
  font-family: 'Space Grotesk', monospace;
  font-size: 10px;
  color: #a1a1aa;
  display: none;
}

.hzprod-v-bullet.hzprod-v-bullet-active {
  opacity: 1;
}

.hzprod-v-bullet.hzprod-v-bullet-active .bullet-inner {
  height: 28px;
  background: #FF6A1D;
  box-shadow: 0 0 10px rgba(255, 106, 29, 0.8);
}

.hzprod-v-bullet.hzprod-v-bullet-active .bullet-label {
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   ========================================================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .hzprod-spotify-slide-card {
    grid-template-columns: 48% 52%;
    padding: 18px;
    gap: 18px;
    max-height: none;
  }

  .hzprod-spotify-swiper-container {
    height: 600px;
  }

  .hzprod-vnav-controls {
    right: 14px;
  }

  .hzprod-spotify-vertical-pagination {
    left: 12px;
  }
}

/* Mobile (<= 767px) */
@media (max-width: 767px) {
  .hzprod-spotify-stage-container {
    padding: 16px 12px;
    border-radius: 20px;
  }

  .hzprod-spotify-swiper-container {
    height: 740px;
  }

  .hzprod-spotify-slide-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 16px;
    gap: 14px;
    overflow-y: auto;
    max-height: none;
  }

  .spotify-embed-card-box {
    padding: 8px;
  }

  .spotify-iframe-responsive-wrapper iframe {
    height: 280px;
  }

  .hzprod-spotify-info-col {
    padding: 0;
  }

  .hzprod-track-name {
    font-size: 22px;
  }

  .hzprod-vnav-controls {
    display: none;
  }

  .hzprod-spotify-vertical-pagination {
    display: none;
  }
}

/* ==========================================================================
   BLOG CATEGORY SECTIONS (GRID & LOAD MORE) — Widget 4
   Strictly scoped to .hzprod-cat-sections-wrapper
   ========================================================================== */

.hzprod-cat-sections-wrapper {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  color: #ffffff;
}

.hzprod-cat-sections-wrapper *,
.hzprod-cat-sections-wrapper *::before,
.hzprod-cat-sections-wrapper *::after {
  box-sizing: border-box;
}

/* Spacing between stacked category sections (Music, Donation, ...) */
.hzprod-cat-section-block {
  margin-bottom: 64px;
}

.hzprod-cat-section-block:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Category Header
   -------------------------------------------------------------------------- */
.hzprod-cat-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hzprod-cat-header-left {
  flex: 1;
  min-width: 0;
}

.hzprod-cat-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hzprod-cat-indicator-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hzprod-cat-title {
  margin: 0;
  padding: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hzprod-cat-count-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}

.hzprod-cat-desc {
  margin: 10px 0 0 0;
  font-size: 15px;
  line-height: 1.6;
  max-width: 640px;
}

.hzprod-cat-archive-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: #FF6A1D;
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hzprod-cat-archive-link:hover {
  opacity: 0.8;
}

.hzprod-cat-archive-link svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.hzprod-cat-archive-link:hover svg {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   Posts Grid (column count driven by Elementor responsive control;
   these are the pre-Elementor / static-preview fallbacks)
   -------------------------------------------------------------------------- */
.hzprod-cat-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* --------------------------------------------------------------------------
   Post Card
   -------------------------------------------------------------------------- */
.hzprod-cat-post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #0e0f14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.35s ease;
}

.hzprod-cat-post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 29, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45),
              0 0 20px rgba(255, 106, 29, 0.12);
}

.hzprod-post-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1d23;
  flex-shrink: 0;
}

.hzprod-post-thumb-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.hzprod-post-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hzprod-cat-post-card:hover .hzprod-post-thumb {
  transform: scale(1.05);
}

.hzprod-post-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hzprod-ph-icon {
  font-size: 32px;
  opacity: 0.5;
}

.hzprod-placeholder-card {
  opacity: 0.92;
}

.hzprod-post-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 106, 29, 0.14);
  color: #FF6A1D;
  border: 1px solid rgba(255, 106, 29, 0.35);
  border-radius: 9999px;
  padding: 4px 11px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  backdrop-filter: blur(4px);
}

.hzprod-post-content-wrap {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 18px 18px 20px;
}

.hzprod-post-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #8b949e;
  font-weight: 500;
  margin-bottom: 10px;
}

.hzprod-post-title {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #f3f4f6;
  transition: color 0.25s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hzprod-post-title a {
  color: inherit;
  text-decoration: none;
}

.hzprod-cat-post-card:hover .hzprod-post-title {
  color: #ffffff;
}

.hzprod-post-excerpt {
  margin: 0 0 18px;
  padding: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #9ca3af;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hzprod-post-footer-row {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hzprod-post-readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 12px;
  color: var(--accent-hover, #FF6A1D);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.hzprod-post-readmore-link svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s ease;
}

.hzprod-cat-post-card:hover .hzprod-post-readmore-link svg {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   "More" Button + Loading / Completed States
   -------------------------------------------------------------------------- */
.hzprod-cat-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.hzprod-cat-loadmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hzprod-cat-loadmore-btn:hover {
  background: #FF6A1D;
  border-color: #FF6A1D;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255, 106, 29, 0.32);
}

.hzprod-cat-loadmore-btn:disabled {
  cursor: default;
  opacity: 0.85;
  transform: none;
}

.hzprod-cat-loadmore-btn .btn-text {
  transition: opacity 0.2s ease;
}

.hzprod-cat-loadmore-btn .btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.hzprod-cat-loadmore-btn:hover .btn-arrow {
  transform: translateY(2px);
}

.hzprod-cat-loadmore-btn .btn-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  animation: hzprodBtnSpin 0.7s linear infinite;
}

.hzprod-cat-loadmore-btn.is-loading .btn-spinner {
  display: inline-block;
}

.hzprod-cat-loadmore-btn.is-loading .btn-text {
  opacity: 0.6;
}

.hzprod-cat-loadmore-btn.is-loading .btn-arrow {
  display: none;
}

@keyframes hzprodBtnSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hzprod-all-loaded-notice {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints (mirrors the Elementor column control's
   tablet/mobile defaults, and covers the non-Elementor static preview)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hzprod-cat-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hzprod-cat-title {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .hzprod-cat-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hzprod-cat-posts-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hzprod-cat-title {
    font-size: 22px;
  }

  .hzprod-cat-section-block {
    margin-bottom: 48px;
  }

  .hzprod-cat-loadmore-btn {
    width: 100%;
    justify-content: center;
  }

  .hzprod-cat-more-wrapper {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hzprod-cat-post-card,
  .hzprod-post-thumb,
  .hzprod-post-title,
  .hzprod-post-readmore-link svg,
  .hzprod-cat-archive-link svg,
  .hzprod-cat-loadmore-btn,
  .hzprod-cat-loadmore-btn .btn-arrow {
    transition: none !important;
    transform: none !important;
  }

  .hzprod-cat-loadmore-btn .btn-spinner {
    animation: none !important;
  }
}
