/* ============================================
   KGOSITLILE FC — MAIN STYLESHEET v2.0
   Colours from logo: Green, Black, Blue, White
   Kings by Force | Est. 2011
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;600;700;800&family=Barlow+Condensed:wght@400;600;700;800&display=swap');

/* ---- TOKENS ---- */
:root {
  --green:       #3CB54A;
  --green-dark:  #2A8C36;
  --green-deep:  #1A5C22;
  --black:       #000000;
  --charcoal:    #0D0D0D;
  --grey-dark:   #161616;
  --grey-mid:    #2A2A2A;
  --grey-light:  #AAAAAA;
  --blue:        #1565C0;
  --blue-dark:   #0D47A1;
  --blue-light:  #1976D2;
  --white:       #FFFFFF;
  --off-white:   #F0F0F0;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-dark); }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  color: var(--white);
  display: inline-block;
  margin-bottom: 48px;
}
.section-title span { color: var(--green); }
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--blue);
  margin-top: 8px;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s;
}
.btn:hover { background: var(--green); color: var(--black); }
.btn-solid { background: var(--green); color: var(--black); border-color: var(--green); }
.btn-solid:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); }
.tag {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 12px;
}

/* ---- NAVBAR ---- */
.navbar {
  background: var(--black);
  border-bottom: 3px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  position: relative;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.navbar-brand img {
  height: 70px;
  width: 70px;
  object-fit: contain;
  /* Remove white background from logo PNG, boost visibility on black */
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 6px rgba(60,181,74,0.5)) brightness(1.1);
}
.brand-text { line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--white);
}
.brand-sub {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  color: var(--blue);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* PRIMARY NAV */
.nav-links {
  display: flex;
  gap: 0;
  align-items: center;
  height: 84px;
}
.nav-links li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-links > li > a {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--off-white);
  padding: 0 16px;
  height: 84px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: all 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--green);
  border-bottom-color: var(--green);
}
.nav-links > li.has-dropdown:hover > a { color: var(--green); }

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--charcoal);
  border-top: 3px solid var(--green);
  border: 1px solid var(--grey-mid);
  border-top: 3px solid var(--green);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 999;
}
.nav-links li.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-light);
  padding: 14px 20px;
  border-bottom: 1px solid var(--grey-mid);
  transition: all 0.2s;
}
.dropdown a:hover {
  color: var(--green);
  background: rgba(60,181,74,0.08);
  padding-left: 28px;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown-arrow {
  font-size: 0.6rem;
  transition: transform 0.2s;
}
.nav-links li.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--charcoal);
  border-top: 1px solid var(--grey-mid);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-light);
  padding: 14px 24px;
  border-bottom: 1px solid var(--grey-mid);
}
.mobile-nav a:hover { color: var(--green); background: rgba(60,181,74,0.05); }
.mobile-nav .mobile-sub {
  background: rgba(0,0,0,0.4);
  padding-left: 16px;
}
.mobile-nav .mobile-sub a {
  font-size: 0.88rem;
  padding: 10px 24px;
  color: var(--grey-light);
}

/* ---- HOMEPAGE — FULL SCREEN NO SCROLL ---- */
.home-fullscreen {
  position: fixed;
  inset: 0;
  top: 76px; /* below navbar */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.home-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) saturate(0.5);
  transform: scale(1.04);
}
.home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 40%, rgba(60,181,74,0.06) 100%);
}
/* Green left stripe */
.home-stripe-left {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--green);
}
/* Blue right stripe */
.home-stripe-right {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--blue);
}
.home-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}
.home-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 30px rgba(60,181,74,0.4));
}
.home-eyebrow {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 5px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.home-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 8px;
}
.home-title .green { color: var(--green); }
.home-title .blue  { color: var(--blue); }
.home-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 6px;
  color: var(--grey-light);
  margin-bottom: 12px;
}
.home-tagline {
  font-family: var(--font-cond);
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.home-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Home bottom stats bar */
.home-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  border-top: 1px solid var(--grey-mid);
  background: rgba(0,0,0,0.8);
  z-index: 3;
}
.home-stat {
  flex: 1;
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid var(--grey-mid);
}
.home-stat:last-child { border-right: none; }
.home-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
}
.home-stat-label {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  letter-spacing: 2px;
  color: var(--grey-light);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--charcoal);
  border-bottom: 4px solid var(--green);
  padding: 60px 0;
}
.page-hero-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.page-hero-line {
  width: 5px;
  height: 80px;
  background: linear-gradient(to bottom, var(--green), var(--blue));
  flex-shrink: 0;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 4px;
  color: var(--white);
  line-height: 1;
}
.page-hero-title span { color: var(--green); }
.breadcrumb {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--grey-light);
  text-transform: uppercase;
  margin-top: 8px;
}
.breadcrumb a { color: var(--blue); }

/* ---- NEWS ---- */
.news-full-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.news-list { display: flex; flex-direction: column; gap: 24px; }
.news-card {
  background: var(--charcoal);
  border: 1px solid var(--grey-mid);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.news-card:hover { border-color: var(--green); transform: translateY(-3px); }
.news-card-img { width: 100%; height: 280px; object-fit: cover; }
.news-card-body { padding: 28px; }
.news-card-title {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--white);
}
.news-card-title a { color: var(--white); }
.news-card-title a:hover { color: var(--green); }
.news-card-excerpt { font-size: 0.9rem; color: var(--grey-light); line-height: 1.7; }
.news-card-date {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--blue);
  text-transform: uppercase;
  margin-top: 16px;
}
.news-article {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  background: var(--charcoal);
  border: 1px solid var(--grey-mid);
  overflow: hidden;
  transition: border-color 0.2s;
}
.news-article:hover { border-color: var(--green); }
.news-article-img { height: 100%; min-height: 150px; object-fit: cover; width: 100%; }
.news-article-body { padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; }
.news-article-title {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.news-article-title a { color: var(--white); }
.news-article-title a:hover { color: var(--green); }
.news-article-excerpt { font-size: 0.88rem; color: var(--grey-light); }
.news-article-meta {
  margin-top: 10px;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--blue);
  text-transform: uppercase;
}
.pagination { margin-top: 32px; }
.pagination .nav-links { display: flex; gap: 8px; height: auto; flex-wrap: wrap; }
.pagination .nav-links a,
.pagination .nav-links span {
  padding: 10px 16px;
  border: 1px solid var(--grey-mid);
  font-family: var(--font-cond);
  font-size: 0.9rem;
  color: var(--grey-light);
  height: auto;
  border-bottom: none;
  margin-bottom: 0;
}
.pagination .nav-links .current { color: var(--green); border-color: var(--green); }

/* ---- SIDEBAR ---- */
.sidebar-widget {
  background: var(--charcoal);
  border: 1px solid var(--grey-mid);
  margin-bottom: 24px;
  overflow: hidden;
}
.widget-title {
  background: var(--green);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  padding: 12px 20px;
}
.widget-body { padding: 20px; }
.widget-list { display: flex; flex-direction: column; gap: 10px; }
.widget-item {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  color: var(--grey-light);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-mid);
}
.widget-item:last-child { border-bottom: none; padding-bottom: 0; }
.widget-item a { color: var(--white); font-weight: 600; }
.widget-item a:hover { color: var(--green); }

/* ---- SQUAD ---- */
.squad-position-label {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--green);
  border-left: 5px solid var(--blue);
  padding-left: 16px;
  margin-bottom: 24px;
  margin-top: 48px;
}
.squad-position-label:first-of-type { margin-top: 0; }
.squad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 16px;
}
.player-card {
  background: var(--charcoal);
  border: 1px solid var(--grey-mid);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.player-card:hover { border-color: var(--green); transform: translateY(-4px); }
.player-photo {
  background: var(--grey-dark);
  height: 220px;
  overflow: hidden;
  border-bottom: 3px solid var(--green);
  position: relative;
}
.player-photo img { width: 100%; height: 100%; object-fit: cover; }
.player-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--green);
  background: linear-gradient(135deg, var(--grey-dark), var(--grey-mid));
}
.player-number-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 1px;
}
.player-info { padding: 16px; }
.player-name {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.player-pos {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--grey-light);
  text-transform: uppercase;
}
.player-nationality {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  color: var(--blue);
  margin-top: 4px;
}

/* ---- GALLERY ---- */
.gallery-filter {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px;
}
.filter-btn {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--grey-mid);
  background: transparent;
  color: var(--grey-light);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--green);
  color: var(--green);
  background: rgba(60,181,74,0.06);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery-grid .wide { grid-column: span 2; }
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--grey-dark);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(60,181,74,0.15);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---- HISTORY ---- */
.timeline { position: relative; padding-left: 48px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--green), var(--blue));
}
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-dot {
  position: absolute;
  left: -40px; top: 6px;
  width: 18px; height: 18px;
  background: var(--green);
  border-radius: 50%;
  border: 3px solid var(--black);
  box-shadow: 0 0 0 2px var(--green);
}
.timeline-dot.blue-dot {
  background: var(--blue);
  box-shadow: 0 0 0 2px var(--blue);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green);
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.timeline-event {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 6px;
}
.timeline-detail {
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.7;
  max-width: 600px;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--charcoal);
  border-left: 4px solid var(--green);
  margin-bottom: 16px;
}
.contact-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-value {
  font-family: var(--font-cond);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}
.contact-value a { color: var(--white); }
.contact-value a:hover { color: var(--green); }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-light);
}
.form-input, .form-textarea {
  background: var(--charcoal);
  border: 1px solid var(--grey-mid);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: var(--green); }
.form-textarea { min-height: 140px; resize: vertical; }

/* ---- FOOTER ---- */
.footer {
  background: var(--charcoal);
  border-top: 4px solid var(--green);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img { height: 70px; width: 70px; object-fit: contain; margin-bottom: 14px; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.footer-brand-tagline {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-about { font-size: 0.9rem; color: var(--grey-light); line-height: 1.7; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  color: var(--grey-light);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover { color: var(--green); padding-left: 6px; }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--grey-mid);
  color: var(--grey-light);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--green); color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--grey-mid);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  color: var(--grey-light);
  letter-spacing: 1px;
}
.footer-copy span { color: var(--green); }

/* ---- LIGHTBOX ---- */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  font-size: 2.5rem; color: var(--white);
  cursor: pointer; background: none; border: none; line-height: 1;
}
.lightbox-close:hover { color: var(--green); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .nav-links > li > a { padding: 0 12px; font-size: 0.82rem; }
}
@media (max-width: 900px) {
  .news-full-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .home-stats-bar { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .wide { grid-column: span 1; }
  .squad-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .news-article { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .squad-grid { grid-template-columns: 1fr; }
  .home-actions { flex-direction: column; align-items: center; }
}
