/* Additional styles for subpages */

/* -------- Page hero / breadcrumb -------- */
.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 36px 0 32px;
}
.crumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 12px; color: var(--muted);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.crumb a:hover { color: var(--purple); }
.crumb .sep { color: var(--muted-2); }
.crumb b { color: var(--ink); font-weight: 700; }

.page-title {
  margin: 0; font-size: 36px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.page-blurb {
  margin: 12px 0 0; font-size: 15px;
  color: var(--muted); max-width: 640px;
}

/* -------- Article (news detail) -------- */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  padding: 36px 0 0;
}
.article {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 17px; line-height: 1.7;
  color: #1d1d20;
}
.article h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 40px; line-height: 1.12;
  font-weight: 800; letter-spacing: -0.02em;
  margin: 12px 0 16px;
  text-wrap: balance;
  color: var(--ink);
}
.article .spot {
  font-family: 'Manrope', sans-serif;
  font-size: 18px; line-height: 1.5;
  font-weight: 500;
  color: var(--ink-soft);
  margin: 0 0 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.article-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin: 22px 0;
  flex-wrap: wrap; gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
}
.article-byline {
  display: flex; align-items: center; gap: 12px;
}
.article-byline .av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface-2); overflow: hidden;
}
.article-byline .av img { width: 100%; height: 100%; object-fit: cover; }
.article-byline .name { font-weight: 700; color: var(--ink); }
.article-byline .role { color: var(--muted); font-size: 12px; }

.article-tools {
  display: flex; gap: 6px; align-items: center;
}
.article-tool {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}
.article-tool:hover { border-color: var(--purple); color: var(--purple); }

.article .cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--surface-2);
  margin-bottom: 28px;
}
.article .cover img { width: 100%; height: 100%; object-fit: cover; }

.article h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px; font-weight: 800; letter-spacing: -0.01em;
  margin: 32px 0 14px;
  color: var(--ink);
}

.article blockquote {
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--orange);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
}
.article blockquote cite {
  display: block;
  font-style: normal;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-box {
  border: 1px solid var(--line);
  border-top: 4px solid var(--purple);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 20px 22px;
  margin: 26px 0;
  font-family: 'Manrope', sans-serif;
  background: #fff;
}
.info-box h4 {
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 800;
  color: var(--purple); margin: 0 0 14px;
}
.info-box ul { list-style: none; padding: 0; margin: 0; }
.info-box li {
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  position: relative;
}
.info-box li:last-child { border-bottom: 0; }
.info-box li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
}

.tag-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 32px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: 'Manrope', sans-serif;
}
.tag-row .tg {
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.tag-row .tg:hover { background: var(--purple); color: #fff; }

.share-row {
  display: flex; gap: 8px;
  margin: 24px 0 12px;
  font-family: 'Manrope', sans-serif;
}
.share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 6px; font-size: 12px; font-weight: 700;
  background: var(--surface-2); color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.share-btn:hover { background: var(--purple); color: #fff; }

/* Sidebar */
.sidebar { font-family: 'Manrope', sans-serif; }
.sidebar-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 24px;
  overflow: hidden;
}
.sidebar-box h3 {
  font-size: 12px; letter-spacing: 0.12em; font-weight: 800;
  text-transform: uppercase;
  margin: 0; padding: 14px 18px;
  background: var(--purple); color: #fff;
}
.sb-list { padding: 8px 0; }
.sb-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.sb-item:last-child { border-bottom: 0; }
.sb-item:hover { background: var(--surface); }
.sb-num {
  font-size: 22px; font-weight: 800; color: var(--orange);
  line-height: 1; min-width: 22px;
}
.sb-title { font-size: 13.5px; font-weight: 600; line-height: 1.35; }
.sb-time { font-size: 11px; color: var(--muted); margin-top: 4px; }
.sb-thumb {
  width: 72px; height: 50px; border-radius: 4px;
  overflow: hidden; flex: none; background: var(--surface-2);
}
.sb-thumb img { width: 100%; height: 100%; object-fit: cover; }

.sidebar-ad {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 80px 20px;
  text-align: center;
  font-family: monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

/* -------- Category listing -------- */
.list-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 36px 0 0;
}
.news-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.news-card:first-child { padding-top: 0; }
.news-card .ncov {
  aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden;
  background: var(--surface-2);
}
.news-card .ncov img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .ncov img { transform: scale(1.04); }
.news-card h3 {
  font-size: 20px; font-weight: 700;
  margin: 8px 0 8px; line-height: 1.3;
  letter-spacing: -0.01em;
}
.news-card:hover h3 { color: var(--purple); }
.news-card p {
  font-size: 14px; color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.5;
}
.news-card .meta {
  display: flex; gap: 12px; font-size: 12px;
  color: var(--muted-2); font-weight: 600;
}
.news-card .meta b { color: var(--orange); font-weight: 700; }

.pagination {
  display: flex; justify-content: center; gap: 6px;
  margin: 40px 0;
}
.pagination button {
  width: 38px; height: 38px; border-radius: 6px;
  border: 1px solid var(--line);
  font-weight: 700; font-size: 13px;
  color: var(--ink);
}
.pagination button:hover { border-color: var(--purple); color: var(--purple); }
.pagination button.active { background: var(--purple); color: #fff; border-color: var(--purple); }

/* -------- Filter bar -------- */
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.filter-chip {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  background: #fff; border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  cursor: pointer;
}
.filter-chip:hover { border-color: var(--purple); color: var(--purple); }
.filter-chip.active { background: var(--purple); color: #fff; border-color: var(--purple); }
.filter-search {
  margin-left: auto;
  position: relative;
}
.filter-search input {
  height: 38px; padding: 0 14px 0 38px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  width: 280px;
  font-family: inherit; font-size: 13px;
}
.filter-search input:focus { outline: none; border-color: var(--purple); }
.filter-search svg { position: absolute; left: 14px; top: 10px; color: var(--muted); }

/* -------- Program list / detail -------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 36px 0 0;
}
.program-card-lg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.program-card-lg:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--purple); }
.program-card-lg .pposter {
  aspect-ratio: 16/10;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.program-card-lg .pposter img { width: 100%; height: 100%; object-fit: cover; }
.program-card-lg .pposter::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.6) 100%);
}
.program-card-lg .pcat {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 800;
  padding: 4px 8px; border-radius: 3px;
  background: var(--purple); color: #fff;
  letter-spacing: 0.08em; text-transform: uppercase; z-index: 2;
}
.program-card-lg .pname {
  position: absolute; bottom: 12px; left: 14px; right: 14px;
  font-size: 18px; font-weight: 800;
  color: #fff; z-index: 2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.program-card-lg .pbody {
  padding: 16px 18px; display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.program-card-lg .pdesc {
  font-size: 13.5px; color: var(--muted); line-height: 1.5;
  margin: 0; flex: 1;
}
.program-card-lg .phost {
  font-size: 12px; color: var(--ink);
  font-weight: 600;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.program-card-lg .phost b { color: var(--purple); }
.program-card-lg .ptime {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.program-card-lg .ptime span { font-size: 12px; color: var(--muted); }
.program-card-lg .ptime b { font-size: 14px; font-weight: 800; color: var(--ink); }
.program-card-lg .pcta {
  display: block; text-align: center;
  background: var(--orange); color: #fff;
  padding: 12px 16px; font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.program-card-lg .pcta:hover { background: var(--orange-deep); }

/* -------- Program detail -------- */
.prog-detail-hero {
  position: relative;
  aspect-ratio: 16/6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a1320;
  margin-top: 24px;
}
.prog-detail-hero img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.prog-detail-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.45) 60%, rgba(0,0,0,.2) 100%); }
.prog-detail-hero .pdh-content {
  position: absolute; inset: 0; z-index: 2;
  padding: 48px;
  color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.prog-detail-hero h1 {
  font-size: 48px; font-weight: 800; margin: 0 0 12px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.prog-detail-hero .pdh-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 14px; font-weight: 600;
  opacity: 0.85;
}
.prog-detail-hero .pdh-meta b { color: var(--orange); font-weight: 800; }

.prog-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  padding: 40px 0 0;
}
.video-embed {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  margin-bottom: 28px;
  position: relative;
}
.video-embed img { width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.video-embed::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(0,0,0,.2), rgba(0,0,0,.6)); }
.video-embed .vplay {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.video-embed .vplay span {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--orange); display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 10px 40px rgba(225, 109, 81, .5);
}

/* -------- Host / Author profile -------- */
.profile-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  padding: 40px 0 0;
}
.profile-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-info h1 {
  font-size: 42px; font-weight: 800; margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.profile-info .prole {
  font-size: 14px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.profile-info .pbio {
  font-size: 16px; line-height: 1.65; color: var(--ink-soft);
  margin-bottom: 24px;
  max-width: 560px;
}
.profile-social {
  display: flex; gap: 10px;
  margin-bottom: 28px;
}
.profile-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface-2);
  display: grid; place-items: center;
  color: var(--ink);
}
.profile-social a:hover { background: var(--purple); color: #fff; }

/* -------- Contact -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding: 40px 0 0;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-row {
  display: grid; gap: 6px;
  margin-bottom: 16px;
}
.form-row label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted);
}
.form-row input, .form-row textarea, .form-row select {
  height: 42px; padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-family: inherit; font-size: 14px;
  background: #fff; color: var(--ink);
}
.form-row textarea { height: auto; padding: 12px 14px; min-height: 120px; resize: vertical; line-height: 1.5; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-color: var(--purple);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  background: var(--orange); color: #fff;
  padding: 14px 28px; border-radius: 6px;
  font-weight: 800; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer;
}
.form-submit:hover { background: var(--orange-deep); }

.contact-info { display: grid; gap: 16px; }
.ci-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; gap: 16px;
}
.ci-card .ci-ic {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(104, 43, 104, .08); color: var(--purple);
  display: grid; place-items: center; flex: none;
}
.ci-card h4 { margin: 0 0 6px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; }
.ci-card p { margin: 0; font-size: 14px; font-weight: 600; line-height: 1.5; }

.map-placeholder {
  margin-top: 28px;
  aspect-ratio: 16/8;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e8e8ed 25%, #f4f4f6 25%, #f4f4f6 50%, #e8e8ed 50%, #e8e8ed 75%, #f4f4f6 75%);
  background-size: 40px 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  position: relative;
}
.map-placeholder::after {
  content: "Tuzla / İstanbul";
  background: #fff;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

/* -------- Künye -------- */
.kunye-section {
  margin: 36px 0;
  border-top: 2px solid var(--purple);
  padding-top: 28px;
}
.kunye-section h2 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--purple);
  margin: 0 0 18px;
}
.kunye-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.kunye-person h4 { font-size: 15px; font-weight: 700; margin: 0 0 2px; }
.kunye-person p { font-size: 12px; color: var(--muted); margin: 0; }

/* -------- Videos page -------- */
.video-featured {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.video-featured .vf-main {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  position: relative;
}
.video-featured .vf-main img { width: 100%; height: 100%; object-fit: cover; opacity: 0.65; }
.video-featured .vf-main .vplay { position: absolute; inset: 0; display: grid; place-items: center; }
.video-featured .vf-main .vplay span {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 40px rgba(225, 109, 81, .5);
}
.video-featured .vf-info h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 12px; line-height: 1.15; }
.video-featured .vf-info p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 0 18px; }
.video-featured .vf-info .vf-meta { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.video-featured .vf-info .vf-meta b { color: var(--purple); }

.video-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}

/* -------- Auth pages grid -------- */
.host-grid-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 40px 0 0;
}
.host-card-lg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.host-card-lg:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--purple); }
.host-card-lg .hphoto {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  margin-bottom: 16px;
}
.host-card-lg .hphoto img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.host-card-lg:hover .hphoto img { transform: scale(1.05); }
.host-card-lg h3 { margin: 0 0 4px; font-size: 16px; font-weight: 800; }
.host-card-lg .hrole { font-size: 12px; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.host-card-lg .hprog { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.host-card-lg .hbtn {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 4px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.host-card-lg:hover .hbtn { background: var(--purple); border-color: var(--purple); color: #fff; }

/* -------- Mobile subpages -------- */
@media (max-width: 1024px) {
  .article-grid, .list-grid, .prog-detail-grid, .profile-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .news-card { grid-template-columns: 1fr; }
  .news-card .ncov { max-width: 100%; }
  .programs-grid, .host-grid-page { grid-template-columns: repeat(2, 1fr); }
  .video-page-grid { grid-template-columns: repeat(2, 1fr); }
  .video-featured { grid-template-columns: 1fr; }
  .kunye-list { grid-template-columns: repeat(2, 1fr); }
  .form-grid-2 { grid-template-columns: 1fr; }
  .prog-detail-hero h1 { font-size: 30px; }
  .prog-detail-hero .pdh-content { padding: 28px; }
  .page-title { font-size: 28px; }
  .article h1 { font-size: 30px; }
}
@media (max-width: 640px) {
  .programs-grid, .host-grid-page, .video-page-grid, .kunye-list { grid-template-columns: 1fr; }
}
