/* ============================================================
   RAMİ SPOR KULÜBÜ — ramispor.com
   Tasarım referansı: sufc.co.uk (Sheffield United FC)
   Renkler: Kırmızı-Beyaz (1924'ten bugüne)
   ============================================================ */

:root {
  --red: #e2231a;
  --red-dark: #b01810;
  --red-darker: #8b0304;
  --black: #0f0f10;
  --dark: #17181a;
  --dark-2: #212225;
  --gray-100: #f4f4f5;
  --gray-200: #e7e7e9;
  --gray-400: #9b9ba1;
  --gray-600: #55555c;
  --white: #ffffff;
  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .5px;
}

/* ---------- Bölüm başlıkları (SUFC tarzı: sol kırmızı blok) ---------- */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  position: relative;
  padding-left: 18px;
}
.section-head h2::before {
  content: "";
  position: absolute;
  left: 0; top: 6%;
  width: 6px; height: 88%;
  background: var(--red);
  transform: skewX(-12deg);
}
.section-head .all-link {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--red);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s;
}
.section-head .all-link:hover { color: var(--red-dark); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 16px;
  padding: 12px 28px;
  background: var(--red);
  color: var(--white);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background .15s;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--red-dark); }
.btn--dark { background: var(--black); }
.btn--dark:hover { background: var(--dark-2); }
.btn--outline {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 2px var(--white);
  clip-path: none;
}
.btn--outline:hover { background: var(--white); color: var(--black); }

/* ============================================================
   ÜST BAR (utility bar)
   ============================================================ */
.topbar {
  background: var(--black);
  color: var(--gray-400);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .8px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}
.topbar-links { display: flex; gap: 22px; text-transform: uppercase; }
.topbar-links a { transition: color .15s; }
.topbar-links a:hover { color: var(--white); }
.topbar-links a.active { color: var(--white); }
.topbar-social { display: flex; gap: 14px; align-items: center; }
.topbar-social a { display: inline-flex; transition: opacity .15s; }
.topbar-social a:hover { opacity: .7; }
.topbar-social svg { width: 15px; height: 15px; fill: var(--gray-400); }
.topbar-social a:hover svg { fill: var(--white); }

/* ============================================================
   HEADER / NAVİGASYON
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 4px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 14px rgba(0,0,0,.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img.crest { height: 60px; width: auto; }
.brand-text {
  font-family: var(--font-head);
  text-transform: uppercase;
  line-height: 1;
}
.brand-text .name { font-size: 24px; font-weight: 700; display: block; }
.brand-text .since {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--red);
  display: block;
  margin-top: 3px;
}

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 1px;
  padding: 10px 14px;
  transition: color .15s, background .15s;
}
.main-nav a:hover { color: var(--red); }
.main-nav a.active {
  background: var(--red);
  color: var(--white);
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--black);
  margin: 5px 0;
  transition: transform .2s, opacity .2s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.hero-slide {
  position: relative;
  min-height: 560px;
  display: none;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { display: flex; animation: heroFade .6s ease; }
@keyframes heroFade { from { opacity: .4; } to { opacity: 1; } }
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.92) 0%, rgba(10,10,10,.45) 45%, rgba(10,10,10,.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px 64px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  background: var(--red);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  padding: 5px 14px;
  margin-bottom: 14px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.hero-content h1, .hero-content .hero-title {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.02;
  max-width: 760px;
  margin-bottom: 14px;
}
.hero-content p {
  max-width: 560px;
  color: rgba(255,255,255,.85);
  margin-bottom: 22px;
  font-size: 17px;
}
.hero-nav {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-nav button {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: background .15s;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.hero-nav button:hover { background: var(--red); }
.hero-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 26px; height: 4px;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .15s;
}
.hero-dots button.active { background: var(--red); }

/* ============================================================
   MAÇ MERKEZİ
   ============================================================ */
.match-centre {
  background: var(--dark);
  color: var(--white);
  padding: 34px 0;
  border-bottom: 4px solid var(--red);
}
.match-centre .container {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.match-card {
  background: var(--dark-2);
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.match-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 44px; height: 4px;
  background: var(--red);
}
.match-card .label {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 14px;
  display: block;
}
.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
}
.match-team img { height: 52px; width: auto; }
.match-team .placeholder-crest {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
}
.match-team span {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .5px;
}
.match-score {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 40px;
  white-space: nowrap;
}
.match-vs {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 26px;
  color: var(--red);
}
.match-meta {
  margin-top: 14px;
  font-size: 13px;
  color: var(--gray-400);
  text-align: center;
}
.match-card--next { border: 1px solid rgba(226,35,26,.5); }
.match-countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}
.match-countdown .unit {
  text-align: center;
  min-width: 52px;
  background: var(--dark);
  padding: 8px 6px;
}
.match-countdown .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 26px;
  display: block;
  line-height: 1;
}
.match-countdown .lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
}
.match-card--league {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.match-card--league .comp {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
}
.match-card--league p { font-size: 13px; color: var(--gray-400); }

/* ============================================================
   HABERLER GRID
   ============================================================ */
.news-section { padding: 64px 0; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
}
.news-card {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: flex-end;
}
.news-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}
.news-card .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}
.news-card:hover .bg { transform: scale(1.06); }
.news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.9) 0%, rgba(8,8,8,.35) 55%, rgba(8,8,8,.05) 100%);
}
.news-card-body {
  position: relative;
  z-index: 2;
  padding: 22px;
}
.news-card .tag {
  display: inline-block;
  background: var(--red);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  padding: 3px 10px;
  margin-bottom: 10px;
  clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
}
.news-card h3 {
  font-size: 22px;
  line-height: 1.1;
}
.news-card--featured h3 { font-size: clamp(28px, 3.4vw, 40px); }
.news-card p.excerpt {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.8);
  display: none;
}
.news-card--featured p.excerpt { display: block; max-width: 520px; }

/* ============================================================
   RAMİ TV
   ============================================================ */
.tv-section {
  background: var(--black);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.tv-section::before {
  content: "RAMİ TV";
  position: absolute;
  right: -30px;
  bottom: -40px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 220px;
  color: rgba(255,255,255,.03);
  letter-spacing: 4px;
  pointer-events: none;
}
.tv-section .section-head h2 { color: var(--white); }
.tv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tv-card {
  background: var(--dark-2);
  overflow: hidden;
  transition: transform .2s;
}
.tv-card:hover { transform: translateY(-4px); }
.tv-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--dark);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tv-thumb .play {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}
.tv-card:hover .play { transform: scale(1.12); }
.tv-thumb .play svg { width: 20px; height: 20px; fill: var(--white); margin-left: 3px; }
.tv-card-body { padding: 18px; }
.tv-card-body h3 { font-size: 20px; margin-bottom: 6px; }
.tv-card-body p { font-size: 13px; color: var(--gray-400); }

/* ============================================================
   TARİHÇE ŞERİDİ
   ============================================================ */
.history-strip {
  padding: 64px 0;
  background: var(--gray-100);
}
.history-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
}
.history-inner .big-year {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(80px, 10vw, 140px);
  color: var(--red);
  line-height: .9;
}
.history-inner h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.history-inner p { color: var(--gray-600); margin-bottom: 18px; }
.history-milestones {
  display: flex;
  gap: 0;
  margin: 22px 0 26px;
  border-left: 3px solid var(--red);
  flex-direction: column;
}
.history-milestones .m {
  padding: 6px 0 6px 18px;
  font-size: 15px;
}
.history-milestones .m b {
  font-family: var(--font-head);
  color: var(--red);
  font-size: 18px;
  margin-right: 8px;
}

/* ============================================================
   PROMO BANTLARI (Store + Spor Okulları)
   ============================================================ */
.promo-store {
  display: block;
  position: relative;
  background: var(--red-darker);
}
.promo-store img { width: 100%; height: auto; }

.promo-schools {
  background: var(--red);
  color: var(--white);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.promo-schools::before {
  content: "";
  position: absolute;
  right: -80px; top: -40px;
  width: 340px; height: 200%;
  background: rgba(255,255,255,.06);
  transform: rotate(18deg);
}
.promo-schools .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 2;
}
.promo-schools h2 { font-size: clamp(28px, 4vw, 44px); }
.promo-schools .motto {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 16px;
  opacity: .85;
  display: block;
  margin-bottom: 6px;
}
.promo-schools p { max-width: 520px; opacity: .92; margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  color: var(--gray-400);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-brand img { height: 84px; margin-bottom: 14px; }
.footer-brand .motto {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 26px;
  color: var(--white);
  letter-spacing: 1px;
  display: block;
}
.footer-brand .sub {
  font-size: 13px;
  margin-top: 6px;
  display: block;
}
.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 3px;
  background: var(--red);
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col a { font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.footer-social a:hover { background: var(--red); }
.footer-social svg { width: 17px; height: 17px; fill: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--dark-2);
  padding: 18px 0;
  font-size: 12px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom a {
  color: var(--white);
  font-weight: 600;
  transition: color .15s;
}
.footer-bottom a:hover { color: var(--red); }

/* ============================================================
   İÇ SAYFALAR
   ============================================================ */
.page-hero {
  background: var(--black) center/cover no-repeat;
  color: var(--white);
  position: relative;
  padding: 90px 0 60px;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,.88), rgba(8,8,8,.5));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .crumb {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  color: var(--red);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.page-hero h1 { font-size: clamp(38px, 6vw, 60px); }
.page-hero p.lead { max-width: 640px; margin-top: 12px; color: rgba(255,255,255,.85); }

.page-content { padding: 56px 0; }
.page-content .prose { max-width: 780px; }
.page-content .prose p { margin-bottom: 18px; color: var(--gray-600); font-size: 16px; }
.page-content .prose h2 { font-size: 30px; margin: 34px 0 14px; }
.page-content .prose h3 { font-size: 23px; margin: 26px 0 10px; }

/* Zaman tüneli (tarihçe) */
.timeline { position: relative; max-width: 780px; margin-top: 36px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 4px; bottom: 4px;
  width: 3px;
  background: var(--gray-200);
}
.timeline-item {
  position: relative;
  padding: 0 0 30px 42px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 17px; height: 17px;
  background: var(--white);
  border: 4px solid var(--red);
  border-radius: 50%;
}
.timeline-item .year {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 26px;
  color: var(--red);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.timeline-item h3 { font-size: 21px; margin-bottom: 4px; }
.timeline-item p { color: var(--gray-600); font-size: 15px; }

/* Kadro / teknik ekip kartları */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 12px;
}
.staff-card {
  background: var(--gray-100);
  overflow: hidden;
}
.staff-photo {
  aspect-ratio: 4 / 4.4;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff-photo img { height: 46%; width: auto; opacity: .35; }
.staff-body {
  padding: 16px;
  border-top: 4px solid var(--red);
  background: var(--white);
}
.staff-body h3 { font-size: 21px; }
.staff-body span {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Bilgi kartları (okullar, tesisler) */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 12px;
}
.info-card {
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--red);
  padding: 26px;
  background: var(--white);
}
.info-card h3 { font-size: 24px; margin-bottom: 10px; }
.info-card p { color: var(--gray-600); font-size: 15px; margin-bottom: 12px; }
.info-card ul { margin: 0 0 14px; }
.info-card ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 15px;
  color: var(--gray-600);
}
.info-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 10px; height: 4px;
  background: var(--red);
  transform: skewX(-12deg);
}

/* İletişim */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
}
.contact-form label {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 15px;
  margin: 18px 0 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color .15s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--red); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { margin-top: 22px; }
.contact-aside .box {
  background: var(--gray-100);
  border-top: 4px solid var(--red);
  padding: 24px;
  margin-bottom: 20px;
}
.contact-aside h3 { font-size: 22px; margin-bottom: 10px; }
.contact-aside p { font-size: 14px; color: var(--gray-600); margin-bottom: 10px; }
.map-embed {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  display: block;
  filter: grayscale(35%);
}

/* Haber makale blokları */
.article-block {
  max-width: 820px;
  margin-bottom: 56px;
  scroll-margin-top: 110px;
}
.article-block .article-img {
  aspect-ratio: 16 / 8;
  background-size: cover;
  background-position: center;
  margin-bottom: 22px;
}
.article-block .tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  padding: 3px 10px;
  margin-bottom: 10px;
  clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
}
.article-block h2 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 12px; }
.article-block p { color: var(--gray-600); margin-bottom: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .match-centre .container { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card--featured { grid-column: span 2; }
  .tv-grid { grid-template-columns: 1fr; }
  .history-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .promo-schools .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 4px solid var(--red);
    box-shadow: 0 14px 24px rgba(0,0,0,.12);
  }
  .nav-open .main-nav { display: block; }
  .main-nav ul { flex-direction: column; padding: 12px 20px 20px; }
  .main-nav a { padding: 12px 8px; font-size: 19px; border-bottom: 1px solid var(--gray-100); }
  .main-nav a.active { clip-path: none; }
  .nav-toggle { display: block; }
  .brand-text .name { font-size: 20px; }
  .hero-slide { min-height: 460px; }
  .hero-nav { right: 14px; bottom: 76px; }
}

@media (max-width: 620px) {
  .news-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .news-card--featured { grid-column: span 1; grid-row: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .topbar-links { gap: 12px; font-size: 11px; }
  .brand-text { display: none; }
}
