:root {
  --purple: #682B68;
  --purple-deep: #4f1f4f;
  --orange: #E16D51;
  --orange-deep: #c75636;
  --blue: #1575B3;
  --blue-deep: #0f5e92;
  --bg: #ffffff;
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --muted: #6b6b72;
  --muted-2: #9a9aa1;
  --line: #ececef;
  --line-strong: #d9d9de;
  --surface: #fafafa;
  --surface-2: #f4f4f6;
  --radius: 8px;
  --radius-lg: 14px;
  --max: 1280px;
  --shadow-sm: 0 1px 2px rgba(15,15,20,.05), 0 1px 1px rgba(15,15,20,.04);
  --shadow-md: 0 6px 18px rgba(15,15,20,.07), 0 2px 4px rgba(15,15,20,.04);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 15px;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* -------- Top utility bar -------- */
.topbar {
  background: #f7f4f7;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 34px; gap: 16px;
}
.topbar-date { display: flex; align-items: center; gap: 10px; }
.topbar-date b { color: var(--ink); font-weight: 600; }
.topbar-links { display: flex; align-items: center; gap: 18px; }
.topbar-links a:hover { color: var(--purple); }
.topbar-social { display: flex; align-items: center; gap: 10px; }
.topbar-social a {
  width: 22px; height: 22px; display: grid; place-items: center;
  color: var(--muted);
}
.topbar-social a:hover { color: var(--purple); }

/* -------- Header -------- */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: 80px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { max-height: 100px; width: auto; object-fit: contain; }
.logo-mark { width: 44px; height: 44px; flex: none; }
.logo-text { line-height: 1; }
.logo-text .logo-title {
  font-weight: 800; letter-spacing: -0.01em;
  font-size: 22px; color: var(--ink);
}
.logo-text .logo-sub {
  font-size: 9px; letter-spacing: 0.22em; color: var(--purple);
  font-weight: 700; margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 4px; justify-content: center; flex-wrap: wrap; }
.nav a {
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  border-radius: 6px;
  position: relative;
  transition: color .15s ease;
}
.nav a:hover { color: var(--purple); }
.nav a.active { color: var(--purple); }
.nav a.active::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: -2px;
  height: 2px; background: var(--orange); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink); transition: background .15s ease;
}
.icon-btn:hover { background: var(--surface-2); }

.live-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 16px;
  background: var(--orange); color: #fff;
  border-radius: 999px;
  font-weight: 800; font-size: 12.5px;
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(225, 109, 81, .35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.live-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(225, 109, 81, .45); }
.live-btn .live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.hamburger { display: none; }

/* -------- Hero -------- */
.hero { padding: 24px 0 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
}
.hero-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9.6;
  background: var(--surface-2);
}
.hero-main .img-wrap, .hero-side .img-wrap { position: absolute; inset: 0; }
.hero-main img, .hero-side img { width: 100%; height: 100%; object-fit: cover; }
.hero-main::after, .hero-side-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.78) 100%);
}
.hero-main .hero-content, .hero-side-card .hero-side-content {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 32px;
  color: #fff;
}
.hero-side-card .hero-side-content { padding: 18px; }

.cat-badge {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 4px;
  color: #fff; background: var(--purple);
  margin-bottom: 12px;
}
.cat-badge.orange { background: var(--orange); }
.cat-badge.blue { background: var(--blue); }
.cat-badge.purple { background: var(--purple); }

.hero-main h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  max-width: 700px;
  text-wrap: balance;
}
.hero-main p {
  font-size: 15px; line-height: 1.55;
  max-width: 580px; opacity: 0.92;
  margin: 0 0 18px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 12px 22px; border-radius: 6px;
  font-weight: 800; letter-spacing: 0.04em; font-size: 13px;
  text-transform: uppercase;
}
.hero-cta:hover { background: var(--orange-deep); }

.hero-arrows {
  position: absolute; z-index: 3;
  top: 50%; transform: translateY(-50%);
  width: 100%; padding: 0 16px;
  display: flex; justify-content: space-between;
  pointer-events: none;
}
.hero-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: grid; place-items: center;
  color: var(--ink);
  pointer-events: auto;
  transition: background .15s ease, transform .15s ease;
}
.hero-arrow:hover { background: #fff; transform: scale(1.05); }

.hero-dots {
  position: absolute; left: 32px; bottom: 18px; z-index: 3;
  display: flex; gap: 6px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.45);
  transition: all .2s ease;
}
.hero-dot.active { background: #fff; width: 22px; border-radius: 4px; }

.hero-side { display: grid; gap: 14px; grid-template-rows: 1fr 1fr 1fr; }
.hero-side-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 0;
  background: var(--surface-2);
}
.hero-side-card h3 {
  font-size: 16px; line-height: 1.3;
  font-weight: 700; margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.hero-side-card .ts {
  font-size: 11.5px; opacity: 0.85;
}

/* -------- Program bar -------- */
.program-bar {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.program-bar-title {
  display: flex; align-items: center; gap: 12px;
}
.program-bar-title .pb-ic {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface-2); display: grid; place-items: center;
  color: var(--orange);
}
.program-bar-title b {
  display: block; font-size: 11px; letter-spacing: 0.14em; color: var(--muted);
  font-weight: 700; text-transform: uppercase;
}
.program-bar-title span {
  display: block; font-size: 14px; font-weight: 800; color: var(--ink);
  margin-top: 2px;
}
.program-slots {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.slot {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  position: relative;
  min-width: 0;
}
.slot:first-child { border-left: 0; padding-left: 0; }
.slot .slot-tag {
  display: inline-block;
  font-size: 9.5px; letter-spacing: 0.12em; font-weight: 800;
  padding: 3px 7px; border-radius: 3px; margin-bottom: 6px;
  text-transform: uppercase; color: #fff; background: var(--blue);
}
.slot .slot-tag.live { background: var(--orange); }
.slot .slot-tag.next { background: var(--purple); }
.slot .slot-time {
  font-size: 14px; font-weight: 800; color: var(--ink);
}
.slot .slot-name {
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.slot .slot-host { font-size: 12px; color: var(--muted); margin-top: 2px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-strong);
  padding: 10px 16px; border-radius: 6px;
  font-size: 12px; font-weight: 700;
  color: var(--ink); letter-spacing: 0.06em; text-transform: uppercase;
  transition: all .15s ease;
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }

/* -------- Breaking news ticker -------- */
.ticker {
  margin-top: 18px;
  display: flex; align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.ticker-tag {
  background: var(--orange); color: #fff;
  padding: 0 18px; display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase;
  flex: none;
}
.ticker-tag .signal {
  width: 14px; height: 14px; position: relative;
}
.ticker-tag .signal::before, .ticker-tag .signal::after {
  content: ""; position: absolute; inset: 0;
  border: 1.5px solid #fff; border-radius: 50%;
  animation: ripple 1.8s infinite;
}
.ticker-tag .signal::after { animation-delay: .9s; }
@keyframes ripple {
  0% { transform: scale(.3); opacity: 1; }
  100% { transform: scale(1.2); opacity: 0; }
}
.ticker-rail {
  flex: 1; min-width: 0;
  display: flex; align-items: center;
  padding: 0 18px;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex; gap: 30px; align-items: center;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}
.ticker-rail:hover .ticker-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item { display: inline-flex; gap: 10px; align-items: center; font-size: 13.5px; }
.ticker-item .time { color: var(--orange); font-weight: 800; }
.ticker-item .dot { width: 4px; height: 4px; background: var(--muted-2); border-radius: 50%; }
.ticker-nav { display: flex; align-items: center; padding-right: 10px; }
.ticker-nav button {
  width: 30px; height: 30px; display: grid; place-items: center;
  color: var(--muted); border-radius: 50%;
}
.ticker-nav button:hover { background: var(--surface-2); color: var(--ink); }

/* -------- Section heading -------- */
.section { padding: 56px 0 0; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 22px;
}
.section-title {
  font-size: 22px; font-weight: 800; margin: 0;
  letter-spacing: -0.01em;
  color: var(--purple);
  text-transform: uppercase;
  position: relative; padding-left: 14px;
}
.section-title::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 4px; background: var(--purple); border-radius: 2px;
}
.section-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
  color: var(--purple); text-transform: uppercase;
}
.section-link:hover { color: var(--orange); }

/* -------- Categories -------- */
.cats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
.cat-col h2 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid;
}
.cat-col[data-color="purple"] h2 { color: var(--purple); border-color: var(--purple); }
.cat-col[data-color="orange"] h2 { color: var(--orange); border-color: var(--orange); }
.cat-col[data-color="blue"] h2 { color: var(--blue); border-color: var(--blue); }

.cat-feature {
  display: block;
  margin-bottom: 14px;
}
.cat-feature .cf-img {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  margin-bottom: 10px;
}
.cat-feature .cf-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cat-feature:hover .cf-img img { transform: scale(1.04); }
.cat-feature h3 {
  font-size: 16px; font-weight: 700;
  margin: 0; line-height: 1.3;
  text-wrap: pretty;
  letter-spacing: -0.005em;
}
.cat-feature:hover h3 { color: var(--purple); }

.cat-list { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.cat-list li {
  display: block;
  font-size: 13.5px;
  line-height: 1.4;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
}
.cat-list li:first-child { border-top: 0; padding-top: 0; }
.cat-list li:hover { color: var(--purple); }

/* -------- Videos -------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.video-card { cursor: pointer; }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  margin-bottom: 10px;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.35) 100%);
}
.video-play span {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.95); display: grid; place-items: center;
  color: var(--orange);
  transition: transform .2s ease, background .2s ease;
}
.video-card:hover .video-play span { background: var(--orange); color: #fff; transform: scale(1.08); }
.video-dur {
  position: absolute; right: 8px; bottom: 8px;
  background: rgba(0,0,0,.78); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 7px; border-radius: 3px;
}
.video-card h4 {
  font-size: 14px; font-weight: 700;
  margin: 0 0 4px; line-height: 1.35;
  text-wrap: pretty;
}
.video-card .meta { font-size: 12px; color: var(--muted); }

/* -------- Programs -------- */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}
.prog-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a1320;
  cursor: pointer;
}
.prog-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: opacity .3s ease, transform .4s ease; }
.prog-card:hover img { opacity: 0.85; transform: scale(1.05); }
.prog-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,.85) 100%);
}
.prog-card .prog-content {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 14px; color: #fff;
}
.prog-card .prog-name {
  font-size: 17px; line-height: 1.1; font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.prog-card .prog-meta {
  font-size: 11px; opacity: 0.85;
  border-top: 1px solid rgba(255,255,255,.3);
  padding-top: 8px;
  display: flex; justify-content: space-between; align-items: center;
}
.prog-card .prog-meta b { font-weight: 800; font-size: 13px; }

/* -------- Hosts -------- */
.hosts-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.host-card {
  text-align: center;
  cursor: pointer;
}
.host-photo {
  aspect-ratio: 1/1.05;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  margin-bottom: 10px;
}
.host-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.host-card:hover .host-photo img { transform: scale(1.05); }
.host-name {
  font-size: 14px; font-weight: 700;
  margin: 0 0 2px;
}
.host-role {
  font-size: 12px; color: var(--muted);
  margin-bottom: 8px;
}
.host-btn {
  display: inline-block;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.host-card:hover .host-btn { border-color: var(--purple); color: var(--purple); }

.row-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-md);
  display: grid; place-items: center; color: var(--ink);
  z-index: 5;
}
.row-nav.prev { left: -16px; }
.row-nav.next { right: -16px; }
.row-nav:hover { background: var(--purple); color: #fff; }

/* -------- Authors -------- */
.authors {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.author-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 12px;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease;
}
.author-card:hover { border-color: var(--purple); }
.author-card .av {
  width: 56px; height: 56px; border-radius: 50%;
  overflow: hidden; flex: none;
  background: var(--surface-2);
}
.author-card .av img { width: 100%; height: 100%; object-fit: cover; }
.author-card .name { font-size: 13px; font-weight: 700; color: var(--purple); margin: 0 0 4px; }
.author-card .title { font-size: 13px; line-height: 1.35; margin: 0 0 8px; font-weight: 600; color: var(--ink); }
.author-card .more { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; color: var(--orange); text-transform: uppercase; }

/* -------- Footer -------- */
.footer {
  margin-top: 64px;
  background: linear-gradient(180deg, var(--purple) 0%, var(--purple-deep) 100%);
  color: #fff;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.2fr;
  gap: 36px;
  padding: 48px 0 32px;
}
.footer h4 {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 800;
  margin: 0 0 18px;
  color: #fff;
  opacity: 0.85;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { font-size: 13.5px; color: rgba(255,255,255,.78); }
.footer ul a:hover { color: #fff; }
.footer-brand .footer-blurb {
  font-size: 13.5px; line-height: 1.55;
  color: rgba(255,255,255,.78);
  margin: 16px 0 18px;
}
.footer-brand .footer-logo .logo-title { color: #fff; }
.footer-brand .footer-logo .logo-sub { color: rgba(255,255,255,.65); }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: grid; place-items: center;
  color: #fff;
}
.footer-social a:hover { background: var(--orange); }

.footer-contact .ct {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; margin-bottom: 12px;
  color: rgba(255,255,255,.85);
}
.footer-contact .ct svg { flex: none; margin-top: 2px; opacity: 0.7; }

.footer-cta {
  background: rgba(255,255,255,.06);
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.12);
}
.footer-cta h4 { color: #fff; opacity: 1; font-size: 13px; }
.footer-cta p { font-size: 12.5px; color: rgba(255,255,255,.78); margin: 0 0 14px; line-height: 1.5; }
.footer-cta .live-btn { width: 100%; justify-content: center; }
.footer-cta .footer-tag {
  display: block; margin-top: 14px;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--orange);
  font-weight: 800; text-transform: uppercase;
  text-align: center;
}

.footer-bot {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  display: flex; justify-content: space-between; align-items: center;
}

/* -------- Mobile -------- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .hamburger { display: grid; }
  .hero-grid { grid-template-columns: 1fr; }
  .program-bar { grid-template-columns: 1fr; }
  .program-slots { grid-template-columns: repeat(2, 1fr); }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .prog-grid { grid-template-columns: repeat(3, 1fr); }
  .hosts-row { grid-template-columns: repeat(3, 1fr); }
  .authors { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-main h1 { font-size: 26px; }
}

/* ===================== MOBİL (≤640px) ===================== */
@media (max-width: 640px) {
  /* --- Header: dengeli boyutlar --- */
  .header-inner { height: 64px; gap: 10px; }
  .logo-img { height: 40px !important; }            /* logo mobilde sabit ölçü */
  .header-actions { gap: 6px; }
  .icon-btn {
    width: 42px; height: 42px;                       /* dokunmatik için büyütüldü */
    font-size: 19px;
  }
  /* Canlı Yayın butonu: metni gizle, kompakt yuvarlak buton + nokta */
  .live-btn {
    height: 42px; width: 42px; padding: 0;
    justify-content: center; border-radius: 50%;
    font-size: 0;                                    /* "Canlı Yayın" yazısını gizle */
  }
  .live-btn .live-dot { margin: 0; width: 12px; height: 12px; }
  .hamburger { width: 42px; height: 42px; font-size: 22px; }

  /* --- Slider / Hero: metin taşmasını bitir --- */
  .hero { padding: 14px 0 0; }
  .hero-grid { gap: 12px; }
  .hero-main { aspect-ratio: auto; min-height: 420px; }   /* dikey alan ver */
  .hero-main .hero-content { padding: 18px 16px 20px; }
  .hero-main::after {
    background: linear-gradient(180deg, rgba(0,0,0,0) 8%, rgba(0,0,0,.55) 42%, rgba(0,0,0,.9) 100%);
  }
  .hero-main h1 { font-size: 21px; line-height: 1.25; margin-bottom: 8px; }
  .hero-main p {
    font-size: 14px; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden;                                /* en fazla 3 satır */
  }
  .hero-cta { margin-top: 14px; padding: 11px 18px; font-size: 14px; }
  .cat-badge { margin-bottom: 8px; }
  /* Okları köşeye al, içeriğin üstüne binmesin */
  .hero-arrows { display: none; }                    /* mobilde kaydırma yeterli */
  .hero-dots { bottom: 12px; }

  /* Yan kartları normal yığ */
  .hero-side { grid-template-rows: none; }
  .hero-side-card { aspect-ratio: 16/9; }

  /* --- Yayın Akışı: tek sütun, hizalı --- */
  .program-bar { padding: 16px; gap: 14px; }
  .program-slots { grid-template-columns: 1fr; gap: 0; }
  .slot {
    border-left: 0; border-top: 1px solid var(--line);
    padding: 14px 0 0; margin-top: 0;
  }
  .slot:first-child { border-top: 0; padding-top: 0; }
  .program-bar > .btn-outline { width: 100%; justify-content: center; text-align: center; margin-top: 4px; }

  /* --- Genel grid'ler tek sütun --- */
  .cats, .video-grid, .prog-grid, .hosts-row, .authors { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .topbar-links { display: none; }

  /* Bölüm başlıkları ve container nefes alsın */
  .container { padding-left: 16px; padding-right: 16px; }
}

/* Çok dar ekranlar (≤380px) — küçük ince ayarlar */
@media (max-width: 380px) {
  .logo-img { height: 34px !important; }
  .header-inner { gap: 6px; }
  .icon-btn, .live-btn, .hamburger { width: 38px; height: 38px; }
  .hero-main h1 { font-size: 19px; }
}
