/* GRE & TOEFL Olympiad event page (/international-online-gre-toefl-olympiad/).
   REBUILT 2026-07-13 from Subash's approved comp (comp-verbatim redesign, Ram's call:
   "COMP EXACTLY AS-IS" — supersedes the same-day ACF-composed rebuild). Every declaration
   below is copied verbatim from the comp's <style> block; the ONLY change is selector
   SCOPING (every rule prefixed `.oly-page …`) so the comp's bare tag/generic-class
   selectors (`body`, `h1..h6`, `a`, `img`, `.container`, `.btn`…) don't bleed into the
   site's real header/nav/footer, which also render on this page (full chrome, per
   event_olympiad_build.php). Two additions beyond that scoping, both flagged inline:
   - `@keyframes scroll` renamed `@keyframes oly-scroll` (same reasoning — a bare global
     keyframes name is exactly the kind of thing that could collide with the theme).
   - the empty `@media (min-width:769px) and (max-width:1023px) {}` comp block (zero rules,
     dead weight) was dropped.
   `html { scroll-behavior: smooth; }` is the one rule kept UNscoped on purpose — it can
   only be set on the scroll-root, scoping it to `.oly-page` would be a no-op, and it's
   inert (no visual bleed risk) on any other page.
   Fonts: Poppins + Inter are self-hosted site-wide (galv-fonts.css, loaded on every page) —
   the comp's Google Fonts <link>/preload tags live in its <head>, which we never copy. */

html { scroll-behavior: smooth; }

.oly-page {
  --bg-navy: #13217c;
  --primary-blue: #3b5bff;
  --cta-magenta: #cc00cc;
  --accent-blue: #e6ebff;
  --text-white: #fff;
  --text-dark: #333;
  --text-gray: #808080;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-width: 1920px;
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.5;
  background-color: var(--accent-blue);
}

.oly-page * { margin: 0; padding: 0; box-sizing: border-box; }

.oly-page h1, .oly-page h2, .oly-page h3, .oly-page h4, .oly-page h5, .oly-page h6 {
  font-family: var(--font-heading);
  font-weight: 600;
}

.oly-page a { text-decoration: none; color: inherit; }

.oly-page img { max-width: 100%; height: auto; }

.oly-page h2.section-title {
  font-size: 36px;
  line-height: 48px;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 15px;
}

.oly-page .section-subtitle {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-dark);
  text-align: center;
}

.oly-page .container {
  width: 100%;
  max-width: var(--container-width);
  padding: 0 80px;
  margin: 0 auto;
}

.oly-page .text-center { text-align: center; }

.oly-page .btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
}

.oly-page .btn-magenta { background-color: var(--cta-magenta); color: var(--text-white); }
.oly-page .btn-magenta:hover { background-color: #a600a6; }

.oly-page .btn-blue {
  background-color: var(--primary-blue);
  border-radius: 10px;
  font-size: 18px;
  color: var(--text-white);
}
.oly-page .btn-blue:hover { background-color: #13217c; }

.oly-page .btn-outline-primary {
  border: 2px solid var(--primary-blue);
  background: transparent;
  color: var(--primary-blue);
  padding: 10px 30px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}
.oly-page .btn-outline-primary:hover { background: var(--primary-blue); color: #fff; }

/* ─── HERO ─── */
.oly-page .hero {
  background-color: var(--bg-navy);
  color: var(--text-white);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.oly-page .hero .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

.oly-page .hero-subtitle-box {
  display: inline-block;
  border: 3px dashed var(--cta-magenta);
  border-radius: 10px;
  padding: 10px 24px;
  color: var(--cta-magenta);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.oly-page .hero-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-white);
}

.oly-page .hero-content p {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 29px;
  margin-bottom: 30px;
  color: #fffdfe;
}

.oly-page .hero-content p i { font-style: italic; font-size: 18px; color: #fffdfe; }

.oly-page .hero-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

/* ─── TRUST BAR ─── */
.oly-page .trust-bar-section {
  background-color: #fff;
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

.oly-page .stats-bar {
  background: var(--text-white);
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1062px;
  width: 100%;
}

.oly-page .stats-bar .section-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  color: var(--primary-blue);
  margin: 0;
  text-align: center;
}

.oly-page .logo-carousel { width: 100%; overflow: hidden; position: relative; padding: 10px 0; }

.oly-page .logo-track {
  display: flex;
  width: max-content;
  animation: oly-scroll 30s linear infinite;
  gap: 60px;
}

.oly-page .logo-track:hover { animation-play-state: paused; }

@keyframes oly-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.oly-page .logo-item {
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.oly-page .logo-item img {
  height: 80px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: all .3s ease;
  filter: grayscale(30%);
}

.oly-page .logo-item:hover img { transform: scale(1.08); filter: grayscale(0); opacity: 1; }

/* ─── WHAT YOU WILL GET ─── */
.oly-page .what-section {
  background-color: #e6ebff;
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.oly-page .features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.oly-page .feature-card {
  background: #fffdfe;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: all .2s ease;
  border: 2px solid transparent;
  flex: 0 1 calc((100% - 60px) / 3);
}

.oly-page .feature-card:hover { border: 2px solid #a0aeff; }

.oly-page .feature-icon-box {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  background: #e6ebff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oly-page .feature-icon-box img { width: 64px; height: 64px; object-fit: contain; }

.oly-page .feature-card h3 {
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 14px;
  font-family: var(--font-heading);
}

.oly-page .feature-card p { font-size: 16px; color: #333; line-height: 1.6; margin: 0; }
.oly-page .feature-card p .hl { color: #cc00cc; font-weight: 600; }

/* ─── QUOTE BANNER ─── */
.oly-page .quote-section {
  background-color: #e6ebff;
  display: flex;
  justify-content: center;
  padding-bottom: 60px;
  border-top: 1px solid #F5F7FF;
  border-bottom: 1px solid #F5F7FF;
}

.oly-page .quote-inner { text-align: center; }

.oly-page .quote-inner h2 {
  font-size: 30px;
  font-weight: 600;
  color: #444;
  line-height: 1.5;
  max-width: 820px;
  margin: 0 auto 28px;
  font-family: var(--font-heading);
}

.oly-page .quote-inner h2 strong { color: #cc00cc; }

/* ─── RECOGNITION ─── */
.oly-page .recog-section {
  background-color: #fff;
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.oly-page .recog-sub {
  text-align: center;
  font-size: 18px;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 32px;
}

.oly-page .recog-sub strong { font-weight: 600; }

.oly-page .recog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 0;
}

.oly-page .recog-card {
  background: #13217c;
  border-radius: 20px;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 2px solid transparent;
  transition: border .2s ease;
}

.oly-page .recog-card:hover { border: 2px solid #a0aeff; }

.oly-page .recog-icon {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #fffdfe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.oly-page .recog-text {
  font-size: 16px;
  font-weight: 600;
  color: #F5F7FF;
  line-height: 1.5;
  font-family: var(--font-heading);
}

.oly-page .recog-text span { color: #fffdfe; font-weight: 600; }

.oly-page .recog-disclaimer {
  text-align: center;
  font-size: 16px;
  color: var(--text-gray);
  margin-top: 16px;
  font-family: var(--font-body);
}

/* ─── WINNERS / ACHIEVERS ─── */
.oly-page .achievers {
  background-color: var(--accent-blue);
  display: flex;
  justify-content: center;
  padding: 60px 0;
  overflow: hidden;
}

.oly-page .achievers-carousel-container {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
  position: relative;
  padding: 10px 0;
}

.oly-page .hero-carousel-card {
  background: var(--text-white);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  color: #333;
  border-radius: 20px;
  height: 100%;
  min-height: 220px;
}

.oly-page .hero-carousel-header { display: flex; align-items: flex-start; gap: 20px; width: 100%; }

.oly-page .hero-carousel-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #F8D0F8;
  flex-shrink: 0;
}

.oly-page .hero-carousel-info { display: flex; flex-direction: column; gap: 6px; flex: 1; }

.oly-page .hero-carousel-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-body);
  margin: 0;
}

.oly-page .hero-carousel-journey {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 16px;
  color: #333;
  margin: 4px 0;
  font-family: var(--font-body);
}

.oly-page .journey-plane { width: 32px; height: auto; }

.oly-page .hero-carousel-degree {
  font-size: 16px;
  font-weight: 600;
  color: var(--cta-magenta);
  margin-bottom: 6px;
  font-family: var(--font-body);
}

.oly-page .hero-carousel-logo { height: 40px; width: auto; object-fit: contain; align-self: flex-start; }

/* ─── ABOUT ─── */
.oly-page .about-section {
  background-color: #fffdfe;
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.oly-page .about-inner { text-align: center; width: 100%; }

.oly-page .ets-logo-img { height: 48px; width: auto; margin: 0 auto 40px; display: block; }

.oly-page .stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.oly-page .stat-card-dark { background: #13217c; border-radius: 20px; padding: 30px 20px; text-align: center; }

.oly-page .stat-item-num {
  font-size: 42px;
  color: var(--text-white);
  margin-bottom: 6px;
  font-weight: 600;
  font-family: var(--font-heading);
}

.oly-page .stat-item-label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  line-height: 1.4;
  font-family: var(--font-body);
}

.oly-page .about-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(59, 91, 255, .3), rgba(204, 0, 204, .3), rgba(0, 0, 0, 0));
  margin: 8px 0 32px;
}

.oly-page .about-body {
  max-width: 860px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  font-family: var(--font-body);
}

.oly-page .about-body strong { font-weight: 600; color: #111; }
.oly-page .about-body p { margin-bottom: 16px; }
.oly-page .about-cta { margin-top: 30px; }

/* ─── WHO CAN PARTICIPATE ─── */
.oly-page .who-section {
  background-color: #e6ebff;
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.oly-page .who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 0; }

.oly-page .who-card { border-radius: 20px; padding: 32px 28px; }

.oly-page .who-card.for-card { background: #fffdfe; border-left: 5px solid #333333; }
.oly-page .who-card.not-card { background: #fffdfe; border-left: 5px solid #7A007A; }

.oly-page .who-card-title { font-size: 18px; font-weight: 600; margin-bottom: 20px; font-family: var(--font-heading); }
.oly-page .for-card .who-card-title { color: #333333; }
.oly-page .not-card .who-card-title { color: #7A007A; }

.oly-page .who-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.oly-page .who-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  color: #333333;
  font-weight: 500;
  line-height: 1.6;
  font-family: var(--font-body);
}

.oly-page .who-list li::before {
  content: '✓';
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
  color: #333333;
}

.oly-page .who-list.not-list li::before { content: '✕'; color: #7A007A }

/* ─── HOW IT WORKS ─── */
.oly-page .how-section {
  background-color: #fff;
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.oly-page .how-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }

.oly-page .how-step {
  background: #e6ebff;
  border-radius: 20px;
  padding: 28px 22px;
  border: 2px solid transparent;
  transition: border .2s;
}
.oly-page .how-step:hover { border: 2px solid #a0aeff; }

.oly-page .step-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #13217c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.oly-page .how-step-title {
  font-size: 18px;
  font-weight: 600;
  color: #3b5bff;
  margin-bottom: 10px;
  line-height: 1.4;
  font-family: var(--font-heading);
}

.oly-page .how-step-text {
  font-size: 16px;
  color: #333333;
  font-weight: 400;
  line-height: 1.6;
  font-family: var(--font-body);
}

.oly-page .how-info {
  text-align: center;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.oly-page .how-pill {
  background: #e6ebff;
  color: #333333;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font-body);
}

/* ─── REGISTER ─── */
.oly-page .register-section {
  background-color: var(--bg-navy);
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.oly-page .register-section h2.section-title { color: var(--text-white); }

.oly-page .register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.oly-page .register-image img { width: 100%; border-radius: 20px; display: block; }

.oly-page .register-form-wrap iframe { border-radius: 12px; width: 100%; height: 520px; border: none; }

/* Addition, not in comp: the comp's Zoho iframe is swapped for our house form so the
   submission carries Nova attribution (a PIPELINE swap, not a tenant change — see
   event_olympiad_shortcodes.php). The Olympiad recurs, so the section is state-gated and the
   comp defined no styling for either state; both are new.

   CLOSED (default) — a real, honest block. It is NOT a dashed "coming soon" box any more:
   the four "Results to be announced" CTAs on this page anchor to #form and land here, so it
   is a destination a visitor actually reads, not dev scaffolding. */
.oly-page .register-form-placeholder {
  background: #fffdfe;
  border: 1px solid var(--primary-blue);
  border-radius: 12px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  gap: 10px;
}
.oly-page .register-form-placeholder p { font-family: var(--font-body); font-size: 16px; color: var(--text-dark); margin: 0; }
.oly-page .register-form-closed .oly-closed-title { font-family: var(--font-heading, var(--font-body)); font-size: 20px; font-weight: 700; }

/* OPEN — the house form renders in place of the closed block; it brings its own skin
   (galvanize-forms), so this only owns the box around it. */
.oly-page .register-form-card { border-radius: 12px; width: 100%; }

/* ─── FAQ ─── */
.oly-page .faq-section {
  background: #fffdfe;
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.oly-page .faq-layout { display: grid; grid-template-columns: 2fr 3fr; gap: 40px; align-items: start; }

.oly-page .faq-image-col img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  position: sticky;
  top: 20px;
}

.oly-page .faq-title {
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 48px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 30px;
}

.oly-page .faq-item { background: var(--primary-blue); margin-bottom: 18px; overflow: hidden; }

.oly-page .faq-question {
  padding: 20px 50px 20px 20px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: var(--text-white);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  user-select: none;
  font-family: var(--font-body);
}

.oly-page .faq-question::after {
  content: "›";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 26px;
  color: #fff;
  font-weight: 400;
  transition: transform 0.3s ease;
  line-height: 1;
}

.oly-page .faq-question.active::after { content: "›"; transform: translateY(-50%) rotate(90deg); }

.oly-page .faq-answer {
  background-color: var(--accent-blue);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: var(--primary-blue);
  font-family: var(--font-body);
}

.oly-page .faq-answer.active { max-height: 800px; padding: 20px; }
.oly-page .faq-answer ul { margin: 10px 0 0; padding-left: 18px; }
.oly-page .faq-answer li { margin-bottom: 8px; }

/* ─── CTA BANNER ─── */
.oly-page .cta-banner {
  background-color: var(--bg-navy);
  display: flex;
  justify-content: center;
  padding: 60px 0;
  text-align: center;
}

.oly-page .cta-banner h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.45;
  max-width: 760px;
  margin: 0 auto 28px;
  font-family: var(--font-heading);
}

.oly-page .cta-banner h2 span { color: #fffdfe; }

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {
  .oly-page .container { padding: 0 40px; }
  .oly-page .hero .container { grid-template-columns: 1.1fr 1fr; gap: 30px; }
  .oly-page .feature-card { flex: 0 1 calc((100% - 30px)/2); }
  .oly-page .hero-carousel-card {
    padding: 15px;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    min-height: 215px;
  }
  .oly-page .hero-carousel-name { font-size: 16px; line-height: 26px; }
  .oly-page .hero-carousel-journey { font-size: 14px; line-height: 22px; }
  .oly-page .hero-carousel-degree { font-size: 14px; line-height: 22px; }
  .oly-page .hero-carousel-logo { width: auto; height: 30px; }
  .oly-page .how-flow { grid-template-columns: repeat(2, 1fr); }
  .oly-page .recog-grid { grid-template-columns: repeat(2, 1fr); }
  .oly-page .stats-row { grid-template-columns: repeat(3, 1fr); }
}

@media(max-width:768px) {
  .oly-page .container { padding: 0 20px; }
  .oly-page h2.section-title { font-size: 22px; line-height: 38px; margin-bottom: 10px; }
  .oly-page .section-subtitle { font-size: 18px; line-height: 29px; }
  .oly-page .hero { padding: 30px 0 50px; }
  .oly-page .hero .container { grid-template-columns: 1fr; }
  .oly-page .hero-content h1 { font-size: 30px; line-height: 40px; }
  .oly-page .hero-content p { font-size: 18px; }
  .oly-page .hero-image { display: none; }
  .oly-page .features-grid { flex-direction: column; }
  .oly-page .feature-card { flex: 0 1 100%; }
  .oly-page .recog-grid { grid-template-columns: 1fr; }
  .oly-page .who-grid { grid-template-columns: 1fr; }
  .oly-page .how-flow { grid-template-columns: 1fr; }
  .oly-page .register-grid { grid-template-columns: 1fr; }
  .oly-page .register-image { display: none; }
  .oly-page .faq-image-col { display: none; }
  .oly-page .faq-layout { grid-template-columns: 1fr; }
  .oly-page .stats-row { grid-template-columns: 1fr; }
  .oly-page .faq-title { font-size: 22px; line-height: 38px; }
  .oly-page .faq-question { font-size: 16px; line-height: 26px; }
  .oly-page .hero-carousel-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
    padding: 30px 20px;
  }
  .oly-page .hero-carousel-header { flex-direction: column; align-items: center; gap: 15px; }
  .oly-page .hero-carousel-info { align-items: center; }
  .oly-page .hero-carousel-journey { justify-content: center; }
  .oly-page .hero-carousel-logo { align-self: center; }
  .oly-page .faq-answer { font-size: 16px; line-height: 26px; }
  .oly-page .cta-banner h2 { font-size: 22px; }
  .oly-page .stats-bar { padding: 20px; }
}

@media(min-width:769px) and (max-width:1023px) {
  .oly-page h2.section-title { font-size: 26px; line-height: 38px; }
  .oly-page .section-subtitle { font-size: 18px; }
  .oly-page .how-flow { grid-template-columns: repeat(2, 1fr); }
  .oly-page .recog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────────────────────────────────────────────────────────────────
   Bricks integration reset (addition, not comp). This is a plain `page`
   (not a CPT), rendered through [galv_event_olympiad] inside a single
   Bricks container>text element (ARI-page pattern). Stretch the Bricks
   wrapper chain so .oly-page's own full-bleed sections own the layout.
   ───────────────────────────────────────────────────────────────────────── */
body.galv-event-olympiad-page main#brx-content > .brxe-container,
body.galv-event-olympiad-page main#brx-content .brxe-text {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}
body.galv-event-olympiad-page {
  background: #e6ebff; /* matches comp's body background-color (--accent-blue) */
  overflow-x: clip;
}
/* Comps ship with no site header, so `.faq-image-col img { position:sticky; top:20px; }`
   slides UNDER the real sticky site nav (PLAYBOOK Sec.9) — offset past it, same fix + same
   value as body.single-post .card-Slider.sticky-banner in blog.css. */
body.galv-event-olympiad-page .oly-page .faq-image-col img {
  top: 100px;
}
