:root{
  --bg0:#05070d;
  --bg1:#070a12;
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.72);
  --border:rgba(255,255,255,.10);
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --br:18px;

  --mono: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  --sans: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%; max-width:100%; overflow-x:hidden}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:#05070d;
}

/* media defaults */
img, svg, video, canvas{max-width:100%; height:auto}
img{display:block}

/* =========================================================
   BACKGROUND
   ========================================================= */
body::before{
  content:"";
  position:fixed;
  inset:-40px;
  z-index:-2;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(900px 520px at 18% 12%, rgba(56,189,248,.14), transparent 62%),
    radial-gradient(1000px 600px at 82% 6%, rgba(168,85,247,.14), transparent 62%),
    radial-gradient(900px 700px at 55% 88%, rgba(34,197,94,.07), transparent 60%),
    linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 45%, #04060b 100%);
  background-size:88px 88px, 88px 88px, cover, cover, cover, cover;
  background-position:0 0, 0 0, center, center, center, center;
  background-attachment:fixed, fixed, fixed, fixed, fixed, fixed;
  filter:saturate(1.08) contrast(1.05);
  transform:translateZ(0);
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(1200px 700px at 50% 10%, rgba(0,0,0,.14), transparent 60%),
    radial-gradient(1200px 700px at 50% 100%, rgba(0,0,0,.35), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.55));
  transform:translateZ(0);
}
@media (prefers-reduced-motion: reduce){
  body::before{ background-attachment:scroll,scroll,scroll,scroll,scroll,scroll; }
}

/* =========================================================
   Base layout
   ========================================================= */
a{color:#38BDF8; text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:1180px; margin:0 auto; padding:16px}
.row{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.right{margin-left:auto}
.mono{font-family:var(--mono)}
small{color:rgba(234,240,255,.70)}
h2{margin:0 0 10px; font-size:16px}
hr{border:none; height:1px; background:rgba(255,255,255,.08); margin:12px 0}

/* =========================================================
   Hero / header
   ========================================================= */
.hero{
  position:relative;
  padding:14px 16px;
  border-radius:var(--br);
  border:1px solid var(--border);
  background:
    radial-gradient(1000px 280px at 15% 0%, rgba(225,29,41,.20), transparent 55%),
    radial-gradient(900px 260px at 85% 0%, rgba(56,189,248,.14), transparent 55%),
    linear-gradient(180deg, rgba(18,28,47,.86), rgba(18,28,47,.52));
  box-shadow:var(--shadow);
  margin-bottom:14px;
}

.heroTop{
  display:grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "banner banner"
    "title  links";
  align-items:end;
  gap:10px 16px;
}
.heroBanner{grid-area:banner; margin:0}
.heroTitle{
  grid-area:title;
  margin:0;
  font-size:20px;
  font-weight:1000;
  letter-spacing:.08em;
  text-transform:uppercase;
  line-height:1.15;
}
@media (max-width:720px){
  .heroLinks{
    width:100%;
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:10px;
    justify-self:stretch;
  }
  .heroLinks .pill{
    justify-content:center;   /* texto centrado dentro del pill */
    width:100%;
  }
}

#seasonPill{ display:none !important; } /* keep in DOM for JS */
#pointsPill, #racesPill{ display:none !important; } /* keep in DOM */

/* Mobile: links bajan prolijo */
@media (max-width:720px){
  .wrap{ padding:12px; }
  .heroTop{
    grid-template-columns: 1fr;
    grid-template-areas:
      "banner"
      "title"
      "links";
    gap:10px;
  }
  .heroLinks{
    width:100%;
    justify-content:flex-end;
    flex-wrap:wrap;
    gap:10px;
  }
}

/* =========================================================
   Cards
   ========================================================= */
.card{
  background: linear-gradient(180deg, rgba(18,28,47,.92), rgba(18,28,47,.72));
  border:1px solid var(--border);
  border-radius:var(--br);
  padding:14px;
  box-shadow:0 14px 45px rgba(0,0,0,.35);
  margin-bottom:14px;
}

/* =========================================================
   Pills (new approach)
   ========================================================= */
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(7,10,15,.28);
  color: rgba(234,240,255,.85);
  font-size:12px;
  font-weight:900;
  text-decoration:none;
}
.pill:hover{ text-decoration:none; filter:brightness(1.04); }

/* Variants */
.pill--blue{
  background: rgba(60, 120, 255, 0.16);
  border-color: rgba(120, 170, 255, 0.32);
  color: rgba(235, 245, 255, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pill--blue:hover{
  background: rgba(60, 120, 255, 0.22);
  border-color: rgba(120, 170, 255, 0.45);
}

.pill--lime{
  background: linear-gradient(135deg,#bef264,#65a30d);
  border-color: rgba(190,242,100,.45);
  color:#10210f !important;
  box-shadow: 0 10px 22px rgba(190,242,100,.18);
}

.pill--ok{ background:rgba(34,197,94,.14); border-color:rgba(34,197,94,.38) }
.pill--warn{ background:rgba(245,158,11,.12); border-color:rgba(245,158,11,.35) }

/* =========================================================
   Standings
   ========================================================= */
.standings{display:flex; flex-direction:column; gap:10px}

.standRow{
  --teamColor: rgba(255,255,255,.18);
  --teamBg: none;

  display:grid;
  grid-template-columns: 66px 1fr 104px;
  align-items:center;
  gap:12px;

  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);

  position:relative;
  overflow:hidden;

  background-image:
    linear-gradient(90deg, rgba(10,20,40,.50), rgba(10,20,40,.28) 40%, rgba(10,20,40,.50)),
    var(--teamBg);
  background-size: cover, 100% 100%;
  background-repeat:no-repeat,no-repeat;
  background-position:center, bottom;
}
.standRow::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width:9px;
  background: var(--teamColor);
}
.standRow::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 220px at 20% 50%, rgba(0,0,0,.30), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,.38), rgba(0,0,0,.08) 45%, rgba(0,0,0,.30));
  pointer-events:none;
}
.standRow > *{ position:relative; z-index:1; }

.posBox{
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  height:48px;
  font-weight:1000;
  font-size:24px;
  background: rgba(7,10,15,.60);
  border:1px solid rgba(255,255,255,.10);
}

.namePlate{
  display:flex;
  flex-direction:column;
  gap:3px;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(7,10,15,.60);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content;
  max-width: 100%;
  min-width:0;
}
.driverName{
  font-weight:1000;
  font-size:17px;
  text-transform:uppercase;
  white-space:nowrap;
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
}
.teamName{
  font-size:12px;
  color: rgba(234,240,255,.72);
  white-space:nowrap;
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
}

.pointsBox{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
}
.points{
  width:76px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background: linear-gradient(180deg, rgba(220,0,0,.98), rgba(160,0,0,.98));
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-weight:1000;
  font-size:24px;
  font-family: var(--mono);
  text-shadow:0 2px 10px rgba(0,0,0,.35);
}
.wins{font-size:11px;color: rgba(234,240,255,.70)}

@media (max-width:720px){
  .standRow{ grid-template-columns: 58px 1fr 92px; }
  .driverName{ font-size:15px; }
  .posBox{ height:44px; font-size:22px; }
  .points{ width:70px; height:42px; font-size:21px; }
}

/* ======================================================
   Tables
   ====================================================== */
.tableWrap{
  overflow:auto;
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  background: rgba(7,10,15,.18);
  -webkit-overflow-scrolling: touch;
}
table{width:100%; border-collapse:collapse; min-width:980px}
th,td{
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:9px 10px;
  font-size:14px;
  vertical-align:middle
}
th{
  position:sticky;
  top:0;
  background: rgba(7,10,15,.55);
  backdrop-filter: blur(8px);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:11px;
  color: rgba(234,240,255,.75);
}
tr:last-child td{border-bottom:none}

@media (max-width:720px){
  table{ min-width:760px; }
}

/* =========================================================
   Footer
   ========================================================= */
.pageFooter{
  margin:24px 0 40px;
  padding:0 8px;
}
.updatedFooter{ display:flex; justify-content:flex-end; }
.updatedText{ font-size:12px; opacity:.7; white-space:nowrap; }



/* =========================================================
   REGLAMENTO (scoped) — no afecta index
   ========================================================= */
body.pageRules .wrap{ padding-top: 16px; }

.rulesTopbar{
  position: sticky;
  top: 12px;
  z-index: 50;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border-radius: var(--br);
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(18,28,47,.92), rgba(18,28,47,.72));
  box-shadow: 0 14px 45px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rulesHero{
  margin-top:14px;
  padding:14px 16px;
  border-radius: var(--br);
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(18,28,47,.86), rgba(18,28,47,.52));
  box-shadow: var(--shadow);
}

.rulesKicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:12px;
  color: rgba(234,240,255,.85);
}
.rulesDot{
  width:10px;height:10px;border-radius:999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,79,216,.95), rgba(225,29,46,.95));
  box-shadow: 0 12px 22px rgba(225,29,46,.20);
}
.rulesTitle{
  margin:10px 0 8px;
  line-height:1.08;
  font-size: clamp(22px, 4.8vw, 34px);
}
.rulesLead{
  margin:0;
  max-width: 80ch;
  color: rgba(234,240,255,.78);
  line-height: 1.6;
  font-size: 14px;
}

.rulesMeta{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  color: rgba(234,240,255,.80);
  font-size: 13px;
}
.rulesMeta span b{ color: rgba(234,240,255,.95); }

.rulesGrid{
  margin-top:14px;
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:14px;
  align-items:start;
}

.rulesToc{
  position: sticky;
  top: 92px;
  border-radius: var(--br);
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(18,28,47,.92), rgba(18,28,47,.72));
  box-shadow: 0 14px 45px rgba(0,0,0,.35);
  overflow:hidden;
}
.rulesTocHeader{
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.rulesTocHeader strong{ font-size:13px; }
.rulesTocHeader span{ font-size:12px; color: var(--muted); }

.rulesTocList{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:10px;
}
.rulesTocList a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(7,10,15,.20);
  color: rgba(234,240,255,.88);
  text-decoration:none;
}
.rulesTocList a:hover{ transform: translateY(-1px); }

.rulesTocList .n{
  width:26px;height:26px;
  border-radius:10px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  font-weight:1000;
}

.rulesContent{ display:flex; flex-direction:column; gap:14px; }

.rulesSection{
  border:1px solid var(--border);
  border-radius: var(--br);
  background: linear-gradient(180deg, rgba(18,28,47,.92), rgba(18,28,47,.72));
  box-shadow: 0 14px 45px rgba(0,0,0,.35);
  overflow:hidden;
}
.rulesSectionHeader{
  padding:14px 16px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(900px 220px at 25% 50%, rgba(225,29,46,.18), transparent 60%),
    linear-gradient(90deg, rgba(225,29,46,.20), rgba(0,0,0,0));
}
.rulesSectionHeader h2{ margin:0; font-size:18px; }
.rulesSectionHeader p{
  margin:6px 0 0;
  color: rgba(234,240,255,.78);
  font-size:13px;
  line-height:1.6;
  max-width:80ch;
}
.rulesSectionBody{ padding:14px 16px 16px; }
.rulesSectionBody h3{
  margin: 12px 0 8px;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(234,240,255,.90);
}
.rulesSectionBody p, .rulesSectionBody li{
  color: rgba(234,240,255,.82);
  line-height: 1.6;
  font-size: 14px;
}
.rulesSectionBody ul{ margin: 8px 0 0; padding-left: 18px; }
.rulesSectionBody li{ margin: 6px 0; }

/* Mobile */
@media (max-width: 980px){
  .rulesGrid{ grid-template-columns: 1fr; }
  .rulesToc{ position: static; }
}
@media (max-width: 720px){
  .rulesTopbar{ position: static; }
}



/* ===== Centrar SOLO los logos campeonatode*.png en headers ===== */
/* Chrome moderno lo soporta perfecto (usa :has) */
table thead th:has(img[src*="campeonatode"]) {
  text-align: center;              /* centra inline/inline-block */
}

table thead th:has(img[src*="campeonatode"]) img{
  display: inline-block;           /* anula tu img{display:block} SOLO acá */
  margin: 0;                       /* no necesitamos auto acá */
  max-height: 28px;                /* opcional: para que no “salte” el header */
  height: auto;
}

/* =========================================================
   VISUAL CUES (JS -> CSS mapping)
   Esto pinta lo que el JS ya genera:
   - Notas: <span class="badge dnf|dsq|pen|warn|fl|ovr|tyre">
   - Neum:  <span class="tyreDots"><span class="tyreDot soft|medium|hard|inter|wet"></span>...
   - Filas: .fastLapRow / .mostOvertakesRow
   - Dots:  .flDot / .otDot
   ========================================================= */

/* Badges */
.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:2px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,10,15,.30);
  color: rgba(234,240,255,.90);
  font-size:11px;
  font-weight:1000;
  letter-spacing:.02em;
  white-space:nowrap;
  vertical-align:middle;
}
.badge + .badge{ margin-left:6px; }

/* Status / flags */
.badge.dnf{ background: rgba(239,68,68,.16); border-color: rgba(239,68,68,.42); }
.badge.dsq{ background: rgba(148,163,184,.14); border-color: rgba(148,163,184,.32); }
.badge.pen{ background: rgba(245,158,11,.14); border-color: rgba(245,158,11,.38); }
.badge.warn{ background: rgba(245,158,11,.10); border-color: rgba(245,158,11,.30); }
.badge.fl{ background: rgba(167,139,250,.16); border-color: rgba(167,139,250,.42); }
.badge.ovr{ background: rgba(34,211,238,.12); border-color: rgba(34,211,238,.34); }
.badge.tyre{ background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); font-weight:900; }

/* Legacy pills used by JS in the race header */
.pill.violet{
  background: rgba(167,139,250,.16);
  border-color: rgba(167,139,250,.38);
  color: rgba(245,240,255,.95);
}
.pill.cyan{
  background: rgba(34,211,238,.14);
  border-color: rgba(34,211,238,.35);
  color: rgba(235,252,255,.95);
}
.pill.winnerPill{
  background: rgba(34,197,94,.14);
  border-color: rgba(34,197,94,.38);
  color: rgba(235,255,245,.95);
}

/* Tyre dots */
.tyreDots{
  display:inline-flex;
  align-items:center;
  gap:6px;
  vertical-align:middle;
}
.tyreDot{
  width:10px;
  height:10px;
  border-radius:50%;
  display:inline-block;
  border:1px solid rgba(255,255,255,.22);
  box-shadow: 0 0 0 2px rgba(0,0,0,.22) inset;
}
.tyreDot.soft{ background:#ef4444; }   /* rojo */
.tyreDot.medium{ background:#facc15; } /* amarillo */
.tyreDot.hard{ background:#e5e7eb; }   /* blanco/gris */
.tyreDot.inter{ background:#22c55e; }  /* verde */
.tyreDot.wet{ background:#3b82f6; }    /* azul */

/* Name markers (fast lap / overtakes dots) */
.flDot, .otDot{
  display:inline-block;
  width:8px; height:8px;
  border-radius:50%;
  margin-right:8px;
  vertical-align:middle;
  border:1px solid rgba(255,255,255,.22);
}
.flDot{ background:#a78bfa; }
.otDot{ background:#22d3ee; }
.nameText{ vertical-align:middle; }

/* Row highlights */
.fastLapRow td{
  background: rgba(167,139,250,.08);
}
.mostOvertakesRow td{
  background: rgba(34,211,238,.06);
}

/* Notes cell readability */
td:last-child{ white-space:nowrap; }
@media (max-width: 720px){
  td:last-child{ white-space:normal; }
}

/* =========================================================
   FIX: Reglamento centrado + sin overflow (aspect ratio OK)
   ========================================================= */
body.pageRules .wrap{
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 14px;
  padding-right: 14px;
}

/* Evita que el grid se estire por contenido largo */
.rulesGrid{ 
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
}
.rulesToc, .rulesContent, .rulesSection, .rulesSectionBody, .rulesHero{
  min-width: 0; /* clave para que no empuje el grid */
}

/* Wrapping seguro: nada “rompe” el ancho */
.rulesSectionBody,
.rulesLead,
.rulesSectionBody p,
.rulesSectionBody li{
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Si hay tablas/código dentro del reglamento, que no empujen el layout */
body.pageRules .tableWrap{
  max-width: 100%;
}
body.pageRules table{
  min-width: 560px; /* un toque menos agresivo en mobile */
}

/* Mobile: todo en una columna y centrado */
@media (max-width: 980px){
  .rulesGrid{ grid-template-columns: 1fr; }
  .rulesToc{ position: static; }
}

/* === Live embed (added) === */
.liveCard{
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.liveCard__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.liveCard__header h2{
  margin: 0;
  font-size: 16px;
  letter-spacing: .2px;
}
.liveIframeWrap{
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0,0,0,.35);
}
.liveIframeWrap iframe{
  width: 100%;
  height: 75vh;
  border: 0;
  display:block;
}
.muted{
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.35;
}

/* --- Tabs: Standings (Pilotos / Equipos) --- */
/* Look tipo pestañas de navegador: barra completa + activo "apretado" (sin rojo, estilo glass) */
.tabsWrap{
  margin-top: 10px;
}
.tabsBar{
  width: 100%;
  display:flex;
  gap:0;
  align-items:stretch;
  padding: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-bottom: none;
  background: rgba(255,255,255,.06);            /* glass */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px 18px 0 0;
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.tabBtn{
  flex: 1 1 0;
  appearance:none;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.10);
  background: transparent;
  color: rgba(255,255,255,.92);
  padding: 12px 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .25px;
  cursor:pointer;
  transition: transform .10s ease, background .16s ease, box-shadow .16s ease;
  position: relative;
}
.tabBtn:last-child{
  border-right: 0;
}
.tabBtn:hover{
  background: rgba(255,255,255,.08);
}
.tabBtn:focus{
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.16), 0 0 0 3px rgba(56,189,248,.18);
  z-index: 2;
}
.tabBtn.isActive{
  background: rgba(0,0,0,.32);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.22), inset 0 2px 0 rgba(255,255,255,.10);
  transform: translateY(1px); /* "apretado" */
  z-index: 3;
}
.tabBtn.isActive::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-1px;
  height: 2px;
  background: rgba(0,0,0,.35);
}
.tabPanel{
  display:none;
  margin-top: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-top: none;
  background: rgba(255,255,255,.05);
  border-radius: 0 0 18px 18px;
  padding: 12px;
}
.tabPanel.isActive{
  display:block;
}

/* Centrado de títulos (PNG) sobre cada tabla */
.sectionHeader{
  width: 100%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 6px 0 10px;
}
.sectionHeaderImg{
  display:block;
  margin: 0 auto;
  max-width: min(560px, 92%);
  height:auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}
