/* =========================================================
   CLASSICX FM - HERO FRONT PAGE
========================================================= */

.front-page-content .hero-card {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #081335;
  color: #ffffff;
  overflow: hidden;
}

.hero-inner {
  width: min(1120px, 100%);
  min-height: 378px;
  margin: 0 auto;
  padding: 2rem 0 1.75rem;
  display: grid;
  grid-template-columns: minmax(330px, .9fr) minmax(460px, 1.1fr);
  gap: 4rem;
  align-items: center;
}

.hero-presenter {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.hero-badge {
  align-self: flex-start;
  margin-left: 1.5rem;
  padding: .35rem .9rem;
  border-radius: 999px;
  background: #ff1018;
  color: #ffffff;
  font-size: .72rem;
  font-weight: 900;
}

.hero-portrait-wrap {
  width: 230px;
  height: 245px;
  position: relative;
  margin-top: .5rem;
  overflow: hidden;
}

.hero-logo-mark {
  position: absolute;
  top: 1rem;
  right: .5rem;
  color: var(--accent-color);
  font-size: 12rem;
  font-weight: 900;
  line-height: .8;
  opacity: .75;
}

.hero-portrait {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mask-image: linear-gradient(to bottom, #000 85%, transparent 100%);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
}

.hero-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  border: 0;
  background: none;
  color: #ffffff;
  font-size: .7rem;
  font-weight: 700;
  cursor: pointer;
}

.hero-action-icon { font-size: 1.05rem; line-height: 1; }

.hero-show { display: flex; flex-direction: column; gap: 1.2rem; }

.hero-show-heading { display: flex; align-items: center; gap: 1rem; }

.hero-play {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: #ff1018;
  color: #ffffff;
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 16, 24, .25);
}

.front-page-content .hero-title {
  margin: 0;
  padding: .45rem 1.2rem;
  border-radius: 999px;
  background: #ffffff;
  color: #101116;
  font-size: 1.25rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
}

.hero-time {
  display: inline-block;
  margin-top: .35rem;
  padding: .35rem 1rem;
  border-radius: 999px;
  background: #020a24;
  color: #ffffff;
  font-size: .78rem;
  font-weight: 800;
  font-style: italic;
}

.front-page-content .hero-text { display: none; }

.hero-track {
  min-height: 75px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 13px;
}

.hero-track > strong { font-size: .8rem; }

.hero-track-cover {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 6px;
  background: linear-gradient(135deg, #e7d5ae, #1e2337);
  color: #101116;
  font-size: 1.4rem;
}

.hero-track-info { min-width: 0; display: flex; flex-direction: column; gap: .15rem; }
.hero-track-info strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 1rem; }
.hero-track-info span { color: #aeb4c7; font-size: .82rem; }

.hero-playlist {
  align-self: flex-end;
  padding: .55rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-size: .78rem;
  font-weight: 800;
  font-style: italic;
  cursor: pointer;
}

.hero-playlist span { margin-left: .6rem; font-size: 1.2rem; line-height: 0; }

@media (max-width: 900px) {
  .front-page-content .hero-card { padding: 0 1rem 1.5rem; }
  .hero-inner { min-height: 0; padding: 1.25rem 0 0; display: flex; flex-direction: column; gap: 1.5rem; }
  .hero-presenter, .hero-show { width: 100%; }
  .hero-badge { align-self: center; margin-left: 0; }
  .hero-portrait-wrap { width: 190px; height: 190px; }
  .hero-actions { gap: 1rem; }
  .hero-playlist { align-self: flex-start; }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .hero-inner {
    min-height: 320px;
    padding: 1.5rem 1.25rem 1.25rem;
    grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
    gap: 2rem;
  }

  .hero-portrait-wrap { width: 190px; height: 210px; }
  .hero-actions { gap: .65rem; }
  .hero-action { font-size: .62rem; }
}
