:root {
  --brand: #c91622;
  --brand-dark: #9f1019;
  --accent: #f0b429;
  --text: #1f2530;
  --muted: #68707d;
  --line: #e3e7ee;
  --surface: #ffffff;
  --surface-soft: #f9fafc;
  --bg: #f4f6f9;
  --radius: 8px;
  --shadow: 0 14px 36px rgba(25, 32, 44, .08);
}

.theme-blue { --brand: #1264c8; --brand-dark: #0c4690; --accent: #22a6f2; }
.theme-dark { --brand: #242832; --brand-dark: #11141a; --accent: #e0b24a; }
.theme-yellow { --brand: #d49a00; --brand-dark: #9f7200; --accent: #c91622; }
.theme-orange { --brand: #e05a18; --brand-dark: #aa3e0e; --accent: #1d6fd6; }
.theme-green { --brand: #16854d; --brand-dark: #0d5d35; --accent: #f0b429; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  font: inherit;
  background: #fff;
  color: var(--text);
}
input:focus, textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(201, 22, 34, .14);
  outline: 0;
}
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.page-stack { padding-bottom: 10px; }

.radio-top { background: #11141a; color: #fff; padding: 0; }
.radio-top audio, .radio-top iframe { width: 100%; min-height: 48px; border: 0; display: block; }

.site-header {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 12px;
}
.logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--brand);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0;
}
.logo img { max-width: 220px; max-height: 68px; object-fit: contain; }
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 0;
  background: #fff;
  color: var(--brand);
}
.menu-toggle svg {
  display: block;
  width: 23px;
  height: 23px;
}
.search, .search-page { display: flex; width: min(440px, 100%); }
.mobile-header-search { display: none; }
.nav-search { display: none; }
.search input, .search-page input { flex: 1; min-width: 0; border-radius: var(--radius) 0 0 var(--radius); }
.search button, .search-page button, button, .button {
  border: 0;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.search button, .search-page button { border-radius: 0 var(--radius) var(--radius) 0; }
.search button:hover, .search-page button:hover, button:hover, .button:hover {
  background: var(--brand-dark);
  box-shadow: 0 10px 22px rgba(25, 32, 44, .14);
  transform: translateY(-1px);
}
.menu-toggle, .menu-toggle:hover {
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  padding: 0;
  box-shadow: none;
  transform: none;
}
.menu-toggle:hover { background: var(--surface-soft); }
.nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 14px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.nav::-webkit-scrollbar { display: none; }
.nav a {
  flex: 0 0 auto;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 750;
  white-space: nowrap;
}
.nav a:hover { border-color: var(--line); background: var(--surface-soft); color: var(--brand); }

.hero-news, .home-showcase {
  display: grid;
  margin: 28px 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-news { grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); }
.home-showcase { grid-template-columns: minmax(0, 1.35fr) minmax(300px, 1fr); }
.tv-feature {
  min-height: 390px;
  padding: 10px;
  background: #090b10;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}
.tv-feature iframe, .tv-feature video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
  border-radius: var(--radius);
}
.home-ad {
  display: block;
  min-height: 390px;
  border-left: 1px solid var(--line);
  background: #fff;
}
.home-ad img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.ad-banner {
  display: block;
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(25, 32, 44, .05);
}
.ad-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wide-ad {
  width: 100%;
  aspect-ratio: 970 / 180;
}
.square-ad {
  aspect-ratio: 1 / 1;
  margin: 18px 0 0;
}
.ad-banner .ad-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
}
.wide-ad .ad-placeholder { min-height: 150px; }
.square-ad .ad-placeholder { min-height: 260px; }
.ad-placeholder {
  display: grid;
  min-height: 390px;
  place-items: center;
  padding: 28px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  text-align: center;
}
.ad-placeholder span { display: block; font-size: clamp(1.7rem, 4vw, 3rem); font-weight: 950; letter-spacing: 0; }
.ad-placeholder small { display: block; margin-top: 8px; font-size: 1rem; opacity: .9; }
.hero-image img, .hero-image .image-placeholder { width: 100%; height: 390px; object-fit: cover; }
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 4vw, 38px);
}
.hero-copy h1 {
  margin: 12px 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.hero-copy p { margin: 0; color: var(--muted); font-size: 1.03rem; }
.tag {
  color: var(--brand);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 30px 0 14px;
}
.section-head h2 { margin: 0; font-size: 1.35rem; letter-spacing: 0; }
.section-head a { color: var(--brand); font-weight: 850; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.news-grid.compact { margin-bottom: 24px; }
.news-card, .empty-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(25, 32, 44, .05);
  overflow: hidden;
}
.news-card a { display: block; height: 100%; padding: 12px; }
.news-card img, .news-card .image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 12px;
  border-radius: calc(var(--radius) - 2px);
}
.news-card h3 {
  margin: 6px 0 8px;
  font-size: 1.06rem;
  line-height: 1.25;
  letter-spacing: 0;
}
.news-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.news-card:hover { border-color: var(--brand); transform: translateY(-2px); transition: .18s ease; }
.empty-card { grid-column: 1 / -1; padding: 22px; }
.empty-card h3, .empty-card p { margin: 0; }
.empty-card p { margin-top: 6px; color: var(--muted); }
.image-placeholder {
  display: grid;
  min-height: 160px;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.page-title, .static-page, .empty-state {
  margin: 28px 0;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.page-title h1, .static-page h1, .empty-state h1 { margin: 0; letter-spacing: 0; }
.empty-state p { margin: 8px 0 0; color: var(--muted); }
.page-hero {
  margin-bottom: 28px;
  padding: 48px 0 62px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
}
.page-hero span {
  display: inline-block;
  font-size: .82rem;
  font-weight: 900;
  opacity: .86;
  text-transform: uppercase;
}
.page-hero h1 {
  margin: 8px 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}
.page-hero p { max-width: 620px; margin: 0; font-size: 1.08rem; }
.contact-page {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  width: min(900px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-info h2, .contact-form h2 { margin-top: 0; letter-spacing: 0; }
.contact-cards { display: grid; gap: 12px; margin-top: 22px; }
.contact-cards article {
  padding: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
}
.contact-cards strong { display: block; margin-bottom: 4px; color: var(--brand); }
.contact-cards span { color: var(--muted); overflow-wrap: anywhere; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 6px; font-weight: 750; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.success, .form-error {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.success { background: #eef9f1; color: #146c33; }
.form-error { background: #fff0f0; color: #9f1019; }
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.feature-list article {
  padding: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.feature-list h2, .privacy-page h2 { font-size: 1.15rem; color: var(--brand); letter-spacing: 0; }
.cta { display: inline-block; background: var(--brand); color: #fff; padding: 12px 18px; border-radius: var(--radius); font-weight: 850; }

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  margin-top: 28px;
}
.article, .sidebar {
  min-width: 0;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.article h1 {
  margin: 10px 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}
.meta, .source { color: var(--muted); font-size: .94rem; }
.share-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 4px;
}
.share-actions a, .share-actions button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  padding: 9px 12px;
  font-size: .9rem;
  font-weight: 850;
}
.share-actions button { width: auto; }
.article-image img, .article-image .image-placeholder {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  margin: 22px 0;
  border-radius: var(--radius);
}
.article-body { font-size: 1.08rem; }
.article-body, .article-body p { overflow-wrap: anywhere; }
.side-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}
.side-item img, .side-item .image-placeholder {
  width: 92px;
  height: 64px;
  min-height: 64px;
  object-fit: cover;
  border-radius: var(--radius);
}
.comments-box {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.comments-box h2 { margin: 0 0 14px; font-size: 1.25rem; letter-spacing: 0; }
.comment-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.comment-form label { display: grid; gap: 6px; font-weight: 750; }
.comment-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.comment-list article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}
.comment-list strong { display: block; color: var(--brand); }
.comment-list time { color: var(--muted); font-size: .86rem; }
.comment-list p { margin: 8px 0 0; }

.podcast-section {
  width: 100vw;
  margin: 42px calc(50% - 50vw) 28px;
  padding: 18px 0;
  color: #fff;
  background: #242424;
}
.podcast-shell {
  display: grid;
  grid-template-columns: minmax(0, 464px) minmax(258px, 1fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  width: min(812px, calc(100% - 32px));
  margin: 0 auto;
}
.podcast-main { min-width: 0; }
.podcast-main-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.podcast-main-head h2 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1;
  letter-spacing: 0;
}
.podcast-subscribe {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 21px;
  border-radius: 4px;
  background: #ff001d;
  color: #fff;
  padding: 5px 8px;
  font-size: .5rem;
  font-weight: 900;
  line-height: 1;
}
.podcast-subscribe::before {
  content: "";
  width: 9px;
  height: 7px;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.podcast-feature {
  position: relative;
  width: 100%;
  aspect-ratio: 464 / 270;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
}
.podcast-cover {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: #111;
  cursor: pointer;
}
.podcast-cover:hover {
  background: #111;
  box-shadow: none;
  transform: none;
}
.podcast-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.podcast-feature iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.podcast-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 60px;
  transform: translate(-42%, -50%);
  background: #ff001d;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.38));
}
.podcast-main h3 {
  margin: 15px 0 0;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.32rem);
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
}
.podcast-more { min-width: 0; padding-top: 2px; }
.podcast-more-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.podcast-more-head strong {
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
}
.podcast-more-head a {
  flex: 0 0 auto;
  min-width: 55px;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 7px 14px;
  color: #fff;
  font-size: .5rem;
  font-weight: 900;
  text-align: center;
}
.podcast-list { display: grid; gap: 24px; align-content: start; }
.podcast-switch {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  width: 100%;
  min-height: 64px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  text-align: left;
}
.podcast-switch:hover, .podcast-switch.is-active {
  background: transparent;
  color: #fff;
  transform: none;
  box-shadow: none;
}
.podcast-mini-thumb {
  position: relative;
  display: block;
  width: 88px;
  aspect-ratio: 88 / 64;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
}
.podcast-mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.podcast-mini-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 20px;
  transform: translate(-42%, -50%);
  background: #ff001d;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  filter: drop-shadow(0 3px 7px rgba(0,0,0,.42));
}
.podcast-switch span {
  min-width: 0;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1.38;
  text-transform: uppercase;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #11141a;
  border-radius: var(--radius);
  overflow: hidden;
}
.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.media-block {
  margin: 28px 0;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.video-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.video-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  font-weight: 850;
}
.video-card strong { line-height: 1.3; }
.gallery-card {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #11141a;
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .22s ease;
}
.gallery-card:hover img { transform: scale(1.035); }
.gallery-card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(10, 12, 16, .72);
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
}

.site-footer { margin-top: 48px; background: var(--brand-dark); color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(150px, .9fr) minmax(220px, 1.15fr) minmax(150px, .8fr);
  gap: 30px;
  padding: 42px 0;
}
.footer-logo { display: inline-flex; align-items: center; color: #fff; font-size: 1.35rem; font-weight: 950; }
.footer-logo img { max-width: 220px; max-height: 72px; object-fit: contain; }
.footer-grid a { display: block; color: #fff; opacity: .9; margin-top: 8px; }
.footer-grid .muted { display: block; opacity: .75; margin-top: 8px; }
.footer-gadgets { display: grid; align-content: start; gap: 9px; }
.footer-gadget-embed {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.footer-gadget-embed iframe, .footer-gadget-embed img { max-width: 100%; }
.footer-gadget-embed iframe { width: 100%; border: 0; }
.copy { border-top: 1px solid rgba(255,255,255,.18); padding: 16px; text-align: center; font-size: .9rem; }

@media (max-width: 960px) {
  .hero-news, .article-layout, .home-showcase, .contact-page { grid-template-columns: 1fr; }
  .home-ad { border-left: 0; border-top: 1px solid var(--line); }
  .news-grid, .video-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-list, .footer-grid { grid-template-columns: 1fr; }
  .podcast-shell { grid-template-columns: 1fr; gap: 26px; width: min(620px, calc(100% - 32px)); }
}

@media (max-width: 700px) {
  .container { width: min(100% - 22px, 1140px); }
  .site-header { z-index: 30; backdrop-filter: none; }
  body.site-menu-open { overflow: hidden; }
  body.site-menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 25;
    background: rgba(16, 20, 28, .38);
  }
  .topbar {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 0;
    padding: 10px 0;
  }
  .topbar::after {
    content: "";
    width: 44px;
    height: 44px;
  }
  .menu-toggle {
    position: relative;
    z-index: 45;
    display: inline-flex;
    grid-column: 1;
    justify-self: start;
  }
  .menu-toggle:hover {
    background: var(--surface-soft);
    box-shadow: none;
    transform: none;
  }
  .logo {
    grid-column: 2;
    justify-content: center;
    justify-self: center;
    width: 100%;
    max-width: 100%;
    text-align: center;
    font-size: 1.36rem;
  }
  .logo img { max-width: 230px; max-height: 76px; }
  .desktop-search { display: none; }
  .mobile-header-search {
    display: flex;
    width: min(100% - 22px, 1140px);
    padding: 0 0 12px;
  }
  .nav {
    position: fixed;
    left: 0;
    top: 62px;
    bottom: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: min(84vw, 320px);
    max-width: 320px;
    margin: 0;
    padding: 18px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--surface);
    border-right: 1px solid var(--line);
    box-shadow: 18px 0 40px rgba(20, 26, 36, .18);
    transform: translateX(-105%);
    transition: transform .22s ease;
  }
  body.site-menu-open .nav { transform: translateX(0); }
  .nav a {
    width: 100%;
    border-radius: var(--radius);
    padding: 12px;
    color: var(--text);
    white-space: normal;
  }
  .hero-image img, .hero-image .image-placeholder { height: 230px; }
  .tv-feature, .tv-feature iframe, .home-ad, .home-ad img, .ad-placeholder { min-height: 240px; }
  .wide-ad { aspect-ratio: 16 / 5; }
  .wide-ad .ad-placeholder { min-height: 120px; }
  .square-ad .ad-placeholder { min-height: 220px; }
  .hero-copy, .article, .sidebar, .page-title, .static-page, .empty-state, .contact-page, .media-block { padding: 18px; }
  .podcast-section { padding: 22px 0; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 6px; }
  .form-row, .news-grid, .video-grid, .gallery-grid { grid-template-columns: 1fr; }
  .search-page { flex-direction: column; gap: 8px; }
  .search-page input, .search-page button { border-radius: var(--radius); }
}

@media (max-width: 480px) {
  .search { flex-direction: column; gap: 8px; }
  .search input, .search button { border-radius: var(--radius); }
  .podcast-main-head { align-items: flex-start; flex-direction: column; }
  .podcast-list { gap: 18px; }
  .podcast-switch { grid-template-columns: 88px minmax(0, 1fr); }
  .podcast-mini-thumb { width: 88px; }
  .side-item { grid-template-columns: 82px minmax(0, 1fr); }
  .side-item img, .side-item .image-placeholder { width: 82px; height: 58px; min-height: 58px; }
}
