:root {
  --rfx-bg: #061017;
  --rfx-surface: #0d1822;
  --rfx-surface-2: #121f2d;
  --rfx-card: #10202f;
  --rfx-border: rgba(255, 255, 255, 0.1);
  --rfx-text: #f7f9f4;
  --rfx-muted: #92a6b8;
  --rfx-accent: #b9ff6c;
  --rfx-accent-2: #46c9ff;
  --rfx-warm: #ff9c55;
  --rfx-shadow: 0 20px 80px rgba(0, 0, 0, 0.28);
  --rfx-radius: 1.5rem;
  --rfx-shell: min(1180px, calc(100vw - 2rem));
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(70, 201, 255, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at top right,
      rgba(185, 255, 108, 0.09),
      transparent 25%
    ),
    var(--rfx-bg);
  color: var(--rfx-text);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
main {
  padding-block-start: 6.25rem;
}
.rfx-shell {
  width: var(--rfx-shell);
  margin-inline: auto;
}
.rfx-section {
  padding: 5rem 0;
}
.rfx-section--soft {
  background: rgba(255, 255, 255, 0.02);
}
.rfx-section--cta {
  padding-top: 0;
}
.rfx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rfx-border);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rfx-accent);
}
h1,
h2,
h3,
strong {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}
h1 {
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: 0.98;
  margin: 0.9rem 0 1rem;
  max-width: 12ch;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  margin: 0.75rem 0;
}
h3 {
  font-size: 1.15rem;
  margin: 0 0 0.6rem;
}
p {
  margin: 0 0 1rem;
  color: #d8e3ec;
}
.rfx-muted {
  color: var(--rfx-muted);
}
.rfx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.92rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    opacity 0.25s ease;
}
.rfx-btn:hover {
  transform: translateY(-2px);
}
.rfx-btn--solid {
  background: var(--rfx-accent);
  color: #0a120f;
  margin-top: 10px;
}
.rfx-btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--rfx-border);
  color: var(--rfx-text);
}
.rfx-btn--text {
  background: transparent;
  color: var(--rfx-muted);
  padding-inline: 0.2rem;
}
.rfx-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--rfx-accent);
}
.rfx-inline-link svg,
.rfx-info-card h3 svg {
  inline-size: 1rem;
  block-size: 1rem;
  fill: currentColor;
}
.rfx-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(6, 16, 23, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.35s ease;
}
.rfx-header.is-hidden {
  transform: translateY(-100%);
}
.rfx-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.4rem;
}
.rfx-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.rfx-logo__mark {
  display: grid;
  place-items: center;
  inline-size: 2.75rem;
  block-size: 2.75rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--rfx-accent), var(--rfx-accent-2));
  color: #071014;
  font:
    800 1rem/1 "Sora",
    sans-serif;
}
.rfx-logo__text strong {
  display: block;
  font-size: 0.95rem;
}
.rfx-logo__text small {
  display: block;
  color: var(--rfx-muted);
  font-size: 0.74rem;
}
.rfx-nav {
  display: flex;
  gap: 1.15rem;
  align-items: center;
}
.rfx-nav a {
  position: relative;
  color: #cbdae6;
}
.rfx-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--rfx-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.rfx-nav a:hover::after,
.rfx-nav a.is-active::after {
  transform: scaleX(1);
}
.rfx-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rfx-menu-toggle,
.rfx-icon-btn,
.rfx-mobile-menu__close {
  place-items: center;
  inline-size: 2.8rem;
  block-size: 2.8rem;
  border-radius: 999px;
  border: 1px solid var(--rfx-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--rfx-text);
}
.rfx-menu-toggle {
  display: none;
}
.rfx-icon-btn {
  display: grid;
}
.rfx-menu-toggle svg,
.rfx-mobile-menu__close svg,
.rfx-icon-btn svg {
  inline-size: 1.1rem;
  block-size: 1.1rem;
  fill: currentColor;
}
.rfx-mobile-menu {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(3, 9, 14, 0.65);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.rfx-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.rfx-mobile-menu__panel {
  width: min(30rem, 100%);
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--rfx-border);
  border-radius: 2rem;
  background: #09131b;
}
.rfx-mobile-menu__panel a {
  font-size: 1.3rem;
}
.rfx-mobile-menu__close {
  display: grid;
  justify-self: end;
}
.rfx-hero {
  position: relative;
  padding: 2rem 0 3rem;
  overflow: hidden;
}
.rfx-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  min-block-size: clamp(34rem, 72vh, 46rem);
  position: relative;
  z-index: 1;
}
.rfx-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}
.rfx-policy-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.rfx-contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.rfx-hero__copy {
  max-width: 42rem;
}
.rfx-hero__copy p {
  max-width: 56ch;
  font-size: 1.08rem;
}
.rfx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.rfx-hero--home {
  background: url("/img/hero-main.webp") center / cover no-repeat;
}
.rfx-hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 16, 23, 0.88) 0%,
    rgba(6, 16, 23, 0.78) 34%,
    rgba(6, 16, 23, 0.48) 62%,
    rgba(6, 16, 23, 0.14) 100%
  );
}
.rfx-hero--home::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  block-size: 9rem;
  background: linear-gradient(
    180deg,
    rgba(6, 16, 23, 0),
    rgba(6, 16, 23, 0.92)
  );
}
.rfx-hero--home .rfx-hero__copy,
.rfx-hero--home .rfx-hero__copy h1,
.rfx-hero--home .rfx-hero__copy p {
  max-width: none;
  width: 100%;
}
.rfx-hero--home .rfx-hero__copy h1 {
  background: linear-gradient(135deg, #fdfffe 0%, #e4f5ff 42%, #b9ff6c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.rfx-stage-card,
.rfx-map-card,
.rfx-info-card,
.rfx-quote-card,
.rfx-sport-card,
.rfx-school-card,
.rfx-article-card,
.rfx-fact-card,
.rfx-video-card,
.rfx-checklist-band,
.rfx-policy,
.rfx-policy-nav,
.rfx-metric-card,
.rfx-gallery-card,
.rfx-timeline__item {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.08)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--rfx-radius);
  box-shadow: var(--rfx-shadow);
}
.rfx-sport-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.08)
  );
  border-color: rgba(255, 255, 255, 0.14);
}
.rfx-school-card__media,
.rfx-sport-card__media,
.rfx-gallery-card {
  background: var(
    --rfx-card-tone,
    linear-gradient(135deg, rgba(185, 255, 108, 0.18), rgba(70, 201, 255, 0.18))
  );
}
.rfx-page-hero {
  padding: 2rem 0 1rem;
}
.rfx-page-hero p {
  max-width: 62ch;
}
.rfx-page-hero--visual {
  position: relative;
  display: flex;
  align-items: end;
  min-block-size: clamp(18rem, 34vw, 26rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.rfx-page-hero--visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 16, 23, 0.24), rgba(6, 16, 23, 0.78)),
    linear-gradient(90deg, rgba(6, 16, 23, 0.88), rgba(6, 16, 23, 0.24));
}
.rfx-page-hero--visual .rfx-shell {
  position: relative;
  z-index: 1;
  padding-block: 2rem 1.5rem;
}
.rfx-page-hero--policy h1 {
  max-width: none;
  font-size: clamp(1.45rem, 3.2vw, 2.7rem);
}
.rfx-page-hero--policy p {
  font-size: 0.98rem;
}
.rfx-policy h2 {
  font-size: clamp(1.1rem, 1.9vw, 1.6rem);
}
.rfx-contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.rfx-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.06)
  );
  color: #eef5fa;
  font-size: 0.9rem;
  line-height: 1.3;
  white-space: nowrap;
}
.rfx-contact-pill svg {
  inline-size: 1rem;
  block-size: 1rem;
  flex: 0 0 1rem;
  fill: currentColor;
}
.rfx-sport-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 20rem);
  gap: 1.5rem;
  align-items: center;
}
.rfx-sport-detail-hero__copy {
  min-width: 0;
}
.rfx-sport-detail-hero__media {
  display: flex;
  justify-content: flex-end;
}
.rfx-sport-detail-hero__icon-shell {
  display: grid;
  place-items: center;
  inline-size: min(100%, 18rem);
  min-block-size: 14rem;
  padding: 1.2rem;
  border-radius: 1.5rem;
  background: #fdfffe;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}
.rfx-sport-detail-hero__icon {
  inline-size: 100%;
  min-block-size: 11rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.rfx-page-hero--school {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.rfx-page-hero--school::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 16, 23, 0.12),
    rgba(6, 16, 23, 0.26)
  );
}
.rfx-page-hero--school .rfx-shell {
  position: relative;
  z-index: 1;
  padding-block: 2rem 1.5rem;
}
.rfx-page-hero--school h1,
.rfx-page-hero--school p,
.rfx-page-hero--school .rfx-tag-list,
.rfx-page-hero--school .rfx-stat-strip {
  position: relative;
  z-index: 1;
}
.rfx-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  color: var(--rfx-muted);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}
.rfx-breadcrumbs a {
  color: #c8d8e5;
}
.rfx-grid {
  display: grid;
  gap: 1.25rem;
}
.rfx-grid--sports {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rfx-grid--schools,
.rfx-grid--quotes,
.rfx-grid--benefits,
.rfx-grid--coaches,
.rfx-grid--editorial,
.rfx-grid--contact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.rfx-grid--gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rfx-section-head {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 52rem;
  margin-bottom: 1.7rem;
}
.rfx-section-head p {
  color: var(--rfx-muted);
}
.rfx-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding-block: 1rem;
}
.rfx-metric-card {
  position: relative;
  padding: 1.4rem;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(22, 35, 48, 0.95),
    rgba(10, 20, 30, 0.82)
  );
}
.rfx-metric-card:nth-child(1) {
  background: linear-gradient(
    135deg,
    rgba(185, 255, 108, 0.22),
    rgba(13, 110, 58, 0.3)
  );
}
.rfx-metric-card:nth-child(2) {
  background: linear-gradient(
    135deg,
    rgba(70, 201, 255, 0.22),
    rgba(17, 78, 148, 0.3)
  );
}
.rfx-metric-card:nth-child(3) {
  background: linear-gradient(
    135deg,
    rgba(255, 184, 92, 0.22),
    rgba(162, 76, 21, 0.3)
  );
}
.rfx-metric-card:nth-child(4) {
  background: linear-gradient(
    135deg,
    rgba(255, 153, 223, 0.2),
    rgba(142, 36, 101, 0.28)
  );
}
.rfx-metric-card strong {
  display: block;
  font-size: 2rem;
  color: #fdfffe;
}
.rfx-metric-card span {
  color: rgba(253, 255, 254, 0.82);
}
.rfx-sport-card,
.rfx-school-card,
.rfx-article-card,
.rfx-info-card,
.rfx-quote-card {
  overflow: hidden;
}
.rfx-sport-card__media,
.rfx-school-card__media,
.rfx-gallery-card {
  min-block-size: 10rem;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.rfx-sport-card__media {
  gap: 1rem;
}
.rfx-sport-card__icon-shell {
  display: grid;
  place-items: center;
  inline-size: 100%;
  min-block-size: 8.75rem;
  padding: 1rem;
  border-radius: 1.2rem;
  background: #fdfffe;
}
.rfx-sport-card__icon {
  inline-size: 100%;
  min-block-size: 6.75rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.rfx-school-card__media--photo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.rfx-school-card__media--photo span,
.rfx-school-card__media--photo strong {
  position: relative;
  z-index: 1;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}
.rfx-school-card__media strong,
.rfx-sport-card__media span {
  font-size: 1.35rem;
  max-width: 10ch;
}
.rfx-sport-card__media span {
  display: none;
}
.rfx-sport-card__body,
.rfx-school-card__body,
.rfx-article-card {
  padding: 1.35rem;
}
.rfx-sport-card__body small {
  display: block;
  margin-bottom: 0.65rem;
}
.rfx-article-card {
  display: grid;
  gap: 0.75rem;
}
.rfx-article-card__media,
.rfx-long-article__media {
  width: 100%;
  border-radius: 1.15rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.rfx-article-card__media {
  min-block-size: 13rem;
}
.rfx-long-article__media {
  min-block-size: 18rem;
  margin-bottom: 1.1rem;
}
.rfx-school-card__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.rfx-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #f8d57e;
  font-size: 0.9rem;
}
.rfx-rating small {
  color: var(--rfx-muted);
}
.rfx-rating svg {
  inline-size: 1rem;
  block-size: 1rem;
  fill: currentColor;
}
.rfx-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1rem 0 1.25rem;
  list-style: none;
}
.rfx-tag-list li,
.rfx-active-tags span,
.rfx-payment-strip span,
.rfx-logo-strip span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--rfx-border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
}
.rfx-school-card .rfx-tag-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 1.35rem;
}
.rfx-school-card .rfx-tag-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  color: #eef5fa;
  font-size: 0.92rem;
  line-height: 1.35;
}
.rfx-school-card .rfx-tag-list li::before {
  content: "";
  inline-size: 1.1rem;
  block-size: 1.1rem;
  flex: 0 0 1.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.rfx-school-card .rfx-tag-list li:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B9FF6C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3C/svg%3E");
}
.rfx-school-card .rfx-tag-list li:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2346C9FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-6-5.33-6-11a6 6 0 1 1 12 0c0 5.67-6 11-6 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}
.rfx-school-card .rfx-tag-list li:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFB85C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 19h14'/%3E%3Cpath d='M7 16V9'/%3E%3Cpath d='M12 16V5'/%3E%3Cpath d='M17 16v-3'/%3E%3C/svg%3E");
}
.rfx-school-card .rfx-tag-list li:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF99DF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 8v4l2.5 2.5'/%3E%3C/svg%3E");
}
.rfx-page-hero--school .rfx-tag-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 42rem;
}
.rfx-page-hero--school .rfx-tag-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.05)
  );
  color: #eef5fa;
  font-size: 0.92rem;
  line-height: 1.35;
}
.rfx-page-hero--school .rfx-tag-list li::before {
  content: "";
  inline-size: 1.1rem;
  block-size: 1.1rem;
  flex: 0 0 1.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.rfx-page-hero--school .rfx-tag-list li:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B9FF6C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='7'/%3E%3Cpath d='M12 5v14'/%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
}
.rfx-page-hero--school .rfx-tag-list li:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2346C9FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3C/svg%3E");
}
.rfx-page-hero--school .rfx-tag-list li:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFB85C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-6-5.33-6-11a6 6 0 1 1 12 0c0 5.67-6 11-6 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}
.rfx-page-hero--school .rfx-tag-list li:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF99DF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 19h14'/%3E%3Cpath d='M7 16V9'/%3E%3Cpath d='M12 16V5'/%3E%3Cpath d='M17 16v-3'/%3E%3C/svg%3E");
}
.rfx-school-card .rfx-btn {
  inline-size: 100%;
  justify-content: center;
  padding-block: 1rem;
  border: none;
  background: linear-gradient(135deg, #b9ff6c 0%, #46c9ff 100%);
  color: #071014;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(70, 201, 255, 0.18);
}
.rfx-school-card .rfx-btn:hover {
  box-shadow: 0 22px 42px rgba(70, 201, 255, 0.26);
}
.rfx-info-card,
.rfx-quote-card,
.rfx-fact-card,
.rfx-video-card,
.rfx-checklist-band,
.rfx-policy,
.rfx-policy-nav,
.rfx-timeline__item {
  padding: 1.5rem;
}
.rfx-quote-card strong,
.rfx-quote-card small {
  display: block;
}
.rfx-quote-card {
  display: grid;
  gap: 0.8rem;
}
.rfx-quote-card::before {
  content: "";
  inline-size: 3rem;
  block-size: 3rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}
.rfx-grid--quotes .rfx-quote-card:nth-child(1)::before {
  background-image: url("../img/reviews/review-1.webp");
}
.rfx-grid--quotes .rfx-quote-card:nth-child(2)::before {
  background-image: url("../img/reviews/review-2.webp");
}
.rfx-grid--quotes .rfx-quote-card:nth-child(3)::before {
  background-image: url("../img/reviews/review-3.webp");
}
.rfx-grid--quotes .rfx-quote-card:nth-child(4)::before {
  background-image: url("../img/reviews/review-4.webp");
}
.rfx-grid--quotes .rfx-quote-card:nth-child(5)::before {
  background-image: url("../img/reviews/review-5.webp");
}
.rfx-grid--quotes .rfx-quote-card:nth-child(6)::before {
  background-image: url("../img/reviews/review-6.webp");
}
.rfx-quote-card small {
  color: var(--rfx-muted);
}
.rfx-catalog {
  display: grid;
  grid-template-columns: minmax(16rem, 18rem) 1fr;
  gap: 1.5rem;
}
.rfx-filter-toggle {
  display: none;
  margin-bottom: 1rem;
}
.rfx-filter-panel {
  position: sticky;
  top: 6.5rem;
  padding: 1.35rem;
  border: 1px solid var(--rfx-border);
  border-radius: 1.5rem;
  background: rgba(13, 24, 34, 0.84);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.rfx-filter-group {
  display: grid;
  gap: 0.65rem;
  padding-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
}
.rfx-filter-group:nth-of-type(1) {
  border-color: rgba(185, 255, 108, 0.4);
  box-shadow: inset 0 0 0 1px rgba(185, 255, 108, 0.08);
}
.rfx-filter-group:nth-of-type(2) {
  border-color: rgba(70, 201, 255, 0.4);
  box-shadow: inset 0 0 0 1px rgba(70, 201, 255, 0.08);
}
.rfx-filter-group:nth-of-type(3) {
  border-color: rgba(255, 184, 92, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 184, 92, 0.08);
}
.rfx-filter-group:nth-of-type(4) {
  border-color: rgba(255, 153, 223, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 153, 223, 0.08);
}
.rfx-filter-group strong {
  color: #fdfffe;
}
.rfx-filter-group label,
.rfx-toggle,
.rfx-checkbox {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.rfx-filter-group input,
.rfx-toggle input,
.rfx-checkbox input {
  accent-color: var(--rfx-accent);
}
.rfx-checkbox input {
  margin: 0;
  flex: 0 0 auto;
}
.rfx-checkbox {
  align-items: center;
}
.rfx-results-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.rfx-active-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.rfx-table-wrap {
  overflow: auto;
}
.rfx-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 48rem;
}
.rfx-table th,
.rfx-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}
.rfx-facts {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}
.rfx-facts li {
  display: grid;
  gap: 0.2rem;
}
.rfx-facts span {
  color: var(--rfx-muted);
  font-size: 0.86rem;
}
.rfx-video-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
}
.rfx-video-card__play {
  display: grid;
  place-items: center;
  inline-size: 4rem;
  block-size: 4rem;
  border-radius: 50%;
  border: 1px solid var(--rfx-border);
  background: var(--rfx-accent);
  color: #061017;
}
.rfx-video-card__play svg {
  inline-size: 1.2rem;
  block-size: 1.2rem;
  fill: currentColor;
}
.rfx-map-card {
  display: grid;
  overflow: hidden;
}
.rfx-map-card__info {
  padding: 1.2rem;
  display: grid;
  gap: 0.35rem;
}
.rfx-map-card iframe {
  border: 0;
  min-block-size: 24rem;
  width: 100%;
}
.rfx-form {
  display: grid;
  gap: 1rem;
}
.rfx-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.rfx-form label {
  display: grid;
  gap: 0.45rem;
}
.rfx-form label.rfx-checkbox {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.rfx-form input[type="text"],
.rfx-form input[type="tel"],
.rfx-form input[type="email"],
.rfx-form textarea {
  width: 100%;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid rgba(70, 201, 255, 0.24);
  background: linear-gradient(
    135deg,
    rgba(253, 255, 254, 0.95),
    rgba(227, 244, 255, 0.92)
  );
  color: #071014;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.rfx-form input[type="text"]::placeholder,
.rfx-form input[type="tel"]::placeholder,
.rfx-form input[type="email"]::placeholder,
.rfx-form textarea::placeholder {
  color: rgba(7, 16, 20, 0.56);
}
.rfx-form input[type="text"]:focus,
.rfx-form input[type="tel"]:focus,
.rfx-form input[type="email"]:focus,
.rfx-form textarea:focus {
  outline: none;
  border-color: rgba(70, 201, 255, 0.72);
  box-shadow:
    0 0 0 4px rgba(70, 201, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.rfx-form .rfx-checkbox input {
  inline-size: auto;
  width: auto;
  padding: 0;
}
.rfx-form .rfx-checkbox span {
  display: inline;
  line-height: 1.45;
}
.rfx-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.rfx-form__success {
  color: var(--rfx-accent);
}
.rfx-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 10, 14, 0.6);
}
.rfx-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.4rem;
}
.rfx-footer__links {
  display: grid;
  gap: 0.55rem;
}
.rfx-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.rfx-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.rfx-payment-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}
.rfx-payment-strip span {
  display: block;
  font-size: 0;
  line-height: 0;
  padding: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  border-radius: 0;
  background-color: transparent;
}
.rfx-payment-strip span:nth-child(1) {
  width: 50px;
  height: 30px;
  background-image: url("../img/icons/payments/visa.svg");
}
.rfx-payment-strip span:nth-child(2) {
  width: 50px;
  height: 30px;
  background-image: url("../img/icons/payments/mastercard.svg");
}
.rfx-payment-strip span:nth-child(3) {
  width: 50px;
  height: 30px;
  background-image: url("../img/icons/payments/paypal.svg");
}
.rfx-cookie {
  position: fixed;
  inset: auto 1rem 1rem auto;
  z-index: 55;
}
.rfx-cookie__card,
.rfx-modal__card,
.rfx-chatbot {
  width: min(26rem, calc(100vw - 2rem));
  padding: 1.2rem;
  border-radius: 1.4rem;
  border: 1px solid var(--rfx-border);
  background: rgba(8, 14, 20, 0.95);
  backdrop-filter: blur(18px);
  box-shadow: var(--rfx-shadow);
}
.rfx-cookie__card {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem 1.35rem 1.2rem;
}
.rfx-cookie__actions,
.rfx-chatbot__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.rfx-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(2, 8, 12, 0.64);
  z-index: 70;
}
.rfx-modal__head,
.rfx-chatbot__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.rfx-modal__card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}
.rfx-modal__intro {
  display: grid;
  gap: 0.35rem;
}
.rfx-modal__intro p {
  margin: 0;
  color: var(--rfx-muted);
  font-size: 0.95rem;
}
.rfx-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.rfx-cookie-settings {
  display: grid;
  gap: 0.75rem;
}
.rfx-toggle--card {
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--rfx-border);
  background: rgba(255, 255, 255, 0.03);
}
.rfx-toggle__copy {
  display: grid;
  gap: 0.2rem;
  max-width: 16.5rem;
}
.rfx-toggle__copy strong {
  font-size: 0.96rem;
}
.rfx-toggle__copy small {
  color: var(--rfx-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}
.rfx-chatbot-trigger {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 54;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--rfx-border);
  background: var(--rfx-accent);
  color: #061017;
  box-shadow: var(--rfx-shadow);
}
.rfx-chatbot-trigger svg {
  inline-size: 1rem;
  block-size: 1rem;
  fill: currentColor;
}
.rfx-chatbot {
  position: fixed;
  right: 1rem;
  bottom: 5rem;
  z-index: 54;
  display: grid;
  gap: 1rem;
}
.rfx-chatbot__messages {
  display: grid;
  gap: 0.7rem;
  max-height: 18rem;
  overflow: auto;
}
.rfx-chatbot__bubble {
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: #111f2c;
}
.rfx-chatbot__bubble.is-user {
  background: #1b2e1c;
}
.rfx-chatbot__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
}
.rfx-chatbot__form input {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--rfx-border);
  background: #0b141c;
  color: var(--rfx-text);
}
.rfx-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.rfx-cursor span,
.rfx-cursor i {
  position: absolute;
  display: block;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.rfx-cursor span {
  inline-size: 8px;
  block-size: 8px;
  background: var(--rfx-accent);
}
.rfx-cursor i {
  inline-size: 36px;
  block-size: 36px;
  border: 1px solid rgba(185, 255, 108, 0.5);
}
.rfx-accordion {
  display: grid;
  gap: 0.75rem;
}
.rfx-accordion__item {
  padding: 1rem 1.1rem;
  border: 1px solid var(--rfx-border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.rfx-accordion__item summary {
  cursor: pointer;
  font-family: "Sora", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
}
.rfx-accordion__item summary::-webkit-details-marker {
  display: none;
}
.rfx-accordion__item summary::after {
  content: "";
  inline-size: 2rem;
  block-size: 2rem;
  flex: 0 0 2rem;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.08)
    ),
    url("../img/icons/faq/question.webp") center / 1.3rem 1.3rem no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.rfx-accordion__item p {
  margin: 0;
}
.rfx-accordion__item[open] {
  background: linear-gradient(
    135deg,
    rgba(185, 255, 108, 0.12),
    rgba(70, 201, 255, 0.12),
    rgba(255, 255, 255, 0.04)
  );
  border-color: rgba(70, 201, 255, 0.34);
  box-shadow: 0 18px 36px rgba(70, 201, 255, 0.08);
}
.rfx-accordion__item[open] summary {
  margin-bottom: 0.9rem;
}
.rfx-accordion__item[open] summary::after {
  transform: scale(1.04);
  box-shadow: 0 10px 22px rgba(70, 201, 255, 0.2);
}
.rfx-article,
.rfx-article-stack {
  display: grid;
  gap: 1rem;
}
.rfx-long-article {
  padding: 1.75rem;
  border: 1px solid var(--rfx-border);
  border-radius: 1.5rem;
  background: rgba(13, 24, 34, 0.72);
}
.rfx-checklist-band {
  display: grid;
  gap: 1.5rem;
}
.rfx-cta-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 1.5rem;
  border: 1px solid var(--rfx-border);
  background: linear-gradient(
    135deg,
    rgba(185, 255, 108, 0.12),
    rgba(70, 201, 255, 0.1)
  );
}
.rfx-policy-layout {
  align-items: start;
  gap: 1.25rem;
}
.rfx-policy-nav {
  position: static;
  display: grid;
  gap: 0.75rem;
  order: -1;
  padding: 1.1rem 1.2rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );
}
.rfx-policy-nav strong {
  color: #fdfffe;
}
.rfx-policy-nav a {
  color: #dbe7ef;
}
.rfx-policy-nav a:hover {
  color: var(--rfx-accent);
}
.rfx-policy {
  display: grid;
  gap: 1.5rem;
}
.rfx-logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.rfx-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.rfx-timeline--story {
  position: relative;
  gap: 1.25rem;
  align-items: start;
  padding-top: 0.75rem;
}
.rfx-timeline--story::before {
  content: "";
  position: absolute;
  top: 3.35rem;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(185, 255, 108, 0.9),
    rgba(70, 201, 255, 0.92),
    rgba(255, 184, 92, 0.92),
    rgba(255, 153, 223, 0.92)
  );
  opacity: 0.95;
}
.rfx-timeline__item--story {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 2.2rem;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.rfx-timeline__item--story::before {
  content: "";
  position: absolute;
  top: 2.8rem;
  inline-size: 1.05rem;
  block-size: 1.05rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #b9ff6c, #46c9ff);
  border: 4px solid rgba(9, 18, 27, 0.96);
  box-shadow: 0 0 0 8px rgba(70, 201, 255, 0.08);
}
.rfx-timeline__item--story:nth-child(2)::before {
  background: linear-gradient(135deg, #46c9ff, #89e5ff);
}
.rfx-timeline__item--story:nth-child(3)::before {
  background: linear-gradient(135deg, #89e5ff, #ffb85c);
}
.rfx-timeline__item--story:nth-child(4)::before {
  background: linear-gradient(135deg, #ffb85c, #ff99df);
}
.rfx-timeline__item--story:nth-child(5)::before {
  background: linear-gradient(135deg, #ff99df, #b9ff6c);
}
.rfx-timeline__item--story strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.4rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.08)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fdfffe;
  letter-spacing: 0.04em;
}
.rfx-timeline__item--story p {
  margin: 0;
  padding: 1.1rem 1rem 1.15rem;
  border-radius: 1.2rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.07)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #dbe7ef;
}
.rfx-values-grid {
  gap: 1.2rem;
}
.rfx-value-card {
  display: grid;
  gap: 0.95rem;
}
.rfx-value-icon {
  display: grid;
  place-items: center;
  inline-size: 3.6rem;
  block-size: 3.6rem;
  border-radius: 1rem;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.rfx-value-card:nth-child(1) .rfx-value-icon {
  background-image: url("../img/icons/values/trust.webp");
}
.rfx-value-card:nth-child(2) .rfx-value-icon {
  background-image: url("../img/icons/values/simplicity.webp");
}
.rfx-value-card:nth-child(3) .rfx-value-icon {
  background-image: url("../img/icons/values/child-centered.webp");
}
.rfx-value-card:nth-child(4) .rfx-value-icon {
  background-image: url("../img/icons/values/regional.webp");
}
.rfx-gallery-card {
  display: grid;
  gap: 0.45rem;
  text-align: left;
  padding: 1.25rem;
  border: 1px solid var(--rfx-border);
  color: var(--rfx-text);
}
.rfx-gallery-card span {
  font-size: 0.78rem;
  color: var(--rfx-muted);
}
.rfx-gallery-card--photo {
  min-block-size: 16rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  align-content: end;
}
.rfx-gallery-card--photo span,
.rfx-gallery-card--photo strong,
.rfx-gallery-card--photo small {
  position: relative;
  z-index: 1;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.42);
}
.rfx-lightbox-image {
  width: min(100%, 48rem);
  max-height: 70vh;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid var(--rfx-border);
  margin-bottom: 1rem;
}
.rfx-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.rfx-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1080px) {
  .rfx-nav,
  .rfx-header__actions .rfx-btn,
  .rfx-header__actions .rfx-location-pill {
    display: none;
  }
  .rfx-menu-toggle {
    display: grid;
  }
  .rfx-filter-toggle {
    display: inline-flex;
  }
  .rfx-filter-panel {
    position: static;
    display: none;
  }
  .rfx-filter-panel.is-open {
    display: grid;
  }
  .rfx-hero__grid,
  .rfx-contact-split,
  .rfx-two-col,
  .rfx-policy-layout,
  .rfx-catalog,
  .rfx-footer__grid {
    grid-template-columns: 1fr;
  }
  .rfx-stage-card {
    position: relative;
    inset: auto;
    padding: 1.5rem;
  }
  .rfx-hero__media {
    min-block-size: auto;
  }
  .rfx-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rfx-grid--sports,
  .rfx-grid--schools,
  .rfx-grid--quotes,
  .rfx-grid--benefits,
  .rfx-grid--coaches,
  .rfx-grid--editorial,
  .rfx-grid--contact,
  .rfx-grid--gallery,
  .rfx-timeline {
    grid-template-columns: 1fr 1fr;
  }
  .rfx-timeline--story {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 2.2rem;
  }
  .rfx-timeline--story::before {
    top: 0;
    bottom: 0;
    left: 0.5rem;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(185, 255, 108, 0.9),
      rgba(70, 201, 255, 0.92),
      rgba(255, 184, 92, 0.92),
      rgba(255, 153, 223, 0.92)
    );
  }
  .rfx-timeline__item--story {
    justify-items: start;
    text-align: left;
    gap: 0.9rem;
  }
  .rfx-timeline__item--story::before {
    top: 1rem;
    left: -2.25rem;
  }
  .rfx-article-card__media,
  .rfx-long-article__media {
    min-block-size: 12rem;
  }
}
@media (max-width: 720px) {
  main {
    padding-block-start: 5.6rem;
  }
  .rfx-shell {
    width: min(100vw - 1.25rem, 1180px);
  }
  .rfx-section {
    padding: 3.75rem 0;
  }
  .rfx-hero__actions,
  .rfx-results-bar,
  .rfx-form__row,
  .rfx-grid--sports,
  .rfx-grid--schools,
  .rfx-grid--quotes,
  .rfx-grid--benefits,
  .rfx-grid--coaches,
  .rfx-grid--editorial,
  .rfx-grid--contact,
  .rfx-grid--gallery,
  .rfx-timeline {
    grid-template-columns: 1fr;
  }
  .rfx-results-bar,
  .rfx-footer__bottom,
  .rfx-video-card,
  .rfx-cta-band {
    display: grid;
  }
  .rfx-metrics {
    grid-template-columns: 1fr;
  }
  .rfx-policy-nav {
    position: static;
  }
  .rfx-chatbot,
  .rfx-chatbot-trigger {
    right: 0.625rem;
  }
  .rfx-page-hero--school .rfx-tag-list {
    grid-template-columns: 1fr;
  }
  .rfx-sport-detail-hero {
    grid-template-columns: 1fr;
  }
  .rfx-sport-detail-hero__media {
    justify-content: flex-start;
  }
  .rfx-sport-detail-hero__icon-shell {
    inline-size: min(100%, 14rem);
    min-block-size: 11rem;
  }
}
@media (max-width: 500px) {
  h1,
  h2,
  h3 {
    word-break: break-all;
  }
}
@media (pointer: coarse) {
  .rfx-cursor {
    display: none;
  }
}
