/* Animations & base setup */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.radio90hit * {
  box-sizing: border-box;
}

.radio90hit {
  --primary-bg: #050509;
  --card-bg: rgba(20,10,40,.92);
  --card-bg-hover: rgba(30,15,50,.96);
  --text: #f2f3f7;
  --text-bright: #fff;
  --accent: #1fb4ff;
  --accent-hover: #7fd8ff;
  --muted: #b0b4c3;
  --highlight: #ffd96b;

  --border-subtle: rgba(255,255,255,.07);
  --border-medium: rgba(255,255,255,.12);
  --border-strong: rgba(255,255,255,.22);

  --shadow-sm: 0 6px 16px rgba(0,0,0,.3), 0 2px 6px rgba(0,0,0,.2);
  --shadow-md: 0 14px 34px rgba(0,0,0,.6), 0 6px 16px rgba(0,0,0,.4),
               0 0 0 1px rgba(255,255,255,.04);
  --shadow-lg: 0 22px 54px rgba(0,0,0,.75), 0 12px 28px rgba(80,50,180,.2),
               0 0 0 1px rgba(255,255,255,.05);
  --shadow-xl: 0 30px 70px rgba(0,0,0,.85), 0 15px 35px rgba(80,50,180,.25),
               0 0 40px rgba(100,150,255,.15);

  --transition-fast: .15s cubic-bezier(.4,0,.2,1);
  --transition-base: .25s cubic-bezier(.4,0,.2,1);
  --transition-slow: .35s cubic-bezier(.4,0,.2,1);
  --transition-bounce: .3s cubic-bezier(.34,1.56,.64,1);

  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─────────────────────────────────────
   PROGRAM – ZI & CARD
   ───────────────────────────────────── */

.radio90hit .program-day {
  background:
    radial-gradient(circle at top left, rgba(120,94,255,.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(236,72,153,.14), transparent 55%),
    var(--card-bg);
  border-radius: 20px;
  padding: 1.4rem 1.5rem;
  margin-bottom: 2.2rem;
  color: var(--text);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  animation: fadeInUp .6s ease-out;
}

.radio90hit .program-day h3 {
  color: #fcf;
  font-weight: 800;
  margin: 0 0 1.2rem;
  font-size: 1.35rem;
  letter-spacing: .02em;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

/* program-card + now-show-card share base layout */
.now-show-card,
.radio90hit .program-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.radio90hit .program-card {
  padding: 1.2rem 1.3rem;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.05), transparent 50%),
    var(--card-bg);
  box-shadow: var(--shadow-md);
  color: var(--text);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base);
}

.radio90hit .program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 45%, rgba(255,255,255,.04));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.radio90hit .program-card:hover {
  transform: translateY(-3px);
  background: var(--card-bg-hover);
  border-color: var(--border-medium);
  box-shadow:
    0 18px 42px rgba(0,0,0,.75),
    0 8px 20px rgba(80,50,180,.25),
    0 0 35px rgba(100,150,255,.15);
}

.radio90hit .program-card:hover::before {
  opacity: 1;
}

.radio90hit .program-card .info {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.radio90hit .program-card .title a {
  font-weight: 700;
  font-size: 1.08rem;
}

.radio90hit .program-card .title a:hover {
  color: var(--accent-hover);
  text-shadow: 0 0 12px rgba(127,216,255,.4);
}

.radio90hit .program-card .presenter {
  color: var(--muted);
  font-style: italic;
  margin-bottom: .3rem;
  font-size: .92rem;
  font-weight: 500;
}

.radio90hit .program-card .desc {
  color: var(--text);
  font-size: .93rem;
  line-height: 1.6;
  opacity: .95;
}

/* ─────────────────────────────────────
   NOW SHOW CARD
   ───────────────────────────────────── */

.radio90hit.now-show {
  padding: 1rem;
  color: var(--text-bright);
}

.now-show-card {
  background:
    radial-gradient(circle at top left, rgba(120,94,255,.2), transparent 55%),
    radial-gradient(circle at bottom right, rgba(236,72,153,.15), transparent 55%),
    var(--card-bg);
  border-radius: 18px;
  padding: 1.3rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(24px);
  font-size: .98rem;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.now-show-card::before,
.radio-show-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.now-show-card::before {
  background: radial-gradient(circle at 20% 20%, rgba(255,100,200,.15), transparent 60%);
  opacity: .6;
  transition: opacity var(--transition-slow);
}

.now-show-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-medium);
  box-shadow:
    0 26px 60px rgba(0,0,0,.85),
    0 14px 32px rgba(80,50,180,.3),
    0 0 45px rgba(100,150,255,.2);
}

.now-show-card:hover::before {
  opacity: .9;
}

.now-show-card > * {
  position: relative;
  z-index: 1;
}

.now-show-card .now-thumb {
  position: relative;
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,100,200,.15), rgba(100,150,255,.15));
  box-shadow:
    0 8px 22px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.12);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.now-show-card:hover .now-thumb {
  transform: scale(1.03);
  box-shadow:
    0 12px 30px rgba(0,0,0,.75),
    0 0 30px rgba(255,100,200,.2),
    0 0 0 1px rgba(255,255,255,.16);
}

.now-show-card .now-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.now-show-card:hover .now-thumb img {
  transform: scale(1.08);
}

.now-show-card .now-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .3rem;
}

.now-show-card h4 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 700;
}

.now-show-card h4 a,
.radio-show-card h4 a,
.radio90hit .program-card .title a {
  color: var(--accent);
  text-decoration: none;
  transition:
    color var(--transition-fast),
    text-shadow var(--transition-fast);
}

.now-show-card h4 a:hover {
  color: var(--highlight);
  text-shadow: 0 0 14px rgba(255,214,107,.5);
}

.now-show-card .now-presenter {
  font-style: italic;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 500;
}

.now-show-card .now-desc {
  font-size: .93rem;
  color: rgba(255,255,255,.92);
  line-height: 1.5;
  max-height: 4.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.now-show-card .now-readmore {
  display: inline-block;
  font-size: .88rem;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .3rem;
  transition:
    color var(--transition-fast),
    transform var(--transition-bounce);
}

.now-show-card .now-readmore:hover {
  color: var(--highlight);
  transform: translateX(4px);
}

/* ─────────────────────────────────────
   SHOWS GRID (LISTĂ EMISIUNI)
   ───────────────────────────────────── */

.radio90hit.shows-wrapper {
  margin: 2.2rem auto;
  max-width: 1200px;
  padding: 1rem;
}

.radio-shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

/* Card listă emisiune */
.radio-show-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top left, rgba(120,94,255,.22), transparent 52%),
    radial-gradient(circle at bottom right, rgba(236,72,153,.16), transparent 52%),
    var(--card-bg);
  border-radius: 20px;
  padding: 0;
  color: var(--text-bright);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    filter var(--transition-base);
}

.radio-show-card::before {
  background: linear-gradient(135deg,
    rgba(255,255,255,.09),
    transparent 42%,
    rgba(255,255,255,.05));
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
}

.radio-show-card:hover {
  transform: translateY(-6px);
  border-color: rgba(147,197,253,.85);
  box-shadow:
    0 24px 58px rgba(0,0,0,.85),
    0 14px 32px rgba(80,50,180,.3),
    0 0 40px rgba(100,150,255,.22);
  filter: saturate(1.1);
}

.radio-show-card:hover::before {
  opacity: 1;
}

/* Thumb + fallback image */
.radio-show-card .thumb {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(255,100,200,.12), rgba(100,150,255,.12));
}

.now-show-card .now-thumb img,
.radio-show-card .thumb img,
.radio-show-card > img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.radio-show-card .thumb img {
  height: 100%;
  position: absolute;
  inset: 0;
}

.radio-show-card > img {
  position: relative;
  height: 220px;
  display: block;
}

.radio-show-card:hover .thumb img,
.radio-show-card:hover > img {
  transform: scale(1.08);
}

/* Content sub imagine */
.radio-show-card > :not(.thumb):not(img) {
  position: relative;
  z-index: 2;
  padding: 0 1.2rem;
}

.radio-show-card h4 {
  margin: 1rem 0 .4rem;
  padding: 0 1.2rem;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.radio-show-card h4 a:hover {
  color: var(--accent-hover);
  text-shadow: 0 0 14px rgba(127,216,255,.5);
}

.radio-show-card .presenter {
  font-style: italic;
  color: var(--muted);
  margin-bottom: .65rem;
  font-size: .92rem;
  font-weight: 500;
}

/* Descriere scurtă extensibilă în card */
.short-desc-wrapper {
  position: relative;
  margin-bottom: 1rem;
}

.short-desc-text {
  font-size: .93rem;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  max-height: 4.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: max-height var(--transition-slow);
}

.short-desc-text.expanded {
  max-height: none;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.see-more-btn {
  background: none;
  color: var(--accent);
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: 0;
  padding: .3rem 0 0;
  cursor: pointer;
  transition:
    color var(--transition-fast),
    transform var(--transition-bounce);
}

.see-more-btn:hover {
  color: var(--accent-hover);
  transform: translateX(3px);
}

.see-more-btn.active {
  color: var(--highlight);
}

/* Icone social card */
.social-links {
  margin: .75rem 0 1.2rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  gap: .65rem;
}

.social-links a {
  color: rgba(255,255,255,.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-bounce);
}

/* ─────────────────────────────────────
   PAGINĂ SINGLE SHOW – VARIANTA NOUĂ (r90-show-*)
   ───────────────────────────────────── */

.r90-show-page,
.r90-show-social a,
.social-links a {
  border: 1px solid var(--border-subtle);
}

.r90-show-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.8rem 2rem 3.2rem;
  display: grid;
  grid-template-columns: minmax(0,300px) minmax(0,1fr);
  gap: 3.5rem;
  background:
    radial-gradient(circle at top left, rgba(255,111,206,.22), transparent 52%),
    radial-gradient(circle at bottom right, rgba(0,220,255,.18), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(120,80,255,.08), transparent 70%),
    var(--card-bg);
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(24px);
  animation: fadeInUp .7s ease-out;
}

.r90-show-cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: sticky;
  top: 2rem;
}

.r90-show-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  margin-bottom: 1.9rem;
  box-shadow:
    0 18px 44px rgba(0,0,0,.85),
    0 8px 20px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.1);
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-slow);
}

.r90-show-cover img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 24px 56px rgba(0,0,0,.9),
    0 12px 28px rgba(0,0,0,.7),
    0 0 50px rgba(255,111,206,.3);
}

.r90-show-badge {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #f9f2ff;
  padding: .35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(10px);
  box-shadow:
    0 4px 12px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.2);
  font-weight: 700;
}

.r90-show-social {
  margin-top: 1.3rem;
  display: flex;
  gap: .85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.r90-show-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.05rem;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-bounce),
    box-shadow var(--transition-base);
}

.r90-show-content {
  color: var(--text-bright);
}

.r90-show-title {
  font-family: var(--ast-heading-font-family, 'Bebas Neue', system-ui);
  font-size: clamp(2.6rem, 3.5vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 .3rem;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff, #e0c3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 16px rgba(0,0,0,.5);
}

.r90-show-host {
  font-size: 1rem;
  font-style: italic;
  color: #f6cfff;
  margin-bottom: 2rem;
  font-weight: 500;
}

.r90-show-block {
  font-size: 1.02rem;
  line-height: 1.7;
}

.r90-show-block p {
  color: rgba(255,255,255,.94);
  margin: 0 0 .85rem;
}

.r90-show-block p:last-child,
.radio-show-content p:last-child {
  margin-bottom: 0;
}

/* ─────────────────────────────────────
   PAGINĂ SINGLE SHOW – VARIANTA CLASICĂ (.radio-show-*)
   ───────────────────────────────────── */

body.single-radio_show .radio-show-single {
  padding: 3.5rem 1rem 4.5rem;
}

body.single-radio_show .site-content {
  padding-top: 0;
  padding-bottom: 0;
}

.radio90hit.radio-show-page {
  max-width: 1080px;
  margin: 2.8rem auto 3.5rem;
  padding: 2rem 2rem 2.5rem;
  background:
    radial-gradient(circle at top left, rgba(120,94,255,.2), transparent 55%),
    radial-gradient(circle at bottom right, rgba(236,72,153,.15), transparent 55%),
    var(--card-bg);
  border-radius: 28px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(24px);
  color: var(--text-bright);
  animation: fadeInUp .7s ease-out;
}

.radio-show-header {
  display: flex;
  gap: 2.2rem;
  align-items: flex-start;
  margin-bottom: 2.2rem;
}

.radio-show-thumb {
  flex-shrink: 0;
}

.radio-show-thumb img {
  width: 280px;
  max-width: 100%;
  border-radius: 22px;
  display: block;
  box-shadow:
    0 16px 38px rgba(0,0,0,.75),
    0 6px 16px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.08);
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-slow);
}

.radio-show-thumb img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 22px 48px rgba(0,0,0,.85),
    0 10px 24px rgba(80,50,180,.3),
    0 0 40px rgba(100,150,255,.2);
}

.radio-show-meta {
  flex: 1;
  min-width: 0;
}

.radio-show-title {
  margin: 0 0 .4rem;
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  line-height: 1.15;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, #e0c3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.radio-show-presenter {
  margin: 0;
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.radio-show-presenter span {
  opacity: .85;
  margin-right: .3rem;
}

.radio-show-content {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255,255,255,.94);
}

.radio-show-content p {
  margin: 0 0 .9rem;
}

.radio-show-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-medium);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: .95rem;
}

.radio-show-footer-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .85rem;
  color: var(--muted);
}

.radio-show-social {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.1rem;
}

/* Pills social în footer */
.show-social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.2rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
  color: var(--accent);
  overflow: hidden;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-bounce),
    box-shadow var(--transition-base);
}

.show-social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  transform: translateX(-100%);
  transition: transform .6s ease;
}

/* ─────────────────────────────────────
   STATE & HOVERS (grupate)
   ───────────────────────────────────── */

.social-links a:hover,
.r90-show-social a:hover {
  color: var(--accent-hover);
  border-color: var(--accent);
}

.social-links a:hover {
  background: rgba(31,180,255,.12);
  transform: translateY(-2px);
  box-shadow:
    0 6px 18px rgba(0,0,0,.4),
    0 0 20px rgba(31,180,255,.3);
}

.r90-show-social a:hover {
  background: rgba(31,180,255,.15);
  transform: translateY(-3px);
  box-shadow:
    0 8px 22px rgba(0,0,0,.5),
    0 0 25px rgba(31,180,255,.3);
}

.show-social-link:hover {
  color: var(--accent-hover);
  background: rgba(31,180,255,.12);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow:
    0 6px 18px rgba(0,0,0,.4),
    0 0 22px rgba(31,180,255,.25);
}

.show-social-link:hover::before {
  transform: translateX(100%);
}

/* ─────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────── */

@media (max-width: 960px) {
  .r90-show-page {
    grid-template-columns: minmax(0,1fr);
    padding: 2.2rem 1.5rem 2.8rem;
    gap: 2.5rem;
  }

  .r90-show-cover {
    max-width: 300px;
    margin: 0 auto;
    position: static;
  }
}

@media (max-width: 768px) {
  .radio90hit.radio-show-page {
    margin: 1.8rem 1rem 2.5rem;
    padding: 1.5rem 1.2rem 2rem;
  }

  .radio-show-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.8rem;
  }

  .radio-show-thumb img {
    width: 280px;
  }

  .radio-show-meta {
    width: 100%;
  }

  .radio-show-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: .8rem;
  }

  .radio-show-social {
    width: 100%;
  }

  .radio-shows-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }

  .radio-show-card .thumb,
  .radio-show-card > img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .radio-show-single {
    padding: 2.5rem .75rem 3.5rem;
  }

  .r90-show-page {
    margin: 0;
    border-radius: 24px;
    padding: 1.8rem 1.2rem 2.2rem;
  }

  .r90-show-title,
  .radio-show-title {
    font-size: 2.2rem;
  }

  .show-social-link {
    width: 100%;
    justify-content: center;
  }

  .now-show-card {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .now-show-card .now-thumb {
    width: 100%;
    height: 200px;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .now-show-card .now-thumb {
    height: 180px;
  }

  .radio-shows-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .radio-show-card .thumb,
  .radio-show-card > img {
    height: 240px;
  }
}

/* Sidebar / widget variantă NOW SHOW */
.sidebar .now-show-card,
.widget .now-show-card {
  padding: 1rem;
  gap: 1rem;
}

.sidebar .now-show-card .now-thumb,
.widget .now-show-card .now-thumb {
  width: 100px;
  height: 100px;
}

.sidebar .now-show-card h4 a,
.widget .now-show-card h4 a {
  font-size: 1rem;
}

.sidebar .now-show-card .now-presenter,
.widget .now-show-card .now-presenter {
  font-size: .86rem;
}

.sidebar .now-show-card .now-desc,
.widget .now-show-card .now-desc {
  font-size: .88rem;
  -webkit-line-clamp: 2;
  max-height: 3em;
}

/* Ascunde gridul de emisiuni pe single show */
body.single-radio_show .radio90hit.shows-wrapper {
  display: none;
}

/* Motion / accessibility */
@media (prefers-reduced-motion: reduce) {
  .now-show-card,
  .now-show-card .now-readmore,
  .r90-show-page,
  .radio-show-card,
  .radio90hit .program-card,
  .radio90hit.radio-show-page,
  .see-more-btn,
  .show-social-link {
    animation: none !important;
    transition: none !important;
  }
}

/* Performance hints */
.now-show-card,
.radio-show-card,
.radio90hit .program-card,
.show-social-link {
  will-change: transform;
}

/* Touch targets */
@media (hover: none) and (pointer: coarse) {
  .now-show-card .now-readmore,
  .see-more-btn,
  .show-social-link {
    min-height: 44px;
  }
}