/*
Theme Name: Radio Nunta Pro
Theme URI: https://example.com/radio-nunta-pro
Author: OpenAI
Author URI: https://openai.com
Description: Temă WordPress Radio Nunta Pro, cu program pe zile ale săptămânii, player live, proxy local pentru now playing și istoric piese avansat.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: radio-nunta-premium
*/

:root {
  --rn-bg: #f6efe3;
  --rn-bg-soft: #fcf8f1;
  --rn-paper: rgba(255, 251, 245, 0.92);
  --rn-paper-strong: rgba(255, 250, 244, 0.97);
  --rn-text: #2b221c;
  --rn-muted: #776556;
  --rn-primary: #9c1e1e;
  --rn-primary-dark: #7e1717;
  --rn-primary-soft: rgba(156, 30, 30, 0.08);
  --rn-gold: #d1a355;
  --rn-gold-soft: rgba(209, 163, 85, 0.18);
  --rn-line: rgba(156, 30, 30, 0.16);
  --rn-shadow: 0 24px 72px rgba(84, 45, 20, 0.12);
  --rn-shadow-sm: 0 16px 36px rgba(84, 45, 20, 0.09);
  --rn-radius: 24px;
  --rn-radius-sm: 18px;
  --rn-wrap: min(1220px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--rn-text);
  background:
    radial-gradient(circle at 12% 20%, rgba(209, 163, 85, 0.07), transparent 18%),
    radial-gradient(circle at 86% 18%, rgba(156, 30, 30, 0.05), transparent 18%),
    linear-gradient(180deg, #fbf6ee 0%, #f6efe3 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 156px;
  pointer-events: none;
  opacity: .34;
  z-index: -1;
  background-image:
    linear-gradient(45deg, rgba(130, 94, 73, 0.11) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(130, 94, 73, 0.11) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(130, 94, 73, 0.11) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(130, 94, 73, 0.11) 75%);
  background-size: 44px 44px;
  background-position: 0 0, 0 22px, 22px -22px, -22px 0;
}

body::before {
  left: 0;
}

body::after {
  right: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

.rn-container {
  width: var(--rn-wrap);
  margin: 0 auto;
}

.rn-embroidered-line {
  height: 18px;
  background: url("assets/img/pattern-strip.svg") center / auto 18px repeat-x;
}

.rn-site-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 238, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(156, 30, 30, 0.08);
}

.site-header .rn-container {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.site-branding .custom-logo-link,
.site-branding .rn-brand-mark {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff8ef, #f0dcc0);
  box-shadow: 0 14px 30px rgba(143, 53, 35, 0.12);
  padding: 10px;
}

.site-branding img.custom-logo,
.site-branding .rn-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-title {
  margin: 0;
  font: 700 1.72rem/1.05 Georgia, 'Times New Roman', serif;
  color: var(--rn-primary);
}

.site-title a {
  color: inherit;
}

.site-description {
  margin: 6px 0 0;
  color: var(--rn-muted);
  font-size: .98rem;
}

.rn-header-meta {
  justify-self: end;
  display: grid;
  gap: 4px;
  text-align: right;
  color: var(--rn-muted);
  font-size: .92rem;
}

.rn-header-meta strong {
  color: var(--rn-text);
}

.main-navigation {
  display: flex;
  justify-content: center;
}

.main-navigation ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 24px;
  padding: 0;
  margin: 0;
}

.main-navigation a {
  position: relative;
  font-weight: 700;
  color: #503d32;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--rn-primary), var(--rn-gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after,
.main-navigation .current_page_item a::after {
  transform: scaleX(1);
}

.rn-mobile-toggle {
  display: none;
  border: 0;
  border-radius: 14px;
  background: #fff8f1;
  color: var(--rn-primary);
  padding: 12px;
  box-shadow: var(--rn-shadow-sm);
}

.rn-button,
.wp-block-button__link,
button.rn-play-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 16px;
  padding: 15px 26px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.rn-button:hover,
.wp-block-button__link:hover,
button.rn-play-toggle:hover {
  transform: translateY(-2px);
}

.rn-button-primary,
button.rn-play-toggle,
.rn-header-cta {
  background: linear-gradient(180deg, #b92828 0%, #8c1b1b 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(140, 27, 27, .22);
}

.rn-button-secondary {
  background: linear-gradient(180deg, #e1bb74 0%, #c99f53 100%);
  color: #3d2d1f;
  box-shadow: 0 16px 30px rgba(201, 159, 83, .18);
}

.rn-header-cta {
  white-space: nowrap;
}

.rn-hero {
  position: relative;
  padding: 48px 0 18px;
}

.rn-hero-shell {
  background: linear-gradient(180deg, rgba(255, 251, 245, .64), rgba(255, 251, 245, .45));
  border-radius: 34px;
  box-shadow: var(--rn-shadow);
  padding: 34px;
  border: 1px solid rgba(156, 30, 30, 0.08);
}

.rn-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  gap: 32px;
  align-items: center;
}

.rn-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--rn-primary-soft);
  color: var(--rn-primary);
  font-weight: 700;
  margin-bottom: 14px;
}

.rn-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rn-primary);
  box-shadow: 0 0 0 4px rgba(156, 30, 30, .15);
}

.rn-hero-copy h1 {
  margin: 0;
  font: 700 clamp(2.5rem, 4vw, 4.35rem) / 1.05 Georgia, 'Times New Roman', serif;
  color: #fff6ee;
  text-shadow: 0 14px 30px rgba(65, 37, 24, 0.32);
}

.rn-hero-copy p {
  margin: 18px 0 0;
  font-size: 1.08rem;
  max-width: 640px;
  color: #fff7f0;
  text-shadow: 0 8px 18px rgba(65, 37, 24, 0.24);
}

.rn-hero-stage {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 620px;
  padding: 48px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(89, 52, 39, 0.48) 0%, rgba(89, 52, 39, 0.28) 38%, rgba(89, 52, 39, 0.05) 100%),
    radial-gradient(circle at 78% 22%, rgba(255, 242, 225, 0.18), transparent 22%),
    center/cover no-repeat var(--rn-hero-image, url("assets/img/hero-model.png"));
}

.rn-hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(246, 239, 227, 0.05), rgba(246, 239, 227, 0.1)),
    radial-gradient(circle at 12% 40%, rgba(255,255,255,0.10), transparent 16%);
  pointer-events: none;
}

.rn-hero-copy,
.rn-hero-visual {
  position: relative;
  z-index: 2;
}

.rn-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.rn-live-card {
  margin-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  max-width: 680px;
  padding: 18px;
  background: rgba(255, 250, 244, 0.95);
  border-radius: 20px;
  box-shadow: var(--rn-shadow-sm);
  border: 1px solid rgba(156, 30, 30, 0.08);
}

.rn-play-toggle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 0;
  font-size: 1.18rem;
}

.rn-live-topline {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.rn-live-badge,
.rn-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(156, 30, 30, 0.08);
  color: var(--rn-primary);
  font-size: .88rem;
  font-weight: 700;
}

.rn-live-status {
  color: var(--rn-muted);
  font-size: .94rem;
}

.rn-track-title {
  font-size: 1.08rem;
  font-weight: 700;
}

.rn-track-note {
  color: var(--rn-muted);
  font-size: .93rem;
}

.rn-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.rn-stat {
  background: rgba(255, 249, 241, 0.82);
  border: 1px solid rgba(156, 30, 30, 0.08);
  border-radius: 18px;
  padding: 15px 16px;
  box-shadow: var(--rn-shadow-sm);
}

.rn-stat strong {
  display: block;
  font-size: 1.25rem;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--rn-primary);
}

.rn-stat span {
  display: block;
  color: var(--rn-muted);
  font-size: .92rem;
}

.rn-hero-visual {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 18px;
}

.rn-hero-logo-card {
  width: min(360px, 100%);
  background: rgba(255, 251, 245, 0.94);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--rn-shadow-sm);
  border: 1px solid rgba(156, 30, 30, 0.08);
}

.rn-hero-logo-card img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 8px;
}

.rn-hero-logo-card p {
  margin: 0;
  text-align: center;
  color: var(--rn-muted);
}

.rn-section {
  padding: 24px 0;
}

.rn-section-title {
  margin: 0 0 22px;
  text-align: center;
  font: 700 clamp(1.8rem, 2.4vw, 2.9rem) / 1.12 Georgia, 'Times New Roman', serif;
  color: var(--rn-primary);
}

.rn-section-title::before,
.rn-section-title::after {
  content: "❖";
  color: var(--rn-gold);
  font-size: .6em;
  vertical-align: middle;
  margin: 0 12px;
}

.rn-card {
  background: var(--rn-paper-strong);
  border-radius: var(--rn-radius);
  box-shadow: var(--rn-shadow-sm);
  border: 1px solid rgba(156, 30, 30, 0.08);
}

.rn-about-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr);
  gap: 24px;
}

.rn-about-card,
.rn-side-card,
.rn-social-card,
.rn-extras-card {
  padding: 26px;
}

.rn-about-card .lead {
  margin-top: 0;
  font-size: 1.08rem;
  color: #4e3d30;
}

.rn-feature-grid,
.rn-extra-grid,
.rn-contact-grid {
  display: grid;
  gap: 18px;
}

.rn-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.rn-feature,
.rn-contact-card,
.rn-extra-item {
  background: linear-gradient(180deg, #fffdf9, #fbf3e8);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(156, 30, 30, 0.08);
}

.rn-feature-icon,
.rn-contact-icon,
.rn-extra-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #b92828, #8c1b1b);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 12px 24px rgba(140, 27, 27, .18);
}

.rn-feature h3,
.rn-contact-card h3,
.rn-extra-item h3,
.rn-side-card h3 {
  margin: 14px 0 8px;
  font: 700 1.24rem/1.2 Georgia, 'Times New Roman', serif;
  color: #6f1919;
}

.rn-feature p,
.rn-contact-card p,
.rn-extra-item p,
.rn-side-card p {
  margin: 0;
  color: var(--rn-muted);
}

.rn-track-history {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.rn-track-history li {
  background: #fffdf9;
  border: 1px solid rgba(156, 30, 30, 0.08);
  border-radius: 16px;
  padding: 13px 14px;
}

.rn-track-time {
  color: var(--rn-primary);
  font-weight: 700;
}

.rn-program-grid,
.rn-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.rn-program-card {
  position: relative;
  min-height: 272px;
  padding: 22px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--rn-shadow-sm);
  color: #fff7f0;
  background:
    linear-gradient(180deg, rgba(59, 34, 27, 0.10), rgba(59, 34, 27, 0.58)),
    linear-gradient(135deg, var(--card-bg, #8f1c1c), rgba(45, 28, 18, 0.82));
}

.rn-program-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 138px;
  height: 138px;
  opacity: .15;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.72) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.72) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.72) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.72) 75%);
  background-size: 26px 26px;
  background-position: 0 0, 0 13px, 13px -13px, -13px 0;
}

.rn-program-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: end;
}

.rn-program-card h3 {
  margin: 0 0 10px;
  font: 700 1.55rem/1.08 Georgia, 'Times New Roman', serif;
}

.rn-program-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 12px;
  font-weight: 700;
}

.rn-program-card p {
  margin: 0;
  max-width: 26ch;
  color: rgba(255, 247, 240, .88);
}

.rn-program-fallback-note {
  text-align: center;
  color: var(--rn-muted);
  margin: 0 0 18px;
}

.rn-post-card {
  background: var(--rn-paper-strong);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--rn-shadow-sm);
  border: 1px solid rgba(156, 30, 30, 0.08);
}

.rn-post-thumb {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(180deg, rgba(209, 163, 85, .35), rgba(140, 27, 27, .18)),
    url("assets/img/hero-model.png") center/cover no-repeat;
}

.rn-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rn-post-body {
  padding: 20px;
}

.rn-post-meta {
  color: var(--rn-primary);
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.rn-post-body h3 {
  margin: 10px 0 8px;
  font: 700 1.3rem/1.18 Georgia, 'Times New Roman', serif;
}

.rn-post-body p {
  margin: 0;
  color: var(--rn-muted);
}

.rn-extra-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rn-extra-item ul {
  padding-left: 18px;
  margin: 10px 0 0;
  color: var(--rn-muted);
}

.rn-social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.rn-social-link {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff9f0, #f5e4cb);
  color: var(--rn-primary);
  box-shadow: var(--rn-shadow-sm);
  border: 1px solid rgba(156, 30, 30, 0.08);
}

.rn-social-link svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.rn-social-card {
  text-align: center;
}

.rn-social-card .rn-section-title {
  margin-bottom: 10px;
}

.rn-contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 10px;
}

.site-footer {
  margin-top: 38px;
  background:
    linear-gradient(180deg, rgba(49, 30, 21, 0.96), rgba(64, 37, 24, 0.98));
  color: rgba(255, 246, 235, 0.94);
}

.rn-footer-inner {
  padding: 28px 0 36px;
}

.rn-footer-top,
.rn-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.rn-footer-top {
  align-items: center;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 246, 235, 0.12);
}

.rn-footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rn-footer-brand img {
  width: 72px;
  height: 72px;
}

.rn-footer-brand h3 {
  margin: 0;
  font: 700 1.55rem/1.1 Georgia, 'Times New Roman', serif;
}

.rn-footer-brand p,
.rn-footer-bottom p {
  margin: 6px 0 0;
  color: rgba(255, 246, 235, 0.82);
}

.rn-footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 18px;
}

.rn-footer-nav a {
  color: #fff6eb;
  font-weight: 700;
}

.rn-empty-page {
  padding: 42px 0;
}

.rn-page-card {
  padding: 34px;
}

.rn-page-card h1,
.rn-page-card h2,
.rn-page-card h3 {
  color: var(--rn-primary);
  font-family: Georgia, 'Times New Roman', serif;
}

.rn-page-card .post-thumbnail {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 24px;
}

.rn-page-card .post-thumbnail img {
  width: 100%;
  height: auto;
}

.rn-page-card .entry-meta {
  color: var(--rn-muted);
  margin-bottom: 12px;
}

.screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

@media (max-width: 1180px) {
  .site-header .rn-container {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .rn-header-meta {
    display: none;
  }

  .rn-hero-grid,
  .rn-about-wrap {
    grid-template-columns: 1fr;
  }

  .rn-program-grid,
  .rn-news-grid,
  .rn-extra-grid,
  .rn-contact-grid,
  .rn-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rn-hero-stage {
    min-height: 520px;
  }
}

@media (max-width: 900px) {
  body::before,
  body::after {
    display: none;
  }

  .site-header .rn-container {
    grid-template-columns: auto 1fr auto auto;
  }

  .main-navigation {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    justify-content: flex-start;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 251, 245, 0.98);
    box-shadow: var(--rn-shadow);
    border: 1px solid rgba(156, 30, 30, 0.08);
  }

  .main-navigation.is-open {
    display: flex;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 16px;
  }

  .rn-mobile-toggle {
    display: inline-grid;
  }

  .rn-hero-shell {
    padding: 20px;
  }

  .rn-hero-stage {
    padding: 28px;
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .site-header .rn-container {
    grid-template-columns: auto 1fr auto;
  }

  .rn-header-cta {
    display: none;
  }

  .site-branding .custom-logo-link,
  .site-branding .rn-brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .site-title {
    font-size: 1.38rem;
  }

  .site-description {
    font-size: .9rem;
  }

  .rn-section-title::before,
  .rn-section-title::after {
    display: none;
  }

  .rn-hero-copy h1 {
    font-size: 2.2rem;
  }

  .rn-hero-copy p {
    font-size: 1rem;
  }

  .rn-hero-stats,
  .rn-program-grid,
  .rn-news-grid,
  .rn-extra-grid,
  .rn-contact-grid,
  .rn-feature-grid {
    grid-template-columns: 1fr;
  }

  .rn-live-card {
    grid-template-columns: 1fr;
  }

  .rn-footer-top,
  .rn-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .rn-about-card,
  .rn-side-card,
  .rn-social-card,
  .rn-page-card,
  .rn-extras-card {
    padding: 20px;
  }
}


/* ===== Radio Nunta Pro additions ===== */

.rn-logo-note {
  display: block;
  margin-top: 12px;
  color: rgba(88, 55, 39, 0.78);
  line-height: 1.55;
}

.rn-schedule-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 0 24px;
}

.rn-day-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(156, 30, 30, 0.12);
  background: rgba(255, 251, 245, 0.92);
  color: #5c4638;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--rn-shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.rn-day-tab span {
  min-width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(156, 30, 30, 0.08);
  color: var(--rn-primary);
  font-size: .88rem;
}

.rn-day-tab:hover {
  transform: translateY(-2px);
}

.rn-day-tab.is-active {
  background: linear-gradient(180deg, #b92828 0%, #8c1b1b 100%);
  color: #fff;
}

.rn-day-tab.is-active span {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.rn-program-grid-advanced .rn-program-card {
  transition: opacity .2s ease, transform .2s ease;
}

.rn-program-card.is-hidden {
  display: none;
}

.rn-program-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  margin-bottom: 12px;
}

.rn-program-days {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 700;
  font-size: .92rem;
  color: rgba(255, 247, 240, 0.92);
}

.rn-empty-schedule {
  max-width: 700px;
  margin: 12px auto 0;
  padding: 14px 16px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 251, 245, 0.9);
  color: var(--rn-muted);
  border: 1px dashed rgba(156, 30, 30, 0.18);
}

@media (max-width: 900px) {
  .rn-schedule-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .rn-day-tab {
    flex: 0 0 auto;
  }
}
