/* Kinetic Security Solutions, Inc — Professional Static Theme
   Drop-in replacement for style.css
   ------------------------------------------------------------- */

:root{
  --bg:#070b10;
  --panel:#0c121b;
  --panel2:#0e1724;
  --text:#e9eef7;
  --muted:#a9b4c6;
  --muted2:#7f8aa0;
  --line:rgba(233,238,247,.12);
  --line2:rgba(233,238,247,.08);
  --accent:#d4a017;     /* gold */
  --accent2:#2dd4bf;    /* teal */
  --danger:#fb7185;
  --warn:#fbbf24;
  --ok:#34d399;

  --r12:12px;
  --r16:16px;
  --r20:20px;

  --shadow: 0 22px 70px rgba(0,0,0,.55);
  --shadow2: 0 12px 35px rgba(0,0,0,.45);

  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(45,212,191,.12), transparent 55%),
    radial-gradient(900px 500px at 80% 0%, rgba(212,160,23,.10), transparent 55%),
    linear-gradient(180deg, #05070a 0%, var(--bg) 24%, #05070a 100%);
  color:var(--text);
  line-height:1.55;
  letter-spacing:.1px;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ color:var(--text); }
p{ margin:0 0 14px; color:rgba(233,238,247,.92); }
.small{ font-size:13px; color:var(--muted); }
hr{ border:none; border-top:1px solid var(--line2); margin:22px 0; }

.wrap{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

section{ padding:56px 0; }
.hero{ padding:34px 0 42px; }
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:12px;
}
.dot{
  width:10px; height:10px; border-radius:99px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.55), rgba(255,255,255,0) 60%),
              linear-gradient(180deg, rgba(212,160,23,1), rgba(212,160,23,.35));
  box-shadow: 0 0 0 5px rgba(212,160,23,.08), 0 0 30px rgba(212,160,23,.18);
}

h1{
  font-size: clamp(28px, 3.6vw, 44px);
  line-height:1.1;
  margin:0 0 12px;
  letter-spacing:-.02em;
}
h2{
  font-size:20px;
  margin:0 0 10px;
  letter-spacing:-.01em;
}
h3{
  font-size:16px;
  margin:0 0 8px;
  letter-spacing:-.01em;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(7,11,16,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line2);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 260px;
}
.brand img{
  width:44px; height:44px; object-fit:contain;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.4));
}
.brand .name b{
  display:block;
  font-size:13px;
  letter-spacing:.02em;
}
.brand .name span{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}

.links{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:6px;
}
.links a{
  padding:9px 12px;
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
  border:1px solid transparent;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
}
.links a:hover{
  color:var(--text);
  background: rgba(255,255,255,.03);
  border-color: var(--line2);
}
.links a.active{
  color:var(--text);
  border-color: rgba(212,160,23,.35);
  background: linear-gradient(180deg, rgba(212,160,23,.13), rgba(255,255,255,.02));
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:18px;
  align-items:stretch;
  margin-top:8px;
}
.heroCard{
  border-radius: var(--r20);
  background: linear-gradient(180deg, rgba(12,18,27,.92), rgba(10,14,20,.92));
  border: 1px solid var(--line2);
  box-shadow: var(--shadow2);
  padding:18px;
}
.logoBig{
  height:160px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:var(--r16);
  border:1px dashed rgba(233,238,247,.12);
  background:radial-gradient(600px 300px at center,rgba(212,160,23,.08),rgba(255,255,255,.02));
  overflow:hidden;
}
.logoBig img{
  max-height:140px;
  max-width:80%;
  object-fit:contain;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.45));
}

.cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 8px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.02);
  color:var(--text);
  font-size:13px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(233,238,247,.18);
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.btn.primary{
  border-color: rgba(212,160,23,.45);
  background: linear-gradient(180deg, rgba(212,160,23,.18), rgba(212,160,23,.06));
  box-shadow: 0 18px 45px rgba(212,160,23,.08);
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.card{
  grid-column: span 6;
  border-radius: var(--r20);
  background: linear-gradient(180deg, rgba(12,18,27,.92), rgba(9,12,18,.92));
  border: 1px solid var(--line2);
  box-shadow: var(--shadow2);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(700px 220px at 20% 0%, rgba(45,212,191,.08), transparent 55%),
    radial-gradient(700px 220px at 80% 0%, rgba(212,160,23,.08), transparent 55%);
  pointer-events:none;
}
.card > *{ position:relative; }

.meta{ display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.pill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  font-size:12px;
  border-radius:999px;
  color:var(--text);
  background: rgba(255,255,255,.03);
  border:1px solid var(--line2);
}
.commandStrip{ display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }

.aboutHero{
  margin:16px 0 16px;
  border-radius: var(--r20);
  overflow:hidden;
  border: 1px solid var(--line2);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.02);
}
.aboutHero img{
  width:100%;
  height: min(360px, 38vw);
  object-fit:cover;
  object-position:center;
}

.table{
  width:100%;
  border-collapse: collapse;
  border-radius: var(--r20);
  overflow:hidden;
  border: 1px solid var(--line2);
  background: rgba(12,18,27,.86);
  box-shadow: var(--shadow2);
}
.table th, .table td{
  text-align:left;
  padding:12px 12px;
  border-bottom:1px solid var(--line2);
  font-size:13px;
  color:rgba(233,238,247,.92);
}
.table thead th{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  background: rgba(255,255,255,.02);
}
.table tbody tr:hover td{ background: rgba(255,255,255,.02); }
.status-ok{ color: var(--ok); font-weight:600; }
.status-warn{ color: var(--warn); font-weight:600; }

.leaderCard{ grid-column: span 6; }
.leaderCard[style*="grid-column: span 12"]{ grid-column: span 12; }

.leaderCard{ overflow:hidden; }
.leaderCard .leaderRow{
  display:grid;
  grid-template-columns: 96px 1fr;
  gap:16px;
  align-items:start;
}
.leaderCard .leaderAvatar{
  width:96px;
  height:96px;
  max-width:none;
  object-fit:cover;
  object-position:center top;
  border-radius:14px;
  border:1px solid rgba(212,160,23,.35);
  background: rgba(255,255,255,.03);
  box-shadow:0 14px 40px rgba(0,0,0,.7);
  display:block;
}
.leaderCard .leaderInfo{ min-width:0; }
.leaderCard .leaderBio{ overflow-wrap:anywhere; }

.leaderCard[style*="grid-column: span 12"] .leaderRow{
  grid-template-columns: 140px 1fr;
}
.leaderCard[style*="grid-column: span 12"] .leaderAvatar{
  width:140px; height:140px; border-radius:18px;
  box-shadow: 0 18px 55px rgba(0,0,0,.75), 0 0 36px rgba(212,160,23,.14);
}

.footer{
  padding:22px 0 30px;
  color:var(--muted2);
  border-top:1px solid var(--line2);
  background: rgba(7,11,16,.55);
}
.footer .wrap{ font-size:12px; }

:focus-visible{
  outline: 2px solid rgba(45,212,191,.65);
  outline-offset: 3px;
  border-radius: 8px;
}

@media(max-width:980px){
  section{ padding:44px 0; }
  .nav{ flex-wrap:wrap; }
  .brand{ min-width: unset; }
  .links{ justify-content:flex-start; }
  .heroGrid{ grid-template-columns:1fr; }
  .card{ grid-column: span 12; }
  .leaderCard{ grid-column: span 12; }

  .leaderCard .leaderRow{ grid-template-columns:1fr; }
  .leaderCard .leaderAvatar{ width:120px; height:120px; margin-bottom:10px; }
  .leaderCard[style*="grid-column: span 12"] .leaderAvatar{ width:150px; height:150px; }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; transition:none !important; }
}

/* Gallery */
.galleryChips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin: 6px 0 18px;
}

.galleryGrid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}

.gItem{
  grid-column: span 4;
  margin:0;
  border-radius: var(--r20);
  overflow:hidden;
  border:1px solid var(--line2);
  background: linear-gradient(180deg, rgba(12,18,27,.92), rgba(9,12,18,.92));
  box-shadow: var(--shadow2);
  cursor:pointer;
  position:relative;
}

.gItem img{
  width:100%;
  height: 220px;
  object-fit:cover;
  display:block;
  transition: transform .18s ease;
}

.gItem:hover img{
  transform: scale(1.03);
}

.gItem figcaption{
  padding:10px 12px 12px;
  font-size:12px;
  color: var(--muted);
  border-top:1px solid var(--line2);
  background: rgba(255,255,255,.02);
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
  padding: 24px;
}

.lightbox.open{ display:flex; }

.lbImg{
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  border-radius: var(--r20);
  border:1px solid rgba(212,160,23,.30);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.02);
}

.lbCap{
  margin-top: 12px;
  text-align:center;
  color: var(--muted);
  font-size: 13px;
}

.lbClose{
  position:absolute;
  top:18px;
  right:18px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid var(--line2);
  background: rgba(7,11,16,.65);
  color: var(--text);
  cursor:pointer;
  font-size:16px;
}

@media(max-width: 980px){
  .gItem{ grid-column: span 6; }
  .gItem img{ height: 200px; }
}

@media(max-width: 560px){
  .gItem{ grid-column: span 12; }
  .gItem img{ height: 220px; }
}

/* === High Command quote styling (no HTML changes) === */
.heroCard .small{
  margin-top: 12px;
  padding: 12px 12px 12px 14px;
  border-radius: 14px;

  /* glass + subtle command tint */
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
    radial-gradient(700px 160px at 20% 0%, rgba(45,212,191,.12), transparent 60%),
    radial-gradient(700px 160px at 80% 0%, rgba(212,160,23,.10), transparent 60%);
  border: 1px solid rgba(233,238,247,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);

  color: rgba(233,238,247,.90);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: .12px;
  position: relative;
  overflow: hidden;
}

/* top “broadcast” label */
.heroCard .small::before{
  content: "HIGH COMMAND BROADCAST";
  display: inline-block;
  margin: 0 0 8px 0;

  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(159,176,199,.92);

  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(233,238,247,.12);
  background: rgba(7,11,16,.45);
}

/* subtle scanning line */
.heroCard .small::after{
  content:"";
  position:absolute;
  left:-20%;
  right:-20%;
  top:-35px;
  height: 70px;
  background: linear-gradient(90deg, transparent, rgba(45,212,191,.12), transparent);
  transform: rotate(-6deg);
  opacity: .65;
  pointer-events:none;
}

/* =========================================================
   UEE / UNSC THEME OVERRIDE (NO HTML CHANGES)
   Paste at the END of style.css
   ========================================================= */

/* 1) Core palette + geometry */
:root{
  /* Gunmetal / naval deck */
  --bg:#05070a;
  --panel:#0a1119;
  --panel2:#0c1622;

  /* Text */
  --text:#e9eef7;
  --muted:#a8b5c7;
  --muted2:#7f8ea6;

  /* Hard UI lines */
  --line:rgba(233,238,247,.14);
  --line2:rgba(233,238,247,.10);

  /* UNSC/UEE accents: command-cyan + hazard-amber */
  --accent:#45b7ff;   /* command cyan */
  --accent2:#f6c445;  /* hazard amber */

  /* Sharper corners (mil-spec) */
  --r12:10px;
  --r16:12px;
  --r20:14px;

  /* Stronger shadows (hangar lighting) */
  --shadow: 0 28px 90px rgba(0,0,0,.70);
  --shadow2: 0 16px 50px rgba(0,0,0,.60);
}

/* 2) Background: subtle HUD grid + scan */
body{
  background:
    radial-gradient(1200px 650px at 18% -10%, rgba(69,183,255,.10), transparent 55%),
    radial-gradient(900px 520px at 82% 0%, rgba(246,196,69,.08), transparent 58%),
    linear-gradient(180deg, #030407 0%, var(--bg) 28%, #030407 100%);
  letter-spacing:.12px;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  opacity:.22;

  /* Grid overlay */
  background:
    linear-gradient(to right, rgba(233,238,247,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(233,238,247,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mix-blend-mode: overlay;
}

body::after{
  content:"";
  position:fixed;
  inset:-40px 0 0 0;
  pointer-events:none;
  z-index:0;
  opacity:.08;
  background: linear-gradient(180deg, transparent, rgba(69,183,255,.20), transparent);
  transform: rotate(-2deg);
}

/* Ensure main content sits above overlays */
.topbar, section, .footer{ position:relative; z-index:1; }

/* 3) Typography: more “mil-spec placard” */
h1,h2,h3{
  text-transform: uppercase;
  letter-spacing: .06em;
}
h1{
  font-weight: 900;
  line-height:1.02;
}
h2,h3{ font-weight: 800; }

p{ color: rgba(233,238,247,.90); }

/* 4) Nav / topbar: more command console */
.topbar{
  background: rgba(5,7,10,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(69,183,255,.22);
  box-shadow: 0 10px 30px rgba(0,0,0,.55);
}

.links a.active{
  border-color: rgba(69,183,255,.55);
  background:
    linear-gradient(180deg, rgba(69,183,255,.18), rgba(255,255,255,.02));
}

/* 5) Cards: “armored panels” + inner frame */
.heroCard, .card, .table, .gItem, .aboutHero{
  background:
    linear-gradient(180deg, rgba(10,17,25,.92), rgba(6,10,16,.92));
  border: 1px solid rgba(233,238,247,.12);
  box-shadow: var(--shadow2);
}

.heroCard::before,
.card::before{
  /* Replace your glow with a more “console UI” edge */
  content:"";
  position:absolute;
  inset:-1px;
  pointer-events:none;
  background:
    radial-gradient(900px 240px at 20% 0%, rgba(69,183,255,.10), transparent 55%),
    radial-gradient(900px 240px at 80% 0%, rgba(246,196,69,.08), transparent 55%);
  opacity:.9;
}

/* 6) Buttons: UNSC console buttons */
.btn{
  border-radius: 12px;
  border: 1px solid rgba(233,238,247,.14);
  background: rgba(255,255,255,.03);
  box-shadow: 0 10px 22px rgba(0,0,0,.45);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.btn.primary{
  border-color: rgba(69,183,255,.55);
  background:
    linear-gradient(180deg, rgba(69,183,255,.20), rgba(69,183,255,.08));
  box-shadow: 0 18px 45px rgba(69,183,255,.10);
}

.btn:hover{
  border-color: rgba(69,183,255,.35);
}

/* 7) Pills / meta chips: “issued tags” */
.pill{
  border-radius: 999px;
  border: 1px solid rgba(233,238,247,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  color: rgba(233,238,247,.88);
}

/* 8) Tables: more tactical readout */
.table thead th{
  background: rgba(69,183,255,.06);
  border-bottom: 1px solid rgba(69,183,255,.20);
  color: rgba(233,238,247,.80);
}

.table tbody tr:hover td{
  background: rgba(69,183,255,.05);
}

/* 9) Status colors tuned for “ops board” */
.status-ok{ color: #63f5c4; font-weight:700; }
.status-warn{ color: #ffd166; font-weight:700; }

/* 10) The “High Command Broadcast” small text styling (sitewide small blocks) */
.small{
  color: rgba(168,181,199,.92);
  letter-spacing: .06em;
}

/* Optional: make the dot feel like a command indicator */
.dot{
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.55), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(69,183,255,1), rgba(69,183,255,.35));
  box-shadow: 0 0 0 5px rgba(69,183,255,.10), 0 0 30px rgba(69,183,255,.18);
}

/* === Leadership / Hero Image Size Override === */

/* Make the image itself larger */
.heroCard img,
.card img,
.leadership img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

/* Reduce padding so the image fills the card more */
.heroCard,
.card {
  padding: 16px; /* was likely 24–32px */
}

/* Optional: let THIS card be wider than others */
.heroCard {
  max-width: 1100px; /* adjust: 1000–1200 sweet spot */
}

/* HERO RIGHT — COMMAND IMAGE FIX (FULL PANEL) */
.heroCard .aboutHero{
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--r16);
  position: relative;
}

.heroCard .aboutHero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* subtle command overlay */
.heroCard .aboutHero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(7,11,16,.15) 0%,
    rgba(7,11,16,.45) 100%
  );
  pointer-events:none;
}

/* Immediate Openings panel (Hero left column) */
.openings{
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(10, 14, 20, 0.72);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.openingsHead{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.openingsHead h3{
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
}

.openingsTag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  opacity: 0.95;
  white-space: nowrap;
}

.openingsSub{
  margin: 0 0 12px 0;
  font-size: 13px;
  opacity: 0.78;
  line-height: 1.35;
}

.openingsGrid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.opening{
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.openingTitle{
  font-size: 13px;
  font-weight: 700;
  opacity: 0.95;
  margin-bottom: 4px;
}

.openingMeta{
  font-size: 12px;
  opacity: 0.70;
  line-height: 1.25;
}

.openingsActions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

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

/* HERO LAYOUT FIX */
.heroGrid{
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.heroMain{
  min-width: 0;
}

.heroAside{
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

/* tighten that HQ line (your current <p class="small"><h3>...</h3></p> is invalid HTML) */
.opsHQ{
  margin: 10px 0 14px 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.95;
}

/* OPENINGS CARD: cleaner + more compact */
.openings{
  padding: 16px;
  border-radius: 14px;
  background: rgba(10, 14, 20, 0.72);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.openingsHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 8px;
}

.openingsHead h3{
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.95;
}

.openingsTag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  white-space: nowrap;
}

.openingsSub{
  margin: 0 0 10px 0;
  font-size: 13px;
  opacity: 0.78;
  line-height: 1.35;
}

.openingsList{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.openingsList li{
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  font-size: 13px;
  line-height: 1.2;
}

.openingsActions{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* MOBILE: stack everything */
@media (max-width: 900px){
  .heroGrid{
    grid-template-columns: 1fr;
  }
}

.heroMain .openings{
  margin-top: 20px;
  width: 100%;
}

.openingsList{
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
}

@media (max-width: 900px){
  .openingsList{
    grid-template-columns: 1fr;
  }
}

.openingsList{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
}

.openingsList li{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  font-size: 13px;
}

@keyframes pulseRed {
  0% { box-shadow: 0 0 6px rgba(255,0,0,0.3); }
  50% { box-shadow: 0 0 14px rgba(255,0,0,0.6); }
  100% { box-shadow: 0 0 6px rgba(255,0,0,0.3); }
}

.openingsTag{
  animation: pulseRed 2s infinite;
}


.heroVideo{
  margin-top: 5px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(10, 14, 20, 0.72);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.videoHeader{
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.85;
}

.videoWrapper{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 12px;
  overflow: hidden;
}

.videoWrapper iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}


