/* On-Site Training page */

#rx-onsite {
  --rx-ot-paper: #FFFFFF;
  --rx-ot-ink: #0D1D2D;
  --rx-ot-body: #323639;
  --rx-ot-muted: #4A5560;
  --rx-ot-muted-2: #3D4A57;
  --rx-ot-blue: #357FC2;
  --rx-ot-accent: #D26317;
  --rx-ot-accent-dark: #bb5512;
  --rx-ot-accent-soft: #F0955C;
  --rx-ot-gray: #9AA3AC;
  --rx-ot-slate: #5C7C97;
  --rx-ot-rule: rgba(13, 29, 45, 0.1);
  --rx-ot-rule-soft: rgba(13, 29, 45, 0.08);
  --rx-ot-wrap: 1200px;
  --rx-ot-pad: clamp(22px, 5vw, 40px);
  background: var(--rx-ot-paper);
  color: var(--rx-ot-body);
  font-family: 'IBM Plex Sans', ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#rx-onsite a:focus-visible {
  outline: 2px solid var(--rx-ot-accent);
  outline-offset: 4px;
}

.rx-ot-wrap {
  max-width: var(--rx-ot-wrap);
  margin: 0 auto;
  padding-left: var(--rx-ot-pad);
  padding-right: var(--rx-ot-pad);
}

.rx-ot-em {
  font-style: italic;
  color: var(--rx-ot-accent);
}

.rx-ot-eyebrow {
  display: block;
  font-family: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--rx-ot-blue);
}

.rx-ot-heading {
  font-family: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 14px 0 0;
  color: var(--rx-ot-ink);
  text-wrap: balance;
}

.rx-ot-section-head {
  border-top: 1px solid var(--rx-ot-rule);
  padding-top: 64px;
  margin-bottom: 48px;
}

.rx-ot-section-head .rx-ot-heading {
  margin-bottom: 0;
}

.rx-ot-split {
  border-top: 1px solid var(--rx-ot-rule);
  padding-top: 64px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
}

.rx-ot-btn {
  display: inline-block;
  text-decoration: none;
  background: var(--rx-ot-accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 25px;
  transition: background 0.15s ease;
}

.rx-ot-btn:hover {
  background: var(--rx-ot-accent-dark);
  color: #fff;
}

.rx-ot-link {
  text-decoration: none;
  color: var(--rx-ot-ink);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 6px;
  border-bottom: 1.5px solid var(--rx-ot-ink);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.rx-ot-link:hover {
  color: var(--rx-ot-blue);
  border-color: var(--rx-ot-blue);
}

/* Hero */
.rx-ot-hero {
  position: relative;
  background: linear-gradient(180deg, #EBF2F9 0%, #FBFDFF 68%);
  border-bottom: 1px solid var(--rx-ot-rule-soft);
  overflow: hidden;
}

.rx-ot-hero__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(53, 127, 194, 0.1) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 68%);
  mask-image: linear-gradient(180deg, #000, transparent 68%);
}

.rx-ot-hero__glow {
  position: absolute;
  top: -150px;
  right: -110px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 99, 23, 0.11), rgba(210, 99, 23, 0) 65%);
  pointer-events: none;
}

.rx-ot-hero__inner {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  padding: 112px var(--rx-ot-pad) 96px;
  text-align: center;
}

.rx-ot-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rx-ot-blue);
  font-weight: 600;
  margin-bottom: 28px;
}

.rx-ot-hero__eyebrow-line {
  width: 24px;
  height: 1.5px;
  background: var(--rx-ot-accent);
}

.rx-ot-hero__title {
  font-family: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
  color: var(--rx-ot-ink);
  text-wrap: balance;
}

.rx-ot-hero__desc {
  font-size: 18px;
  line-height: 1.65;
  text-align: justify;
  color: var(--rx-ot-muted);
  margin: 0 auto 40px;
  max-width: 600px;
}

.rx-ot-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Why */
.rx-ot-why {
  padding: 96px 0 0;
}

.rx-ot-why__intro {
  margin-bottom: 56px;
}

.rx-ot-why__heading {
  max-width: 800px;
}

.rx-ot-why__split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  border-top: 1px solid var(--rx-ot-rule);
  padding-top: 56px;
}

.rx-ot-why__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.rx-ot-why__copy p {
  font-size: 17px;
  line-height: 1.85;
  text-align: justify;
  color: var(--rx-ot-muted-2);
  margin: 0;
}

.rx-ot-why__compare-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rx-ot-why__compare-card {
  border: 1px solid var(--rx-ot-rule);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.rx-ot-why__compare-card:hover {
  box-shadow: 0 24px 48px -30px rgba(2, 48, 79, 0.28);
  transform: translateY(-2px);
}

.rx-ot-why__bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.rx-ot-why__bar-col {
  padding: 28px 28px 20px;
}

.rx-ot-why__bar-col--off {
  border-right: 1px solid var(--rx-ot-rule);
  background: #FAFAFA;
}

.rx-ot-why__bar-col--on {
  background: #F5F9FC;
}

.rx-ot-why__bar-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rx-ot-gray);
  font-weight: 700;
}

.rx-ot-why__bar-label--on {
  color: var(--rx-ot-blue);
}

.rx-ot-why__bar-track {
  height: 14px;
  background: rgba(13, 29, 45, 0.06);
  border-radius: 3px;
  overflow: hidden;
  margin: 16px 0 4px;
}

.rx-ot-why__bar-track--on {
  background: rgba(53, 127, 194, 0.08);
}

.rx-ot-why__bar-fill {
  height: 100%;
  border-radius: 3px;
}

.rx-ot-why__bar-fill--off {
  width: 100%;
  background: #C7CDD2;
  animation: rx-ot-fill-a 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.1s both;
}

.rx-ot-why__bar-fill--on {
  width: 38%;
  background: linear-gradient(90deg, #0D1D2D, #357FC2);
  box-shadow: 0 0 12px rgba(53, 127, 194, 0.4);
  animation: rx-ot-fill-b 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s both;
}

@keyframes rx-ot-fill-a {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes rx-ot-fill-b {
  from { width: 0; }
  to { width: 38%; }
}

.rx-ot-why__bar-caption {
  font-size: 11.5px;
  color: var(--rx-ot-gray);
}

.rx-ot-why__bar-caption--on {
  color: var(--rx-ot-blue);
  font-weight: 600;
}

.rx-ot-why__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rx-ot-rule);
}

.rx-ot-why__list {
  display: flex;
  flex-direction: column;
}

.rx-ot-why__list:first-child {
  border-right: 1px solid var(--rx-ot-rule);
}

.rx-ot-why__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--rx-ot-rule-soft);
  font-size: 14px;
  color: var(--rx-ot-ink);
  transition: background 0.15s ease;
}

.rx-ot-why__item:last-child {
  border-bottom: none;
}

.rx-ot-why__item--muted {
  color: var(--rx-ot-muted);
}

.rx-ot-why__item:hover {
  background: rgba(53, 127, 194, 0.04);
}

.rx-ot-why__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rx-ot-blue);
  flex: none;
}

.rx-ot-why__dot--muted {
  background: #C7CDD2;
}

/* Includes / Needs / Attend / Steps / Formats / Catalog */
.rx-ot-includes,
.rx-ot-attend,
.rx-ot-needs,
.rx-ot-steps,
.rx-ot-formats,
.rx-ot-catalog {
  padding: 96px 0 0;
}

.rx-ot-bullets {
  display: flex;
  flex-direction: column;
}

.rx-ot-bullet {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid var(--rx-ot-rule-soft);
}

.rx-ot-bullet:last-child {
  border-bottom: 1px solid var(--rx-ot-rule-soft);
}

.rx-ot-bullet__badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  font-family: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.rx-ot-bullet__badge--accent {
  background: linear-gradient(135deg, #D26317, #F0955C);
  box-shadow: 0 6px 14px -6px rgba(210, 99, 23, 0.45);
}

.rx-ot-bullet__badge--blue {
  background: linear-gradient(135deg, #0D1D2D, #357FC2);
  box-shadow: 0 6px 14px -6px rgba(53, 127, 194, 0.45);
}

.rx-ot-bullet__text {
  font-size: 16px;
  color: var(--rx-ot-muted-2);
  line-height: 1.6;
  padding-top: 4px;
}

/* Steps */
.rx-ot-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.rx-ot-step {
  padding: 24px 28px 0 0;
  border-top: 1px solid var(--rx-ot-rule);
}

.rx-ot-step:not(:first-child) {
  padding-left: 28px;
}

.rx-ot-step:last-child {
  padding-right: 0;
}

.rx-ot-step__num {
  font-family: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--rx-ot-blue);
  margin-bottom: 14px;
}

.rx-ot-step__num--accent {
  color: var(--rx-ot-accent);
}

.rx-ot-step__title {
  font-weight: 600;
  font-size: 17px;
  color: var(--rx-ot-ink);
  margin-bottom: 10px;
}

.rx-ot-step__desc {
  font-size: 14.5px;
  line-height: 1.65;
  text-align: justify;
  color: var(--rx-ot-muted);
}

/* Formats */
.rx-ot-timeline {
  position: relative;
  margin: 0 0 56px;
  padding: 36px 0 12px;
}

.rx-ot-timeline__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(13, 29, 45, 0.15);
}

.rx-ot-timeline__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.6fr;
}

.rx-ot-timeline__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.rx-ot-timeline__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--rx-ot-dot, var(--rx-ot-ink));
  box-shadow: 0 0 0 4px rgba(13, 29, 45, 0.1);
}

.rx-ot-timeline__label {
  font-size: 12.5px;
  color: var(--rx-ot-slate);
}

.rx-ot-timeline__label--accent {
  color: var(--rx-ot-accent);
  font-weight: 600;
}

.rx-ot-table {
  width: 100%;
  border-collapse: collapse;
}

.rx-ot-table thead tr {
  border-bottom: 1px solid rgba(13, 29, 45, 0.15);
}

.rx-ot-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rx-ot-slate);
  font-weight: 700;
  padding: 0 16px 16px 0;
}

.rx-ot-table th:nth-child(2) {
  padding-left: 16px;
}

.rx-ot-table th:last-child {
  padding-right: 0;
}

.rx-ot-table tbody tr {
  border-bottom: 1px solid var(--rx-ot-rule-soft);
}

.rx-ot-table tbody tr:last-child {
  border-bottom: none;
}

.rx-ot-table td {
  padding: 20px 16px 20px 0;
  font-size: 15px;
  color: var(--rx-ot-muted-2);
  vertical-align: top;
}

.rx-ot-table td:nth-child(2) {
  padding-left: 16px;
}

.rx-ot-table td:last-child {
  padding-right: 0;
}

.rx-ot-table__format {
  font-family: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  font-size: 17px;
  color: var(--rx-ot-ink);
  border-left: 2px solid var(--rx-ot-row, var(--rx-ot-ink));
  padding-left: 14px !important;
}

.rx-ot-table-cards {
  display: none;
  flex-direction: column;
  gap: 0;
}

.rx-ot-table-card {
  padding: 20px 0 20px 14px;
  border-top: 1px solid var(--rx-ot-rule-soft);
  border-left: 2px solid var(--rx-ot-row, var(--rx-ot-ink));
}

.rx-ot-table-card:last-child {
  border-bottom: 1px solid var(--rx-ot-rule-soft);
}

.rx-ot-table-card__format {
  font-family: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  font-size: 17px;
  color: var(--rx-ot-ink);
  margin-bottom: 8px;
}

.rx-ot-table-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14.5px;
  color: var(--rx-ot-muted-2);
}

/* Attend */
.rx-ot-attend__grid {
  border-top: 1px solid var(--rx-ot-rule);
  padding-top: 64px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: stretch;
}

.rx-ot-attend__lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rx-ot-attend__lead .rx-ot-heading {
  margin-bottom: 28px;
}

.rx-ot-attend__roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.rx-ot-role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 16px 9px 12px;
  font-size: 13.5px;
  color: var(--rx-ot-ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rx-ot-role:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -22px rgba(2, 48, 79, 0.3);
}

.rx-ot-role__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: none;
}

.rx-ot-role--blue {
  background: #F5F9FC;
  border: 1px solid rgba(53, 127, 194, 0.2);
}

.rx-ot-role--blue .rx-ot-role__dot {
  background: var(--rx-ot-blue);
}

.rx-ot-role--dark {
  background: #EAF0F0;
  border: 1px solid rgba(13, 29, 45, 0.15);
}

.rx-ot-role--dark .rx-ot-role__dot {
  background: var(--rx-ot-ink);
}

.rx-ot-role--accent {
  background: #FBF4EE;
  border: 1px solid rgba(210, 99, 23, 0.2);
}

.rx-ot-role--accent .rx-ot-role__dot {
  background: var(--rx-ot-accent);
}

.rx-ot-role--accent-light {
  background: #FBF4EE;
  border: 1px solid rgba(240, 149, 92, 0.3);
}

.rx-ot-role--accent-light .rx-ot-role__dot {
  background: var(--rx-ot-accent-soft);
}

.rx-ot-attend__panel {
  min-height: 100%;
}

.rx-ot-attend__card {
  background: #fff;
  border: 1px solid var(--rx-ot-rule);
  border-radius: 8px;
  padding: 32px 34px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.rx-ot-attend__card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.rx-ot-attend__card-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rx-ot-gray);
  font-weight: 700;
}

.rx-ot-attend__card-range {
  font-family: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  font-size: 26px;
  color: var(--rx-ot-accent);
  letter-spacing: -0.01em;
}

.rx-ot-attend__meter {
  position: relative;
  height: 8px;
  background: rgba(13, 29, 45, 0.07);
  border-radius: 4px;
  margin-bottom: 10px;
}

.rx-ot-attend__meter-fill {
  position: absolute;
  left: 20%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #D26317, #F0955C);
  border-radius: 4px;
}

.rx-ot-attend__meter-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--rx-ot-gray);
  margin-bottom: 24px;
  gap: 8px;
}

.rx-ot-attend__meter-sweet {
  color: var(--rx-ot-accent);
  font-weight: 600;
}

.rx-ot-attend__note {
  font-size: 15.5px;
  line-height: 1.7;
  text-align: justify;
  color: var(--rx-ot-muted-2);
  margin: auto 0 0;
  border-top: 1px solid var(--rx-ot-rule-soft);
  padding-top: 20px;
}

/* Catalog */
.rx-ot-catalog .rx-ot-section-head {
  margin-bottom: 40px;
}

.rx-ot-catalog__bar {
  display: flex;
  height: 10px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}

.rx-ot-catalog__legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-bottom: 48px;
}

.rx-ot-catalog__legend-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: var(--rx-ot-slate);
}

.rx-ot-catalog__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
}

.rx-ot-catalog__tracks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.rx-ot-track__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--rx-ot-rule);
  padding-bottom: 16px;
  gap: 12px;
}

.rx-ot-track__title {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rx-ot-slate);
  font-weight: 700;
}

.rx-ot-track__count {
  font-family: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--rx-ot-gray);
  flex: none;
}

.rx-ot-track__courses {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rx-ot-track__course {
  font-size: 15px;
  color: var(--rx-ot-muted-2);
  line-height: 1.5;
}

.rx-ot-catalog__note {
  font-size: 15px;
  line-height: 1.7;
  color: var(--rx-ot-muted);
  margin: 48px 0 0;
  border-top: 1px solid var(--rx-ot-rule);
  padding-top: 32px;
}

/* CTA */
.rx-ot-cta {
  padding: 96px 0 120px;
}

.rx-ot-cta__card {
  background: linear-gradient(150deg, #0D1D2D 0%, #0A1A28 55%, #173047 100%);
  border-radius: 16px;
  padding: clamp(48px, 6vw, 72px) clamp(28px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rx-ot-cta__glow {
  position: absolute;
  top: -25%;
  left: -8%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 127, 194, 0.16), rgba(53, 127, 194, 0) 65%);
  pointer-events: none;
}

.rx-ot-cta__title {
  position: relative;
  z-index: 1;
  font-family: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.45;
  color: #fff;
  margin: 0 auto 20px;
  max-width: 700px;
}

.rx-ot-cta__desc {
  position: relative;
  z-index: 1;
  font-size: 15.5px;
  line-height: 1.7;
  text-align: justify;
  color: #90A4B6;
  margin: 0 auto 36px;
  max-width: 600px;
}

.rx-ot-cta .rx-ot-btn {
  position: relative;
  z-index: 1;
  padding: 16px 36px;
}

/* Parent theme font overrides */
body.rx-design.rx-onsite-page #rx-onsite .rx-ot-hero__title,
body.rx-design.rx-onsite-page #rx-onsite .rx-ot-heading,
body.rx-design.rx-onsite-page #rx-onsite .rx-ot-eyebrow,
body.rx-design.rx-onsite-page #rx-onsite .rx-ot-step__num,
body.rx-design.rx-onsite-page #rx-onsite .rx-ot-table__format,
body.rx-design.rx-onsite-page #rx-onsite .rx-ot-table-card__format,
body.rx-design.rx-onsite-page #rx-onsite .rx-ot-track__count,
body.rx-design.rx-onsite-page #rx-onsite .rx-ot-attend__card-range,
body.rx-design.rx-onsite-page #rx-onsite .rx-ot-bullet__badge,
body.rx-design.rx-onsite-page #rx-onsite .rx-ot-cta__title {
  font-family: 'IBM Plex Serif', Georgia, 'Times New Roman', serif !important;
}

@media (prefers-reduced-motion: reduce) {
  .rx-ot-why__bar-fill--off,
  .rx-ot-why__bar-fill--on {
    animation: none;
  }

  .rx-ot-why__compare-card,
  .rx-ot-role {
    transition: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .rx-ot-hero__inner {
    padding-top: 80px;
    padding-bottom: 72px;
  }

  .rx-ot-why,
  .rx-ot-includes,
  .rx-ot-attend,
  .rx-ot-needs,
  .rx-ot-steps,
  .rx-ot-formats,
  .rx-ot-catalog {
    padding-top: 72px;
  }

  .rx-ot-cta {
    padding: 72px 0 96px;
  }

  .rx-ot-why__split,
  .rx-ot-split,
  .rx-ot-attend__grid,
  .rx-ot-steps__grid,
  .rx-ot-catalog__legend,
  .rx-ot-catalog__tracks {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rx-ot-step {
    padding: 24px 0 0 !important;
  }

  .rx-ot-timeline__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }

  .rx-ot-table,
  .rx-ot-table thead {
    display: none !important;
  }

  .rx-ot-table-cards {
    display: flex !important;
  }

  .rx-ot-why__intro {
    margin-bottom: 40px;
  }

  .rx-ot-why__bars,
  .rx-ot-why__lists {
    grid-template-columns: 1fr;
  }

  .rx-ot-why__bar-col--off,
  .rx-ot-why__list:first-child {
    border-right: none;
    border-bottom: 1px solid var(--rx-ot-rule);
  }

  .rx-ot-attend__roles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .rx-ot-hero__desc {
    font-size: 16px;
  }

  .rx-ot-timeline__grid {
    grid-template-columns: 1fr;
  }

  .rx-ot-attend__card {
    padding: 28px 24px;
  }

  .rx-ot-attend__meter-labels {
    flex-direction: column;
    gap: 4px;
  }
}
