:root {
  --bg: #0f172a;
  --panel: #111827;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --accent: #22c55e;
  --accent-dark: #16a34a;
  --border: #1f2937;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: linear-gradient(180deg, #0b1023 0%, var(--bg) 35%, #0b1220 100%);
  color: var(--text);
  line-height: 1.55;
}
.wrap { max-width: 980px; margin: 0 auto; padding: 0 20px; }
.hero {
  position: relative;
  padding: 84px 0 52px;
  border-bottom: 1px solid var(--border);
  background-image:
    linear-gradient(180deg, rgba(2, 6, 23, 0.58) 0%, rgba(2, 6, 23, 0.72) 60%, rgba(2, 6, 23, 0.82) 100%),
    url('/hero-v2.jpg');
  background-size: cover;
  background-position: center 36%;
}
.hero-small { padding-top: 52px; background-image: none; }
.topnav {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}
.topnav a {
  color: #cbd5e1;
  text-decoration: none;
  border: 1px solid #334155;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 14px;
}
.topnav a[aria-current="page"] { border-color: var(--accent); color: #bbf7d0; }
.eyebrow { color: var(--muted); letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
h1 { margin: 8px 0 16px; font-size: clamp(32px, 6vw, 52px); line-height: 1.1; }
.lead { max-width: 760px; color: #cbd5e1; font-size: 18px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
/* hero image now used as background */
.btn {
  display: inline-block;
  text-decoration: none;
  color: var(--text);
  border: 1px solid #334155;
  padding: 11px 16px;
  border-radius: 12px;
}
.actions .btn:not(.primary) {
  color: #e6fffb;
  border-color: #2dd4bf;
  background: rgba(45, 212, 191, 0.14);
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(45, 212, 191, 0.2);
}
.actions .btn:not(.primary):hover {
  background: rgba(45, 212, 191, 0.22);
  border-color: #5eead4;
}
.btn.primary {
  background: var(--accent);
  color: #052e16;
  border-color: var(--accent-dark);
  font-weight: 700;
}
main section { padding: 36px 0; border-bottom: 1px solid var(--border); }
h2 { margin: 0 0 14px; font-size: 28px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.carousel {
  margin-top: 16px;
  position: relative;
}
.carousel-track {
  position: relative;
  border: 1px solid #2a3a4f;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .9s ease-in-out;
}
.carousel-slide.active { opacity: 1; }
/* manual carousel controls removed */
.card {
  background: rgba(17, 24, 39, .82);
  border: 1px solid #243244;
  border-radius: 14px;
  padding: 16px;
}
.news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.news-photo-link {
  display: block;
  margin-bottom: 12px;
}
.news-photo {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
  background: #0b1220;
  border-radius: 10px;
  border: 1px solid #334155;
  cursor: zoom-in;
}
.news-item h2 {
  font-size: 22px;
  margin-bottom: 8px;
}
.news-date {
  margin: 4px 0 8px;
  color: var(--muted);
  font-size: 14px;
}
.news-source {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid #2b6f86;
  background: linear-gradient(135deg, #1f6f8b 0%, #1b5f76 100%);
  color: #e6f4f8;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(31, 111, 139, 0.22);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.news-source::before {
  content: "✈";
  font-size: 12px;
}
.news-source:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 6px 18px rgba(31, 111, 139, 0.28);
}
.news-source:active {
  transform: translateY(0);
}
ul { margin: 0; padding-left: 20px; }
li { margin: 8px 0; }
a { color: #86efac; }
.cta { text-align: center; padding: 46px 0; }
footer { padding: 22px 0 34px; color: var(--muted); }
.footer-line { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; font-size: 14px; }