/* ==========================================================================
   MOGULZ HUB - GLOBAL DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

:root {
  --primary-black: #ffffff;
  --secondary-black: #ffffff;
  --pure-white: #0a0a0a;
  --accent-purple: #800020;
  --accent-red: #ff1a1a;
  --text-gray: #555555;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--primary-black);
  background-image: 
    radial-gradient(at 0% 0%, rgba(128, 0, 32, 0.03) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(128, 0, 32, 0.02) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--pure-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Grids & Framework Containers */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.2rem;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
  }
}

.main-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  padding-top: 2rem;
}

@media (max-width: 950px) {
  .main-layout {
    grid-template-columns: 1fr;
  }
}

/* Sidebar & Sticky Components */
.sidebar-area {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}

@media (max-width: 950px) {
  .sidebar-area {
    display: none;
  }
}

.chart-section {
  background: var(--secondary-black);
  padding: 2rem;
  border-left: 3px solid var(--accent-purple);
}

.chart-title {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.chart-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.chart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chart-rank {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-purple);
  width: 30px;
}

.chart-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
}

/* Grid Sections & Headers */
.section-header-simple {
  margin-bottom: 2rem;
}

.section-title-wire {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.chart-section-wire {
  margin-bottom: 4rem;
}

.chart-title-wire {
  display: inline-block;
  border: 1px solid var(--accent-purple);
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.chart-item-wire {
  padding: 1rem 0;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.chart-item-wire:last-child {
  border-bottom: none;
}

.chart-item-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chart-rank-small {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--accent-purple);
  width: 25px;
  flex-shrink: 0;
}

.chart-item-text h4 {
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.chart-item-text p {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-gray);
  text-transform: uppercase;
}

.sticky-sidebar-item {
  position: sticky;
  top: 100px;
}

.sidebar-promo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  margin-top: 1rem;
}

.sidebar-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sidebar-promo:hover img {
  transform: scale(1.1);
}

.promo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: white;
}

.promo-overlay span {
  display: inline-block;
  background: var(--accent-purple);
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.promo-overlay h4 {
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.heading-xl {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--accent-purple);
  color: white;
  padding: 0.8rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary:hover {
  background-color: var(--accent-red);
  transform: translateY(-2px);
}

/* Home Intro Header */
.home-intro {
  text-align: center;
  padding: 4rem 0 2rem;
}

.home-title {
  font-size: 4.5rem;
  font-weight: 950;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.home-slogan {
  font-size: 1.2rem;
  color: var(--text-gray);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .home-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }
  .home-slogan {
    font-size: 0.95rem;
    letter-spacing: 1px;
  }
  .home-intro {
    padding: 2.5rem 0 1.5rem;
  }
}

/* ==========================================================================
   NAVBAR COMPONENT
   ========================================================================== */
.navbar {
  height: 80px;
  background-color: var(--primary-black);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: 950;
  letter-spacing: -1.5px;
  color: #000;
  cursor: pointer;
}

.nav-logo img {
  flex-shrink: 0;
  object-fit: contain;
}

.nav-logo span {
  color: var(--accent-purple);
}

.nav-links.centered {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links li a {
  color: #000000 !important;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-purple);
  transition: var(--transition);
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1001;
}

.icon-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.icon-btn:hover {
  color: var(--accent-purple);
}

.search-overlay-active {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.search-input-wrapper {
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(112, 0, 255, 0.2);
  transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-purple);
  box-shadow: 0 0 20px rgba(112, 0, 255, 0.1);
}

.search-input-icon {
  color: var(--accent-purple);
  font-size: 1.1rem;
  margin-right: 1.2rem;
}

.global-search-input {
  flex: 1;
  background: none;
  border: none;
  color: #000;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.8rem 0;
}

.global-search-input:focus {
  outline: none;
}

.global-search-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.close-search-btn {
  background: none;
  border: none;
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.close-search-btn:hover {
  color: var(--accent-red);
  transform: rotate(90deg);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
  color: var(--accent-purple);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1500;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links.centered {
    position: fixed;
    top: 15px;
    right: -320px;
    left: auto;
    transform: none;
    width: 280px;
    height: calc(100vh - 30px);
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem;
    gap: 1.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2000;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.15);
    border-radius: 20px 0 0 20px;
    display: flex;
    opacity: 0;
  }

  .nav-links.centered.active {
    right: 0;
    opacity: 1;
  }

  .mobile-menu-header {
    font-size: 1.3rem;
    font-weight: 950;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    color: var(--accent-purple);
    display: block !important;
  }

  .nav-links li {
    width: 100%;
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.4s ease;
  }

  .nav-links.centered.active li {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-links.centered.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.centered.active li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.centered.active li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.centered.active li:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.centered.active li:nth-child(5) { transition-delay: 0.3s; }

  .nav-links li a {
    font-size: 1.1rem !important;
    font-weight: 900;
    display: block;
    width: 100%;
    padding: 0.6rem 0;
  }

  .desktop-only-admin {
    display: none !important;
  }

  .mobile-only-link {
    display: block !important;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1rem;
    margin-top: 1rem;
  }
}

.mobile-only-link {
  display: none;
}

.mobile-menu-header {
  display: none;
}

/* ==========================================================================
   HEROSECTION & CAROUSELS
   ========================================================================== */
.hero-section {
  padding: 4rem 0;
  background-color: var(--primary-black);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-fresh-tag {
  color: var(--accent-purple);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
  letter-spacing: 1px;
}

.hero-main-title {
  font-size: 4.5rem;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.hero-artist-name {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
}

.music-cover-box {
  position: relative;
  aspect-ratio: 1/1;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.music-cover-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-flex {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-main-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }
  .hero-artist-name {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  .hero-section {
    padding: 2rem 0;
  }
}

/* ==========================================================================
   CARD & GRID SYSTEM
   ========================================================================== */
.content-section {
  padding: 4rem 0;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-line {
  height: 2px;
  background-color: var(--accent-purple);
  width: 100%;
}

.content-grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

@media (max-width: 768px) {
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .section-header {
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .content-section {
    padding: 2.5rem 0;
  }
}

/* Standard Editorial Card */
.card {
  background-color: var(--secondary-black);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-purple);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.card-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-purple);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  letter-spacing: 0.5px;
}

.card-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-date {
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-description {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.card-music .card-image-wrapper {
  height: 280px;
}

.card-play-btn {
  background: transparent;
  border: 1px solid var(--accent-purple);
  color: var(--accent-purple);
  padding: 0.5rem 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.card-play-btn:hover {
  background: var(--accent-purple);
  color: white;
}

/* Horizontal Editorial Card */
.h-card {
  display: flex;
  gap: 2rem;
  background-color: var(--secondary-black);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.h-card:hover {
  border-color: var(--accent-purple);
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.h-card-image {
  flex: 0 0 260px;
  height: 170px;
  overflow: hidden;
  position: relative;
}

.h-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.h-card:hover .h-card-image img {
  transform: scale(1.05);
}

.h-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.h-card-tag {
  color: var(--accent-purple);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.h-card-title {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.h-card-excerpt {
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.h-card-date {
  font-size: 0.75rem;
  color: #555;
  font-weight: 700;
}

@media (max-width: 768px) {
  .h-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem;
  }
  .h-card-image {
    flex: none;
    width: 100%;
    height: 200px;
  }
  .h-card-title {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   PERSISTENT MUSIC PLAYER
   ========================================================================== */
.music-player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: #0f0f0f;
  color: white;
  border-top: 2px solid var(--accent-purple);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1900;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.music-player.active {
  transform: translateY(0);
}

.player-track-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 300px;
}

.player-img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 4px;
}

.player-title {
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.player-artist {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.player-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  max-width: 600px;
}

.player-buttons {
  display: flex;
  align-items: center;
}

.player-controls button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  cursor: pointer;
  margin: 0 1.2rem;
  transition: color 0.3s ease;
}

.player-controls button:hover {
  color: var(--accent-purple);
}

.player-controls button.play-btn {
  background: white;
  color: black;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: none;
  margin: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.player-controls button.play-btn:hover {
  transform: scale(1.05);
  background: var(--accent-purple);
  color: white;
}

.player-progress-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.player-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: #333;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.progress {
  width: 0%;
  height: 100%;
  background: var(--accent-purple);
  border-radius: 2px;
}

.player-volume {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 150px;
  justify-content: flex-end;
}

.player-volume i {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.volume-bar {
  width: 80px;
  height: 4px;
  background: #333;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.volume-progress {
  width: 80%;
  height: 100%;
  background: var(--accent-purple);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .music-player {
    padding: 0 1rem;
    height: 80px;
  }
  .player-track-info {
    width: 150px;
  }
  .player-img {
    width: 45px;
    height: 45px;
  }
  .player-title {
    font-size: 0.8rem;
  }
  .player-volume {
    display: none;
  }
  .player-controls {
    margin-right: 0;
  }
}

/* ==========================================================================
   ARTICLE DETAIL PAGE
   ========================================================================== */
.article-detail {
  padding-bottom: 8rem;
}

.article-header {
  padding-top: 4rem;
  padding-bottom: 2rem;
  text-align: center;
}

.article-category {
  background: var(--accent-purple);
  color: white;
  padding: 0.3rem 1rem;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.article-title {
  font-size: 3.5rem;
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.article-meta {
  color: var(--text-gray);
  font-weight: 700;
  display: flex;
  justify-content: center;
  gap: 2rem;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.article-featured-image {
  width: 100%;
  height: 60vh;
  margin-bottom: 4rem;
  border-radius: 8px;
  overflow: hidden;
}

.article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(0,0,0,0.8);
}

.article-content p {
  margin-bottom: 2rem;
}

.lead {
  font-size: 1.4rem;
  color: #000;
  font-weight: 600;
}

blockquote {
  border-left: 4px solid var(--accent-purple);
  padding-left: 2rem;
  margin: 3rem 0;
  font-size: 1.8rem;
  font-weight: 900;
  font-style: italic;
  color: #000;
  line-height: 1.3;
}

/* Related Content section */
.related-section {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.related-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.related-header h3 {
  font-size: 1.4rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.related-line {
  height: 2px;
  background: var(--accent-purple);
  width: 100%;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.related-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
}

.related-img-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.related-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-card:hover img {
  transform: scale(1.05);
}

.related-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent-purple);
  color: #fff;
  padding: 0.2rem 0.6rem;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.related-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
  .related-header h3 {
    font-size: 1.1rem;
  }
  .article-header {
    padding-top: 2rem;
  }
  .article-title {
    font-size: 2.2rem;
  }
  .article-featured-image {
    height: 35vh;
    margin-bottom: 2rem;
  }
  .article-content {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  blockquote {
    font-size: 1.3rem;
    padding-left: 1.5rem;
  }
}

/* ==========================================================================
   FOOTER COMPONENT
   ========================================================================== */
.main-footer {
  background: #ffffff;
  color: #000000;
  padding: 6rem 0 4rem;
  border-top: 1px solid rgba(128, 0, 32, 0.15);
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1.5fr 1.5fr 1.5fr 2fr;
  gap: 3rem;
  margin-bottom: 5rem;
  align-items: start;
}

.footer-brand .nav-logo {
  color: #000000;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-links h3 {
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-purple);
}

.footer-links ul {
  padding: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-purple);
  transform: translateX(5px);
}

.footer-social h3 {
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-purple);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: #000000;
  background: rgba(0, 0, 0, 0.05);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(128, 0, 32, 0.3);
}

.footer-bottom {
  padding-top: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .footer-brand p {
    margin: 0 auto;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ==========================================================================
   SUPPLEMENTARY COMPONENT STYLES
   ========================================================================== */

/* Sidebar Thumbnail Images */
.chart-item-thumb {
  width: 45px;
  height: 45px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.chart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Home Title Accent Span */
.home-title span {
  color: var(--accent-purple);
}

/* Heading Accent Spans */
.heading-xl span {
  color: var(--accent-purple);
}

/* Fresh Out Carousel Section */
.fresh-out-section {
  padding-bottom: 2rem;
  background-color: var(--primary-black);
  border-bottom: 1px solid rgba(128, 0, 32, 0.1);
}

.fresh-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-purple) transparent;
}

.fresh-carousel::-webkit-scrollbar {
  height: 6px;
}

.fresh-carousel::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.fresh-carousel::-webkit-scrollbar-thumb {
  background-color: var(--accent-purple);
  border-radius: 10px;
}

.fresh-card-wrap {
  flex: 0 0 calc((100% - 1.5rem * 5) / 6);
  min-width: 230px;
  scroll-snap-align: start;
}

@media (max-width: 1400px) {
  .fresh-card-wrap {
    flex: 0 0 230px;
  }
}

/* Video Embed Responsive Container */
.video-orchestration iframe {
  border: none;
}

/* Admin Container hides footer and navbar padding */
.admin-container ~ .main-footer {
  display: none;
}
