/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:     #E52322;
  --red-dk:  #c01c1b;
  --navy:    #1c2b3a;
  --navy-lt: #253648;
  --grey:    #f4f5f7;
  --text:    #222;
  --muted:   #555;
  --border:  #dde1e7;
  --white:   #fff;
  --max-w:   1100px;
  --radius:  6px;
  --shadow:  0 2px 12px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ── Layout helpers ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Top bar ── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  align-items: center;
}
.top-bar a { color: rgba(255,255,255,.75); }
.top-bar a:hover { color: var(--white); text-decoration: none; }

/* ── Header / Nav ── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text .local { font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.logo-text .sub   { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: .95rem;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: background .15s, color .15s;
}
nav a:hover, nav a.active {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
}

/* ── Language picker ── */
.lang-picker {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 12px;
  border-left: 1px solid var(--border);
  padding-left: 16px;
}
.lang-btn {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 4px;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.lang-btn:hover { color: var(--red); text-decoration: none; }
.lang-btn.active { background: var(--red); color: var(--white); }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .2s;
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,0) 100%);
}
.hero .container { position: relative; }
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 720px;
  margin: 0 auto 20px;
}
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 580px;
  margin: 0 auto;
}

/* ── Sections ── */
section { padding: 64px 0; }
section.grey { background: var(--grey); }

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 40px;
}

/* ── News card ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .15s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.13); }
.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: .78rem; color: var(--muted); margin-bottom: 10px; }
.news-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.35; }
.news-card p  { font-size: .92rem; color: var(--muted); line-height: 1.6; }
.news-tag {
  display: inline-block;
  background: #fde8e8;
  color: var(--red);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* ── Featured article ── */
.featured-article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.featured-article .fa-img img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
}
.featured-article .fa-body { padding: 36px 40px; }
.featured-article h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.featured-article p { margin-bottom: 16px; color: var(--text); }
.featured-article p:last-child { margin-bottom: 0; }

blockquote {
  border-left: 4px solid var(--red);
  margin: 24px 0;
  padding: 14px 20px;
  background: var(--grey);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--muted);
}
blockquote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy);
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--red);
  color: var(--white);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-num { font-size: 2.4rem; font-weight: 800; display: block; }
.stat-lbl { font-size: .85rem; opacity: .85; text-transform: uppercase; letter-spacing: .06em; }

/* ── Affiliates ── */
.affiliates-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.affiliate-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-block h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.contact-item a { color: var(--text); font-weight: 500; }
.contact-item a:hover { color: var(--red); text-decoration: none; }

/* ── Footer ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-about p { font-size: .88rem; line-height: 1.7; max-width: 340px; margin-top: 12px; }
footer h4 { color: var(--white); font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: rgba(255,255,255,.65); font-size: .88rem; }
footer ul li a:hover { color: var(--white); text-decoration: none; }
.footer-logo img { height: 48px; border-radius: 4px; }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 12px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .15s;
  font-size: .85rem;
}
.social-link:hover { background: var(--red); color: var(--white); text-decoration: none; }

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 3px solid var(--red); padding: 12px 20px 16px; box-shadow: var(--shadow); }
  nav.open { display: flex; }
  nav a { padding: 10px 12px; width: 100%; }
  header { position: relative; }
  .nav-toggle { display: flex; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .featured-article .fa-body { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 12px 16px; }
  section { padding: 44px 0; }
}
