/* =============================================================================
   ORGHABER NEWS THEME — Main Stylesheet
   Version: 1.0.0
   Consolidated from 12 legacy CSS files into one clean source.
   ============================================================================= */

/* =============================================================================
   1. DESIGN TOKENS
   ============================================================================= */

:root {
  /* Brand colours */
  --red:   #e02a2e;
  --navy:  #0b1020;
  --ink:   #151823;
  --muted: #69707a;
  --cream: #f7f5f1;

  /* UI colours */
  --paper: #fff;
  --wash:  #f6f7f9;
  --line:  #e0e3e9;

  /* Typography */
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;

  /* Layout */
  --max: 1240px;
  --shell: calc(100% - 40px);
}

/* =============================================================================
   2. RESET & BASE
   ============================================================================= */

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

/* =============================================================================
   3. LAYOUT SHELL
   ============================================================================= */

.shell {
  width: min(var(--max), var(--shell));
  margin-inline: auto;
}

/* =============================================================================
   4. UTILITY BAR  (top strip: "CANLI GÜNDEM · tarih")
   ============================================================================= */

.utility-bar {
  background: var(--navy);
  color: #b8c0cf;
  font-size: 11px;
  letter-spacing: .3px;
}

.utility-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 34px;
}

.utility-live {
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.utility-live i {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #ff3340;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 51, 64, .15);
}

.utility-right { margin-left: auto; }

/* =============================================================================
   5. HEADER  (masthead + category bar)
   ============================================================================= */

.newsroom-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

/* --- Masthead ---------------------------------------------------------------- */

.masthead {
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.premium-brand {
  display: block;
  flex: 0 0 220px;
  text-decoration: none;
  line-height: 0;
}

.premium-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.masthead-center {
  text-align: center;
  display: grid;
  gap: 3px;
}

.masthead-center strong {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
}

.masthead-center span {
  font-size: 12px;
  color: #737b87;
}

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.search-toggle,
.newsletter-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 3px;
  font: 800 12px/1 var(--font-sans);
  text-decoration: none;
  cursor: pointer;
}

.search-toggle {
  border: 1px solid #d9dce2;
  background: #fff;
  color: var(--navy);
}

.search-toggle span:first-child {
  font-size: 21px;
  line-height: 0;
  margin-right: 5px;
}

.newsletter-link {
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
}

/* --- Category bar ----------------------------------------------------------- */

.category-bar {
  background: var(--red);
  position: relative;
  z-index: 30;
}

.primary-category-nav {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 48px;
  overflow: visible;
}

.primary-category-nav > a,
.primary-category-nav summary {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 13px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .48px;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
}

.primary-category-nav > a:hover,
.primary-category-nav > a:focus-visible,
.primary-category-nav summary:hover,
.primary-category-nav summary:focus-visible {
  background: rgba(6, 10, 21, .18);
  outline: none;
}

.primary-category-nav .nav-home {
  gap: 7px;
  padding-left: 0;
  margin-right: 7px;
  color: #fff;
  font-size: 11px;
}

.primary-category-nav .nav-home span {
  font-size: 17px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Dropdown */
.category-menu {
  margin-left: auto;
  position: relative;
  display: block;
}

.category-menu summary { gap: 7px; padding-right: 0; }
.category-menu summary::-webkit-details-marker { display: none; }

.category-mega {
  display: none;
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  width: min(720px, calc(100vw - 40px));
  padding: 22px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  box-shadow: 0 18px 42px rgba(10, 15, 30, .18);
}

.category-menu[open] .category-mega { display: block; }

.category-mega strong {
  display: block;
  margin-bottom: 15px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
}

.category-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px 20px;
}

.category-mega-grid a {
  display: block;
  padding: 8px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
}

.category-mega-grid a:hover { color: var(--red); }

/* =============================================================================
   6. SITE SEARCH  (fullscreen overlay)
   ============================================================================= */

.site-search {
  position: fixed;
  z-index: 40;
  inset: 0;
  min-height: 100vh;
  padding-top: 72px;
  background: rgba(11, 16, 32, .985);
  box-shadow: 0 16px 32px rgba(5, 8, 16, .18);
}

.site-search__inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-search form {
  display: grid;
  grid-template-columns: auto minmax(220px, 560px) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
}

.site-search label { color: #fff; font-weight: 800; font-size: 13px; }

.site-search input {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid #596174;
  border-radius: 3px;
  background: #fff;
  font-size: 16px;
  font-family: var(--font-sans);
}

.site-search input:focus {
  outline: 3px solid rgba(224, 42, 46, .5);
  outline-offset: 2px;
}

.site-search form button {
  padding: 13px 20px;
  border: 0;
  border-radius: 3px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-family: var(--font-sans);
  cursor: pointer;
}

.site-search__close {
  padding: 8px 12px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  align-self: center;
}

/* =============================================================================
   7. MARKET STRIP  (currency ticker)
   ============================================================================= */

.market-strip {
  background: #121724;
  color: #e5e8ee;
  border-bottom: 1px solid #252d3d;
}

.market-inner {
  min-height: 37px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  white-space: nowrap;
  font-size: 11px;
}

.market-label,
.market-bist { color: inherit; text-decoration: none; }
.market-label:hover,
.market-bist:hover { color: #fff; text-decoration: underline; }

.market-label { font-weight: 900; letter-spacing: .7px; }
.market-inner b { color: #fff; margin-left: 3px; }
.market-inner i { font-style: normal; font-size: 10px; margin-left: 2px; color: #aeb8c8; }
.market-bist { margin-left: auto; }
.up  { color: #67e2a8; }
.down { color: #ff7780; }

/* =============================================================================
   8. HOME — HEADLINE ZONE  (hero slider + rail)
   ============================================================================= */

.premium-home { padding-top: 24px; }

.headline-zone {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 325px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 0;
}

/* Slider */
.headline-slider {
  height: 470px;
  background: #0a1020;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.headline-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease;
}

.headline-slide.is-active { opacity: 1; visibility: visible; }

.headline-image,
.headline-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.headline-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 8, 16, .8), rgba(4, 8, 16, .05) 75%);
}

.headline-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 34px;
  color: #fff;
  max-width: 76%;
}

.headline-overlay .eyebrow,
.headline-overlay .eyebrow a { color: #ffadb2; }

.headline-overlay h1,
.headline-overlay h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.1vw, 48px);
  line-height: 1.02;
  margin: 0 0 12px;
  letter-spacing: -1.8px;
}

.headline-overlay h1 a,
.headline-overlay h2 a { color: #fff; text-decoration: none; }
.headline-overlay p { color: #d9dce4; margin: 0 0 10px; }
.headline-overlay small { color: #aeb7c7; }

.slider-ui {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-ui > button {
  background: #fff;
  color: #101625;
  border: 0;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-dots { display: flex; gap: 5px; }

.slider-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: width .2s ease, border-radius .2s ease;
}

.slider-dots button.is-active {
  width: 22px;
  border-radius: 5px;
  background: var(--red);
}

/* Rail */
.headline-rail {
  display: grid;
  grid-template-rows: auto repeat(3, minmax(0, 1fr));
  height: 470px;
  min-height: 0;
  border: 1px solid var(--line);
  background: #fff;
  padding: 15px 19px;
}

.rail-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 12px;
  margin-bottom: 0;
  font-size: 11px;
  letter-spacing: .8px;
}

.rail-title span { font-weight: 900; color: var(--red); }
.rail-title b { font-size: 11px; }

.rail-story {
  display: block;
  min-height: 0;
  overflow: hidden;
  position: relative;
  background: #0c1220;
}

.rail-image,
.rail-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 116px;
  object-fit: cover;
}

.rail-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 8, 18, .88), rgba(3, 8, 18, .12));
}

.rail-image span {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  padding: 13px;
  color: #fff;
  display: grid;
  grid-template-columns: 31px 1fr;
  column-gap: 8px;
  align-items: start;
}

.rail-image span b { grid-row: 1 / 3; font: 700 20px var(--font-serif); color: #ff7e85; }
.rail-image span em { font-size: 9px; font-style: normal; color: #ffb3b7; text-transform: uppercase; font-weight: 900; letter-spacing: .8px; }
.rail-image span strong { font: 700 16px/1.12 var(--font-serif); color: #fff; }

.rail-image:hover img { transform: scale(1.04); transition: transform .3s; }
.rail-image img { transition: transform .3s; }

/* =============================================================================
   9. HOME — QUICK STRIP  (4 headline text only)
   ============================================================================= */

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-top: 0;
  margin-bottom: 32px;
}

.quick-strip article {
  padding: 15px;
  border-right: 1px solid var(--line);
}

.quick-strip article:last-child { border-right: 0; }
.quick-strip h3 { font: 700 16px/1.18 var(--font-serif); margin: 0; }
.quick-strip a { color: inherit; text-decoration: none; }
.quick-strip a:hover { color: var(--red); }

/* =============================================================================
   10. HOME — SPOTLIGHT LAYOUT  (big feature + stack + live desk)
   ============================================================================= */

.spotlight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(210px, .55fr) minmax(250px, .55fr);
  gap: 18px;
  margin: 32px 0 42px;
}

/* At desktop, force all columns to equal height */
@media (min-width: 901px) {
  .spotlight-layout {
    height: 520px;
    align-items: stretch;
  }

  .spotlight-main,
  .spotlight-main .spotlight-story,
  .spotlight-stack,
  .live-desk { height: 100%; min-height: 0; }

  .spotlight-main .spotlight-story { min-height: 520px; }
  .spotlight-stack { grid-template-rows: repeat(3, minmax(0, 1fr)); }
  .spotlight-stack .stack-story { min-height: 0; overflow: hidden; }
  .live-desk { overflow: hidden; }
}

.spotlight-story {
  position: relative;
  background: #101725;
  color: #fff;
  height: 390px;
  overflow: hidden;
}

.spotlight-image,
.spotlight-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-story::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 14, .92), transparent 70%);
}

.spotlight-story > div {
  position: absolute;
  z-index: 2;
  bottom: 0;
  padding: 25px;
}

.spotlight-story h2 { font: 700 30px/1.1 var(--font-serif); margin: 0 0 8px; }
.spotlight-story h2 a { color: #fff; text-decoration: none; }
.spotlight-story p { color: #d5dae5; margin: 0; }

.spotlight-stack { display: grid; gap: 12px; }

.stack-story {
  border-top: 3px solid var(--red);
  background: #f5f6f8;
  padding: 17px;
}

.stack-story h3 { font: 700 20px/1.15 var(--font-serif); margin: 2px 0 10px; }
.stack-story small { color: #7c8592; }
.stack-story a { color: inherit; text-decoration: none; }
.stack-story a:hover { color: var(--red); }

/* Live desk */
.live-desk {
  background: #101725;
  color: #fff;
  padding: 18px;
}

.live-desk header {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #3b4355;
  padding-bottom: 12px;
}

.live-desk header span {
  color: #ff3842;
  animation: orghaber-pulse 1.65s ease-in-out infinite;
}

@keyframes orghaber-pulse {
  50% { opacity: .35; transform: scale(.8); }
}

.live-desk h2 { font-size: 12px; letter-spacing: 1px; margin: 0; }

.live-desk article {
  padding: 14px 0;
  border-bottom: 1px solid #2a3244;
}

.live-desk time {
  display: block;
  color: #ff8f94;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 3px;
}

.live-desk article a { font: 700 16px/1.18 var(--font-serif); color: #fff; text-decoration: none; }
.live-desk article a:hover { color: #ffb4ba; }
.all-live { display: block; color: #fff; margin-top: 18px; font-size: 12px; font-weight: 800; text-decoration: none; }

/* =============================================================================
   11. HOME — CATEGORY STREAMS
   ============================================================================= */

.category-streams {
  display: grid;
  gap: 52px;
  margin-top: 44px;
}

.category-stream { padding-top: 16px; }

.category-stream-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 13px;
  margin-bottom: 17px;
  border-bottom: 1px solid #dfe3e9;
}

.category-stream-head::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 56px;
  height: 3px;
  background: var(--red);
}

.category-stream-head span { display: block; color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: 1.1px; }
.category-stream-head h2 { font: 700 30px/1 var(--font-serif); margin: 5px 0 0; }

.category-stream-head > a {
  color: var(--navy);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  transition: color .18s ease, transform .18s ease;
}

.category-stream-head > a:hover { color: var(--red); transform: translateX(3px); }

/* Grid */
.category-stream-grid {
  display: grid;
  gap: 14px;
}

/* Cards — always dark overlay style */
.category-stream-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 230px;
  background: #101725;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(10, 16, 32, .12);
  transition: transform .22s ease, box-shadow .22s ease;
}

.category-stream-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(10, 16, 32, .18);
}

.category-stream-image {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.category-stream-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.category-stream-card:hover .category-stream-image img { transform: scale(1.04); }

.category-stream-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 8, 16, .94), rgba(4, 8, 16, .12) 76%);
}

.category-stream-card > div {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 16px;
}

.category-stream-card .eyebrow { color: #ffabb1; }
.category-stream-card h3 { font: 700 19px/1.12 var(--font-serif); margin: 0 0 9px; }
.category-stream-card h3 a { color: #fff; text-decoration: none; transition: color .18s ease; }
.category-stream-card:hover h3 a { color: #ffd3d6; }
.category-stream-card small { color: #c8d0dc; font-size: 11px; }

/* Lead card */
.category-stream-card--lead { min-height: 486px; }
.category-stream-card--lead > div { padding: 24px; }
.category-stream-card--lead h3 { font-size: 30px; }

/* Desktop 3-column editorial grid */
@media (min-width: 961px) {
  .category-stream-grid {
    grid-template-columns: 1.45fr repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 236px);
  }

  .category-stream-card { min-height: 0; }
  .category-stream-card--lead { grid-row: span 2; min-height: 486px; }

  /* Fill remaining row when category has fewer posts */
  .category-stream-grid--count-4 .category-stream-card:last-child { grid-column: span 2; }
  .category-stream-grid--count-3 .category-stream-card:nth-child(2) { grid-column: span 2; }
  .category-stream-grid--count-2 .category-stream-card:nth-child(2) { grid-row: span 2; }
}

/* =============================================================================
   12. ARTICLE PAGE
   ============================================================================= */

.reading-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  transition: width .1s linear;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 70px;
  padding-top: 52px;
  padding-bottom: 60px;
}

.article h1 {
  max-width: 880px;
  font-size: clamp(40px, 4.3vw, 68px);
  line-height: 1.04;
  letter-spacing: -2.8px;
  margin: 0 0 14px;
}

.article-lead {
  max-width: 780px;
  font-size: 21px;
  color: #58606b;
  line-height: 1.5;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 22px 0;
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.article-meta span,
.article-meta time {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
}

.article-tools {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 0;
}

.article-tools__label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .9px;
  color: #737d8d;
}

.article-tools button {
  padding: 8px 11px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font-sans);
}

.article-tools button:hover { background: var(--wash); }

.article-image { margin: 24px 0; }
.article-image img { width: 100%; height: auto; }

.article-body {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.8;
}

.article-body > p:first-child {
  font-size: 21px;
  line-height: 1.62;
}

.article-body h2 {
  font-family: var(--font-sans);
  font-size: 26px;
  line-height: 1.2;
  margin-top: 38px;
}

/* Article sidebar */
.article-rail { }

.article-related {
  border-top: 3px solid var(--red);
  background: #101725;
  color: #fff;
  padding: 18px;
}

.article-related header { border-bottom: 1px solid #3a4353; padding-bottom: 13px; }
.article-related header span { display: block; color: #ff99a0; font-size: 10px; font-weight: 900; letter-spacing: 1px; }
.article-related h2 { font: 700 24px/1.05 var(--font-serif); margin: 5px 0 0; }

.article-related-item { border-bottom: 1px solid #2c3545; padding: 15px 0; }
.article-related-item time { display: block; color: #ff99a0; font-size: 11px; font-weight: 900; margin-bottom: 5px; }
.article-related-item a { color: #fff; text-decoration: none; font: 700 17px/1.17 var(--font-serif); }
.article-related-item a:hover { color: #ffb4ba; }
.article-related-all { display: block; color: #fff; text-decoration: none; font-size: 12px; font-weight: 900; margin-top: 17px; }

/* =============================================================================
   13. CATEGORY PAGE
   ============================================================================= */

.category-page { padding-top: 28px; }

.category-page-heading {
  border-bottom: 2px solid var(--navy);
  margin-bottom: 22px;
  padding-bottom: 15px;
}

.category-page-heading > span { display: block; color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: 1px; }
.category-page-heading h1 { font: 700 42px/1 var(--font-serif); margin: 7px 0; }
.category-page-heading p { max-width: 720px; margin: 0; color: #667080; }

.category-slider { height: 520px; margin-bottom: 36px; }

.category-listing { padding-bottom: 12px; }

/* Post grid (used in category + search) */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card-image {
  display: block;
  aspect-ratio: 1.58;
  overflow: hidden;
  background: #111827;
}

.card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s;
}

.card-image:hover img { transform: scale(1.03); }

.card-copy { padding-top: 12px; }

.post-card h3 {
  font: 700 19px/1.2 var(--font-serif);
  margin: 0 0 8px;
  letter-spacing: -.4px;
}

.post-card h3 a { color: inherit; text-decoration: none; }
.post-card h3 a:hover { color: var(--red); }
.post-card small { color: var(--muted); font-size: 12px; }

/* =============================================================================
   14. SEARCH RESULTS PAGE
   ============================================================================= */

.listing { padding-top: 36px; }

.search-results .page-heading > span {
  display: block;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.1px;
}

.search-results .page-heading p { margin: 0 0 16px; color: #677182; }

.page-heading {
  border-bottom: 2px solid var(--navy);
  margin-bottom: 25px;
}

.page-heading h1 { margin: 0 0 12px; font-size: 34px; }

.search-empty {
  max-width: 680px;
  margin: 50px auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.search-empty h2 { margin-top: 0; font-family: var(--font-serif); }

.search-empty form {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
}

.search-empty label { grid-column: 1 / -1; font-weight: 800; }

.search-empty input {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 16px;
  font-family: var(--font-sans);
}

.search-empty button {
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font-sans);
}

/* =============================================================================
   15. PIYASA (MARKET) PAGE
   ============================================================================= */

.market-page { padding-top: 44px; padding-bottom: 30px; }

.market-page__hero {
  max-width: 820px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
}

.market-page__hero > span {
  color: var(--red);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1.2px;
}

.market-page h1 {
  margin: 7px 0 10px;
  font: 700 clamp(42px, 6vw, 68px)/.98 var(--font-serif);
  letter-spacing: -2.4px;
}

.market-page__hero > p {
  max-width: 620px;
  margin: 0;
  color: #647082;
  font-size: 17px;
}

.market-page__status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 12px;
  color: #657082;
}

.market-page__status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4fdaa5;
  box-shadow: 0 0 0 4px rgba(79, 218, 165, .15);
}

.market-page__status button {
  margin-left: 5px;
  padding: 7px 10px;
  border: 1px solid #d9dfe7;
  border-radius: 4px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font-sans);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.market-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  background: linear-gradient(145deg, #fff, #f2f5f8);
}

.market-card span { font-size: 11px; font-weight: 900; letter-spacing: .9px; color: var(--red); }
.market-card strong { margin: 10px 0; font: 700 clamp(26px, 2.4vw, 38px)/1 var(--font-serif); color: var(--navy); }
.market-card small { color: #687384; line-height: 1.4; }

.market-card--pending { background: #101827; color: #fff; border-color: #101827; }
.market-card--pending strong { color: #fff; }
.market-card--pending small { color: #b7c0cf; }

.market-page__note {
  max-width: 820px;
  padding: 23px;
  border-left: 3px solid var(--red);
  background: #f2f4f7;
}

.market-page__note h2 { margin: 0 0 8px; font: 700 23px/1 var(--font-serif); }
.market-page__note p { margin: 0; color: #5e6878; line-height: 1.6; }

/* =============================================================================
   16. CORPORATE PAGES  (Hakkımızda, Künye, İletişim, vb.)
   ============================================================================= */

.corporate-page { padding: 0 0 28px; background: #fff; }

.corporate-page__hero {
  padding: 56px 0 42px;
  border-bottom: 1px solid var(--line);
  max-width: var(--max);
}

.corporate-page__kicker {
  display: block;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.25px;
}

.corporate-page__hero h1 {
  max-width: 820px;
  margin: 10px 0 14px;
  font: 700 clamp(38px, 5vw, 64px)/1.02 var(--font-serif);
  letter-spacing: -2.4px;
  color: var(--navy);
}

.corporate-page__hero p {
  max-width: 640px;
  margin: 0;
  color: #6f7885;
  font-size: 18px;
  line-height: 1.55;
}

.corporate-page__layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 74px;
  padding-top: 42px;
  padding-bottom: 44px;
}

.corporate-page__nav {
  height: max-content;
  border-top: 3px solid var(--red);
  padding-top: 14px;
}

.corporate-page__nav strong {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}

.corporate-page__nav nav { display: grid; }

.corporate-page__nav a {
  padding: 10px 0;
  color: #596270;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.corporate-page__nav a:hover,
.corporate-page__nav a.is-current { color: var(--red); }
.corporate-page__nav a.is-current::before { content: '•'; margin-right: 7px; }

.corporate-page__content {
  font-family: var(--font-serif);
  color: #252a34;
  font-size: 19px;
  line-height: 1.78;
}

.corporate-page__content > p:first-child {
  margin-top: 0;
  font-size: 22px;
  line-height: 1.55;
  color: #434b57;
}

.corporate-page__content p { margin: 0 0 22px; }
.corporate-page__content strong { color: #141924; }
.corporate-page__content a { color: var(--red); font-weight: 700; }

.corporate-page__note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: 13px;
  color: #697383;
}

.corporate-page__note strong { color: var(--red); letter-spacing: .5px; }

/* =============================================================================
   17. PAGINATION
   ============================================================================= */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
  margin: 38px 0 12px;
  font-weight: 800;
}

.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}

.pagination a,
.pagination .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 39px;
  height: 39px;
  padding: 0 12px;
  border: 1px solid #dfe3e9;
  border-radius: 7px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  text-decoration: none;
}

.pagination a:hover,
.pagination a:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  outline: 0;
}

.pagination .current {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.pagination .dots {
  border: 0;
  background: transparent;
  min-width: auto;
  padding: 0 3px;
}

/* =============================================================================
   18. EYEBROW & SHARED
   ============================================================================= */

.eyebrow {
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .7px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 7px;
}

.eyebrow a { color: var(--red); text-decoration: none; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 18px;
}

.section-head h2 { font-size: 24px; margin: 0; padding-bottom: 10px; font-family: var(--font-serif); }
.section-head a { font-size: 13px; color: var(--red); font-weight: 800; text-decoration: none; }

/* =============================================================================
   19. FOOTER
   ============================================================================= */

.site-footer {
  margin-top: 58px;
  background: #080d18;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr 1fr;
  gap: 50px;
  padding: 55px 0 46px;
}

.brand--footer {
  font-size: 27px;
  letter-spacing: -1.7px;
  color: #fff;
  font-weight: 950;
  text-decoration: none;
}

.brand--footer span { color: var(--red); }

.site-footer h2 { font-size: 14px; text-transform: uppercase; letter-spacing: .8px; }
.site-footer p { color: #b9bec7; font-size: 14px; }
.site-footer li { color: #b9bec7; font-size: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: #ffadb2; }

/* Newsletter */
.newsletter { display: flex; }
.newsletter input { min-width: 0; width: 100%; padding: 12px; border: 0; font-family: var(--font-sans); }
.newsletter button {
  border: 0;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  padding: 0 15px;
  cursor: pointer;
  font-family: var(--font-sans);
}

.site-footer #bulten small {
  display: block;
  margin-top: 10px;
  color: #9ca5b4;
  font-size: 11px;
  line-height: 1.45;
}

.footer-bottom {
  border-top: 1px solid #343840;
  padding: 16px 0;
  color: #89909a;
  font-size: 12px;
}

/* =============================================================================
   20. AD SLOTS  (preserved but not rendered by theme)
   ============================================================================= */

.ad-slot {
  height: 150px;
  background: var(--wash);
  border: 1px dashed #c7ccd4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 26px;
  color: #8a929d;
  font-size: 10px;
  letter-spacing: 1.2px;
}

.ad-slot--infeed-1 { height: 110px; margin-top: 32px; }
.ad-slot--sidebar  { height: 250px; margin-top: 24px; }
.ad-slot--article-top,
.ad-slot--article-bottom { height: 180px; margin: 28px 0; }

/* =============================================================================
   21. RESPONSIVE — TABLET  (≤ 960px)
   ============================================================================= */

@media (max-width: 960px) {
  .masthead-center { display: none; }
  .masthead { min-height: 82px; }

  .headline-zone,
  .spotlight-layout { grid-template-columns: 1fr; }

  .headline-rail {
    height: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto 160px;
  }

  .rail-title { grid-column: 1 / -1; }
  .rail-story { margin: 0; }
  .rail-image,
  .rail-image img { min-height: 160px; }

  .spotlight-stack { grid-template-columns: repeat(3, 1fr); }
  .live-desk { display: none; }

  .article-layout { padding-top: 36px; }

  .category-stream-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .category-stream-card--lead { grid-row: span 2; min-height: 390px; }
  .category-stream-card { min-height: 210px; }

  .primary-category-nav > a:nth-of-type(n+7) { display: none; }
  .category-menu { margin-left: auto; }
  .primary-category-nav > a,
  .primary-category-nav summary { padding-inline: 10px; }

  .market-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .market-bist { margin-left: 0; }

  .corporate-page__hero { padding-top: 38px; }
  .corporate-page__layout { grid-template-columns: 1fr; gap: 28px; padding-top: 28px; }
  .corporate-page__nav nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
  .corporate-page__content { font-size: 18px; }
}

/* =============================================================================
   22. RESPONSIVE — MOBILE  (≤ 680px)
   ============================================================================= */

@media (max-width: 680px) {
  body { overflow-x: hidden; }

  :root { --shell: calc(100% - 28px); }

  /* Utility */
  .utility-inner { min-height: 29px; }
  .utility-inner > span:nth-child(2),
  .utility-right { display: none; }

  /* Header */
  .masthead { min-height: 72px; padding: 0 14px; }
  .premium-brand { flex-basis: 165px; }
  .header-actions { margin-left: auto; }

  .search-toggle { width: 38px; padding: 0; }
  .search-toggle span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .search-toggle span:first-child { margin: 0; }
  .newsletter-link { padding: 0 11px; }

  /* Category nav */
  .category-bar .shell { width: 100%; }
  .category-bar .primary-category-nav { padding: 0 14px; }
  .primary-category-nav > a:not(.nav-home):not(:nth-of-type(2)):not(:nth-of-type(3)) { display: none; }
  .primary-category-nav .nav-home { padding-left: 0; margin-right: 0; }
  .category-mega { right: -14px; width: calc(100vw - 28px); }
  .category-mega-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 14px; }
  .category-menu { margin-left: 0; }
  .category-menu summary span { display: none; }

  /* Market strip */
  .market-inner { overflow: auto; gap: 17px; white-space: nowrap; padding-inline: 14px; }
  .market-inner::-webkit-scrollbar { display: none; }

  /* Search overlay */
  .site-search { padding-top: 28px; }
  .site-search__inner { min-height: 86px; padding: 0 14px; gap: 7px; }
  .site-search form { grid-template-columns: 1fr auto; }
  .site-search label { grid-column: 1 / -1; }
  .site-search form button { padding-inline: 14px; }

  /* Headline zone */
  .headline-zone { margin-inline: -14px; }
  .headline-slider { height: 370px; }
  .headline-overlay { padding: 20px; max-width: 100%; }
  .headline-overlay h1,
  .headline-overlay h2 { font-size: 33px; letter-spacing: -1.1px; }
  .headline-overlay p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .headline-rail {
    margin: 0 14px;
    grid-template-columns: 1fr;
    grid-template-rows: auto repeat(3, 170px);
    height: auto;
  }
  .headline-rail .rail-title { grid-column: auto; }
  .rail-image,
  .rail-image img { min-height: 170px; }

  /* Quick strip */
  .quick-strip {
    grid-template-columns: 1fr 1fr;
    margin-inline: 0;
  }
  .quick-strip article:nth-child(odd) { border-left: 0; }
  .quick-strip article:last-child { border-right: 1px solid var(--line); }

  /* Spotlight */
  .spotlight-layout { gap: 16px; }
  .spotlight-main { margin-inline: -14px; }
  .spotlight-story { height: 350px; }
  .spotlight-story h2 { font-size: 26px; }
  .spotlight-stack { grid-template-columns: 1fr; }
  .live-desk { display: block; }

  /* Category streams */
  .category-streams { gap: 34px; margin-top: 34px; }
  .category-stream-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .category-stream-card--lead { grid-row: auto; min-height: 330px; }
  .category-stream-card { min-height: 250px; }
  .category-stream-head { align-items: flex-start; gap: 10px; flex-direction: column; }
  .category-stream-head h2 { font-size: 26px; }
  .category-stream-head > a { font-size: 11px; }

  /* Category page */
  .category-page-heading h1 { font-size: 34px; }
  .category-slider { height: 405px; }

  /* Post grid */
  .post-grid { grid-template-columns: 1fr; }

  /* Article */
  .article-layout { padding-top: 30px; }
  .article h1 { font-size: 40px; letter-spacing: -1.6px; }
  .article-lead { font-size: 19px; }
  .article-body,
  .article-body > p:first-child { font-size: 18px; line-height: 1.72; }
  .article-rail { display: none; }
  .reading-progress { top: 0; }
  .article-meta { gap: 6px 12px; }

  /* Corporate */
  .corporate-page__hero { padding-top: 32px; }
  .corporate-page__hero h1 { font-size: 38px; letter-spacing: -1.4px; }
  .corporate-page__hero p { font-size: 16px; }
  .corporate-page__nav nav { grid-template-columns: 1fr; }
  .corporate-page__content > p:first-child { font-size: 19px; }
  .corporate-page__note { align-items: flex-start; flex-direction: column; gap: 4px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer #bulten { scroll-margin-top: 20px; }

  /* Market */
  .market-page { padding-top: 30px; }
  .market-page h1 { letter-spacing: -1.5px; }
  .market-grid { grid-template-columns: 1fr; gap: 11px; }
  .market-card { min-height: 145px; }

  /* Pagination */
  .pagination a,
  .pagination .current { min-width: 36px; height: 36px; padding: 0 10px; }
  .pagination .prev,
  .pagination .next { font-size: 12px; }

  /* Search empty */
  .search-empty { margin: 28px 0; padding: 22px; }
  .search-empty form { grid-template-columns: 1fr; }
  .search-empty button { min-height: 42px; }
}

/* =============================================================================
   23. ACCESSIBILITY  (reduced motion)
   ============================================================================= */

@media (prefers-reduced-motion: reduce) {
  .category-stream-card,
  .category-stream-head > a,
  .category-stream-card h3 a,
  .rail-image img,
  .headline-slide { transition: none; }
  .live-desk header span { animation: none; }
}

/* =============================================================================
   24. PREMIUM HOMEPAGE  (.oh-*)
   New homepage layout: full-bleed hero + numbered feed + category card blocks
   ============================================================================= */

/* Shell */
.oh-home { background: #f4f5f8; }
.oh-shell {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  padding: 0 0 72px;
}

/* ── HERO ───────────────────────────────────────────────────────────────── */

.oh-hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  min-height: 580px;
  background: #0b1020;
  position: relative;
}

/* Slider pane */
.oh-hero__slider {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.oh-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s cubic-bezier(.4,0,.2,1);
}

.oh-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  height: 100%;
}

.oh-hero__img {
  display: block;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.oh-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 8s ease;
}

.oh-hero__slide.is-active .oh-hero__img img { transform: scale(1.04); }

/* Gradient overlay — left-heavy for text legibility */
.oh-hero__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,8,20,.92) 0%, rgba(5,8,20,.3) 65%, transparent 100%),
    linear-gradient(0deg, rgba(5,8,20,.7) 0%, transparent 55%);
}

/* Glassmorphism text panel */
.oh-hero__glass {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: min(640px, 80%);
  padding: 36px 44px 44px;
}

.oh-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.04;
  letter-spacing: -2px;
  margin: 10px 0 14px;
}

.oh-hero__title a { color: #fff; text-decoration: none; }
.oh-hero__title a:hover { text-decoration: underline; text-decoration-color: var(--red); }

.oh-hero__desc {
  color: #c8cfe0;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oh-hero__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8a94a8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
}

/* Slider UI */
.oh-hero__ui {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.oh-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}

.oh-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

.oh-dots { display: flex; gap: 5px; }

.oh-dots button {
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  padding: 0;
  cursor: pointer;
  transition: width .25s ease, border-radius .25s ease, background .25s ease;
}

.oh-dots button.is-active {
  width: 24px;
  border-radius: 3px;
  background: var(--red);
}

/* Slide counter */
.oh-hero__counter {
  position: absolute;
  z-index: 4;
  left: 44px;
  bottom: 26px;
  color: rgba(255,255,255,.45);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.oh-hero__counter span:first-child { color: #fff; }

/* ── NUMBERED FEED SIDEBAR ──────────────────────────────────────────────── */

.oh-hero__feed {
  background: #0d1426;
  border-left: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.oh-feed-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  color: #5d6880;
}

.oh-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3340;
  box-shadow: 0 0 0 4px rgba(255,51,64,.15);
  animation: orghaber-pulse 1.7s ease-in-out infinite;
  flex-shrink: 0;
}

.oh-feed-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 22px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .18s;
}

.oh-feed-item:hover { background: rgba(255,255,255,.03); }

.oh-feed-num {
  flex-shrink: 0;
  font: 900 15px/1 var(--font-serif);
  color: var(--red);
  min-width: 22px;
  padding-top: 3px;
}

.oh-feed-body { flex: 1; min-width: 0; }

.oh-feed-cat {
  display: block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4d5870;
  margin-bottom: 4px;
}

.oh-feed-cat a { color: inherit; text-decoration: none; }

.oh-feed-body h3 {
  margin: 0 0 6px;
  font: 700 14px/1.25 var(--font-serif);
}

.oh-feed-body h3 a {
  color: #dce3f0;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oh-feed-body h3 a:hover { color: #fff; }

.oh-feed-body time {
  font-size: 10px;
  color: #3f4d63;
  font-weight: 700;
}

.oh-feed-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 16px 22px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--red);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .5px;
  transition: gap .2s;
}

.oh-feed-more:hover { gap: 12px; }

/* ── PILL (eyebrow tag) ─────────────────────────────────────────────────── */

.oh-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 40px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 10px;
}

.oh-pill a { color: #fff; text-decoration: none; }

.oh-pill--sm {
  font-size: 10px;
  padding: 3px 9px;
  margin-bottom: 8px;
  transition: filter .18s;
}

/* ── CATEGORY BLOCK ─────────────────────────────────────────────────────── */

.oh-cat-block {
  margin-top: 56px;
  --cat-accent: var(--red);
}

/* Block header */
.oh-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e4eb;
  position: relative;
}

.oh-cat-head::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 52px;
  height: 3px;
  background: var(--cat-accent);
  border-radius: 2px;
}

.oh-cat-head__left { display: flex; align-items: center; gap: 14px; }

.oh-cat-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--cat-accent) 12%, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.oh-cat-label {
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cat-accent);
  margin-bottom: 2px;
}

.oh-cat-name {
  font: 700 26px/1 var(--font-serif);
  color: var(--navy);
  margin: 0;
  letter-spacing: -.6px;
}

.oh-cat-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 1.5px solid var(--cat-accent);
  border-radius: 6px;
  color: var(--cat-accent);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: background .18s, color .18s;
  white-space: nowrap;
  flex-shrink: 0;
}

.oh-cat-all:hover { background: var(--cat-accent); color: #fff; }

/* ── CARD GRID ──────────────────────────────────────────────────────────── */

.oh-cards {
  display: grid;
  gap: 16px;
}

/* 5 cards: lead spans 2 rows, rest 2×2 */
.oh-cards--5 {
  grid-template-columns: 1.55fr repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
}

.oh-cards--5 .oh-card--lead { grid-row: span 2; }

/* 4 cards: lead spans 2 rows, 3 stack */
.oh-cards--4 {
  grid-template-columns: 1.55fr repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
}

.oh-cards--4 .oh-card--lead { grid-row: span 2; }

/* 3 cards */
.oh-cards--3 {
  grid-template-columns: 1.4fr repeat(2, minmax(0, 1fr));
}

/* 2 cards */
.oh-cards--2 { grid-template-columns: 1fr 1fr; }

/* 1 card */
.oh-cards--1 { grid-template-columns: 1fr; }

/* ── SINGLE CARD ──────────────────────────────────────────────────────── */

.oh-card {
  position: relative;
  isolation: isolate;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(10,16,32,.07), 0 1px 2px rgba(10,16,32,.06);
  display: flex;
  flex-direction: column;
  transition: transform .24s cubic-bezier(.4,0,.2,1), box-shadow .24s cubic-bezier(.4,0,.2,1);
}

.oh-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(10,16,32,.14);
}

/* Image */
.oh-card__img {
  display: block;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 1.65;
}

.oh-card--lead .oh-card__img {
  aspect-ratio: auto;
  position: absolute;
  inset: 0;
  height: 100%;
}

.oh-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .36s ease;
}

.oh-card:hover .oh-card__img img { transform: scale(1.05); }

.oh-card__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(4,8,18,.75) 0%, rgba(4,8,18,.08) 55%);
  opacity: 0;
  transition: opacity .24s;
}

.oh-card--lead .oh-card__overlay { opacity: 1; }

/* Body */
.oh-card__body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Lead card — body sits on top of image */
.oh-card--lead .oh-card__body {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 24px 24px 22px;
  background: transparent;
}

.oh-card--lead .oh-card__title { font-size: 24px; }

.oh-card--lead .oh-card__title a,
.oh-card--lead .oh-card__excerpt,
.oh-card--lead .oh-card__foot,
.oh-card--lead .oh-card__foot time { color: #fff; }

.oh-card--lead .oh-read { color: rgba(255,255,255,.6); }

.oh-card__title {
  font: 700 17px/1.22 var(--font-serif);
  margin: 0 0 auto;
  letter-spacing: -.3px;
  flex: 1;
}

.oh-card__title a {
  color: var(--navy);
  text-decoration: none;
  transition: color .18s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oh-card__title a:hover { color: var(--cat-accent); }

.oh-card__excerpt {
  font-size: 14px;
  color: #667080;
  line-height: 1.55;
  margin: 10px 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oh-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.06);
}

.oh-card--lead .oh-card__foot { border-color: rgba(255,255,255,.14); margin-top: 10px; padding-top: 10px; }

.oh-card__foot time {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}

.oh-read {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .oh-hero { grid-template-columns: 1fr 300px; }
  .oh-hero__glass { width: min(560px, 85%); padding: 28px 32px 36px; }
}

@media (max-width: 860px) {
  .oh-hero { grid-template-columns: 1fr; }

  .oh-hero__slider { min-height: 480px; }

  .oh-hero__feed {
    flex-direction: row;
    flex-wrap: wrap;
    background: #0d1426;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.06);
    max-height: none;
    overflow: visible;
  }

  .oh-feed-head { width: 100%; border-bottom: 1px solid rgba(255,255,255,.07); }

  .oh-feed-item { width: 50%; border-right: 1px solid rgba(255,255,255,.04); }
  .oh-feed-item:nth-child(even) { border-right: 0; }

  .oh-feed-more { width: 100%; }

  /* Cards: 2 columns on tablet */
  .oh-cards--5,
  .oh-cards--4 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .oh-cards--5 .oh-card--lead,
  .oh-cards--4 .oh-card--lead { grid-row: auto; grid-column: span 2; }
  .oh-card--lead .oh-card__img { position: relative; height: 320px; }
  .oh-card--lead .oh-card__body { position: relative; background: var(--navy); }
  .oh-card--lead .oh-card__body .oh-pill--sm { background: rgba(255,255,255,.12); color: #fff; }

  .oh-cards--3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .oh-shell { width: calc(100% - 28px); padding-bottom: 48px; }

  .oh-hero__slider { min-height: 400px; }
  .oh-hero__glass { width: 100%; padding: 20px 18px 56px; }
  .oh-hero__title { font-size: 30px; letter-spacing: -1px; }
  .oh-hero__desc { display: none; }
  .oh-hero__counter { left: 18px; bottom: 60px; }
  .oh-hero__ui { right: 14px; bottom: 70px; }

  .oh-feed-item { width: 100%; }

  .oh-cards,
  .oh-cards--5,
  .oh-cards--4,
  .oh-cards--3,
  .oh-cards--2 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .oh-cards--5 .oh-card--lead,
  .oh-cards--4 .oh-card--lead { grid-column: auto; }

  .oh-cat-icon { display: none; }
  .oh-cat-name { font-size: 22px; }
  .oh-cat-all { font-size: 11px; padding: 7px 12px; }
  .oh-cat-block { margin-top: 40px; }

  .oh-card--lead .oh-card__img { height: 240px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .oh-hero__slide,
  .oh-card,
  .oh-hero__img img,
  .oh-card__img img { transition: none; }
  .oh-live-dot { animation: none; }
}
