@charset "UTF-8";
/* ============================================================
   CALIFORNIA RBS — "DARK CRAFT-BAR" THEME
   Page-scoped so it shares nothing visual with the green
   food-handler pages. All rules live under .rbs-page.
   ============================================================ */
.rbs-page {
  color: #11161d;
  overflow-x: hidden;
}
.rbs-page h1, .rbs-page h2, .rbs-page h3 {
  font-family: inherit;
}
.rbs-page s {
  text-decoration: line-through;
}
.rbs-page a:focus-visible,
.rbs-page .rbs-cta:focus-visible,
.rbs-page .rbs-es-pill:focus-visible,
.rbs-page .v-expansion-panel-title:focus-visible {
  outline: 3px solid #ffd9a0;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------------- shared CTA button ---------------- */
.rbs-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  background: #C3241B;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
  padding: 1rem 2.25rem;
  min-height: 58px;
  cursor: pointer;
  text-align: center;
  transition: box-shadow 0.2s ease, background 0.2s ease, -webkit-transform 0.12s ease;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease, -webkit-transform 0.12s ease;
}
.rbs-cta strong {
  font-weight: 800;
  color: #fff;
  font-size: 1.5rem;
}
.rbs-cta .fa {
  margin-left: 4px;
  color: #fff;
}
.rbs-cta:hover, .rbs-cta:focus, .rbs-cta:active {
  color: #fff;
  background: #de291f;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(195, 36, 27, 0.4);
}
.rbs-cta:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.rbs-cta--outline {
  background: transparent;
  color: #11161d;
  border: 2px solid rgba(38, 46, 57, 0.55);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.rbs-cta--outline strong, .rbs-cta--outline .fa {
  color: inherit;
}
.rbs-cta--outline:hover, .rbs-cta--outline:focus, .rbs-cta--outline:active {
  background: rgba(38, 46, 57, 0.05);
  color: #11161d;
  border-color: #11161d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.rbs-cta--ghost {
  background: #fff;
  color: #11161d;
}
.rbs-cta--ghost strong, .rbs-cta--ghost .fa {
  color: inherit;
}
.rbs-cta--ghost:hover, .rbs-cta--ghost:focus, .rbs-cta--ghost:active {
  color: #11161d;
  background: #fff;
  box-shadow: none;
}

/* ---------------- shared section heading ---------------- */
.rbs-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.rbs-section-head h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #11161d;
  margin: 6px 0 10px;
}
@media (min-width: 992px) {
  .rbs-section-head h2 {
    font-size: 2.4rem;
  }
}
.rbs-section-head p {
  color: #5a5750;
  font-size: 1.05rem;
  margin: 0;
}

.rbs-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #145355;
}
.rbs-kicker--light {
  color: #ffd9a0;
}

/* ============================================================
   HERO
   ============================================================ */
.rbs-hero {
  position: relative;
  background: #145355;
  color: #f4efe6;
  overflow: hidden;
}
@media (min-width: 1301px) {
  .rbs-hero {
    background: linear-gradient(100deg, #145355 0%, #145355 58%, #082323 74%, #08110f 100%);
  }
}
@media (min-width: 1701px) {
  .rbs-hero {
    background: linear-gradient(100deg, #145355 0%, #145355 47%, #082323 57%, #08110f 100%);
  }
}
.rbs-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: max(24px, 50% - 820px);
  left: auto;
  width: min(46%, 760px);
  background: url("/assets/images/banners/rbs-hero-beer.jpg") no-repeat right 62%;
  background-size: 135% auto;
  -webkit-filter: contrast(1.08) saturate(1.2);
  filter: contrast(1.08) saturate(1.2);
  mix-blend-mode: screen;
  z-index: 0;
}
.rbs-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 83, 85, 0.96) 0%, rgba(20, 83, 85, 0.72) 40%, rgba(20, 83, 85, 0.18) 62%, rgba(20, 83, 85, 0) 80%, rgba(20, 83, 85, 0) 100%);
  z-index: 0;
}
@media (max-width: 1300px) {
  .rbs-hero::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .rbs-hero::after {
    background: linear-gradient(160deg, rgba(20, 83, 85, 0.96) 0%, rgba(20, 83, 85, 0.82) 55%, rgba(20, 83, 85, 0.7) 100%);
  }
}
.rbs-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: auto;
  padding: 56px 1.5rem 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  justify-items: center;
  text-align: center;
}
@media (min-width: 992px) {
  .rbs-hero__inner {
    grid-template-columns: minmax(0, 620px) 1fr;
    align-items: center;
    justify-items: start;
    text-align: left;
    padding: 80px 1.5rem 92px;
  }
}
.rbs-hero__inner > * {
  min-width: 0;
}
.rbs-hero__main {
  max-width: 620px;
  min-width: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .rbs-hero__main .rbs-offer-card {
    margin-inline: auto;
  }
}
.rbs-hero__title {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.08;
  color: #f4efe6;
  margin: 0 0 14px;
}
@media (min-width: 992px) {
  .rbs-hero__title {
    font-size: 3.2rem;
  }
}
.rbs-hero__title-line {
  white-space: normal;
}
@media (min-width: 992px) {
  .rbs-hero__title-line {
    white-space: nowrap;
  }
}
.rbs-hero__sub {
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.72);
  margin: 0 0 26px;
  max-width: 540px;
}

.rbs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fbad22;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .rbs-eyebrow {
    display: none;
  }
}
.rbs-eyebrow .fa {
  color: #fbad22;
}

.rbs-amber {
  color: #fbad22;
}

/* ---- hero offer card ---- */
.rbs-offer-card {
  background: rgba(13, 60, 62, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 26px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}
.rbs-offer-card__top {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.rbs-offer-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.rbs-offer-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.02rem;
  line-height: 1.35;
  text-align: left;
}
.rbs-offer-card__list li:last-child {
  margin-bottom: 0;
}
.rbs-offer-card__list li .fa {
  color: #fbad22;
  margin-top: 4px;
  flex-shrink: 0;
}
.rbs-offer-card .rbs-cta {
  width: 100%;
  color: white;
}
.rbs-offer-card__fine {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(244, 239, 230, 0.72);
}
.rbs-offer-card__fine strong {
  color: #f4efe6;
}

.rbs-price {
  display: flex;
  flex-direction: column;
}
.rbs-price__amount {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.rbs-price__compare {
  font-size: 0.95rem;
  color: rgba(244, 239, 230, 0.72);
  margin-top: 4px;
}
.rbs-price__compare s {
  color: rgba(244, 239, 230, 0.72);
}

.rbs-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.rbs-lang-toggle__option {
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  color: #11161d;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.rbs-lang-toggle__option:hover {
  color: #C3241B;
  text-decoration: none;
}
.rbs-lang-toggle__option.is-active {
  background: #C3241B;
  color: #fff;
  cursor: default;
}

.rbs-es-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #f4efe6;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
}
.rbs-es-pill .fa {
  color: #fbad22;
}
.rbs-es-pill:hover {
  color: #fbad22;
  border-color: rgba(224, 166, 75, 0.5);
  text-decoration: none;
}

/* ---- hero proof rail ---- */
.rbs-hero__rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 991px) {
  .rbs-hero__rail {
    display: none;
  }
}

.rbs-rail__badge {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 18px;
  width: 264px;
  align-self: flex-start;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}
.rbs-rail__badge img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 992px) {
  .rbs-rail__badge {
    align-self: flex-start;
    margin-right: auto;
  }
}
.rbs-rail__badge--mobile {
  margin: 4px auto 28px;
}
@media (min-width: 992px) {
  .rbs-rail__badge--mobile {
    display: none;
  }
}
@media (max-width: 991px) {
  .rbs-rail__badge--desktop {
    display: none;
  }
}

.rbs-rail__chips {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(11, 101, 180, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px;
  margin: 0 auto;
  max-width: 325px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.rbs-rail__chips li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1rem;
  color: #f4efe6;
}
.rbs-rail__chips li .fa {
  color: #fbad22;
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================================
   TRUST BAR (dark)
   ============================================================ */
.rbs-trustbar {
  background: #0f3f40;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.rbs-trustbar__inner {
  max-width: 1280px;
  margin: auto;
  padding: 18px 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .rbs-trustbar__inner {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
  }
}
.rbs-trustbar__inner span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4efe6;
  font-weight: 700;
  font-size: 1.05rem;
}
.rbs-trustbar__inner span .fa {
  color: #fbad22;
}

/* ============================================================
   PASS-RATE STRIP (amber)
   ============================================================ */
.rbs-passrate {
  background: linear-gradient(120deg, #fbad22 0%, #ffc85a 100%);
  color: #1c130a;
}
.rbs-passrate__inner {
  max-width: 1100px;
  margin: auto;
  padding: 30px 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
@media (min-width: 768px) {
  .rbs-passrate__inner {
    flex-direction: row;
    gap: 28px;
    text-align: left;
    justify-content: center;
  }
}
.rbs-passrate__figure {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
}
.rbs-passrate__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rbs-passrate__copy strong {
  font-size: 1.3rem;
  font-weight: 800;
}
.rbs-passrate__copy span {
  font-size: 1rem;
  opacity: 0.85;
}

/* ============================================================
   BUNDLE / CROSS-SELL (cream)
   ============================================================ */
.rbs-bundle {
  background: #e3e6eb;
  padding: 64px 0;
}
.rbs-bundle__inner {
  max-width: 1000px;
  margin: auto;
  padding: 0 1.5rem;
}
.rbs-bundle__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 768px) {
  .rbs-bundle__grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.rbs-bundle-card {
  position: relative;
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  max-width: 400px;
  width: 100%;
  margin-inline: auto;
}
.rbs-bundle-card--featured {
  box-shadow: 0 16px 36px rgba(17, 22, 29, 0.12);
}
.rbs-bundle-card__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
  min-height: 200px;
}
@media (max-width: 991px) {
  .rbs-bundle-card__top {
    gap: 14px;
    min-height: 0;
  }
}
@media (max-width: 359px) {
  .rbs-bundle-card__top {
    flex-direction: column;
  }
}
.rbs-bundle-card__art {
  width: auto;
  height: auto;
  max-height: 160px;
  max-width: 46%;
  border: 1px solid #bbb;
  border-radius: 6px;
  background: #fff;
}
.rbs-bundle-card__art:only-child {
  max-height: 215px;
  max-width: 78%;
}
@media (max-width: 359px) {
  .rbs-bundle-card__art {
    max-width: 70%;
  }
  .rbs-bundle-card__art:only-child {
    max-width: 78%;
  }
}
.rbs-bundle-card__plus {
  flex: none;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #11161d;
}
.rbs-bundle-card__tag {
  align-self: center;
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 1rem;
  color: #C3241B;
  background: #fff;
  border: 1px solid #C3241B;
  border-radius: 999px;
  padding: 8px 22px;
  text-align: center;
}
.rbs-bundle-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.rbs-bundle-card__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  line-height: 1.4;
}
.rbs-bundle-card__list li .fa {
  color: #2ea041;
  font-size: 1.25rem;
  margin-top: 2px;
}
.rbs-bundle-card__note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 14px;
  margin: 0;
  font-size: 0.82rem;
  color: #6f6a61;
  text-align: center;
}
.rbs-bundle-card .rbs-cta {
  width: 100%;
}

/* ============================================================
   STEPS (white)
   ============================================================ */
.rbs-steps {
  background: #fff;
  padding: 64px 0;
}
.rbs-steps__inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
}
.rbs-steps__track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 26px 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .rbs-steps__track {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .rbs-steps__track {
    grid-template-columns: repeat(4, 1fr);
  }
}
.rbs-steps__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
}
.rbs-steps__cta .rbs-cta {
  max-width: 360px;
  width: 100%;
}
.rbs-steps__time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #5a5750;
}
.rbs-steps__time .fa {
  color: #145355;
}

.rbs-step {
  position: relative;
  background: #eee;
  border: 1px solid #bbb;
  border-radius: 16px;
  padding: 30px 22px 24px;
}
.rbs-step__num {
  position: absolute;
  top: -18px;
  left: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, #1e7b7e, #145355);
}
.rbs-step h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 12px 0 8px;
  color: #11161d;
}
.rbs-step p {
  font-size: 0.96rem;
  line-height: 1.45;
  color: #5a5750;
  margin: 0;
}
.rbs-step p a {
  color: #145355;
  text-decoration: underline;
}

/* ============================================================
   ABOUT THE TRAINING (cream)
   ============================================================ */
.rbs-about {
  background: #e3e6eb;
  padding: 64px 0;
}
.rbs-about__inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 1.5rem;
}
.rbs-about__head {
  text-align: center;
  margin-bottom: 34px;
}
.rbs-about__head h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #11161d;
  margin: 6px 0 0;
}
@media (min-width: 992px) {
  .rbs-about__head h2 {
    font-size: 2.3rem;
  }
}
.rbs-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 992px) {
  .rbs-about__grid {
    grid-template-columns: 1.1fr 1.2fr 0.9fr;
    align-items: start;
  }
}
.rbs-about__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rbs-about__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  line-height: 1.4;
}
.rbs-about__list li .fa {
  color: #145355;
  margin-top: 4px;
}
.rbs-about__list li a {
  color: #145355;
  text-decoration: underline;
}
.rbs-about__copy {
  font-size: 1.02rem;
  line-height: 1.6;
  color: #4f4c45;
}
.rbs-about__copy p {
  margin: 0;
}
@media (min-width: 992px) {
  .rbs-about__copy {
    align-self: center;
  }
}

.rbs-cost-card {
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}
.rbs-cost-card__title {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: #145355;
  margin-bottom: 14px;
}
.rbs-cost-card__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #e2dccf;
  font-size: 1rem;
}
.rbs-cost-card__row--total {
  border-bottom: none;
  border-top: 2px solid #11161d;
  margin-top: 6px;
  padding-top: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  color: #11161d;
}
.rbs-cost-card__note {
  font-size: 0.8rem;
  color: #6f6a61;
  margin: 12px 0 0;
}

/* ============================================================
   FAQ (white)
   ============================================================ */
.rbs-faq {
  background: #fff;
  padding: 60px 0;
}
.rbs-faq__inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 1.5rem;
}
.rbs-faq__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .rbs-faq__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }
}
.rbs-faq__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rbs-faq .v-expansion-panel {
  border-radius: 12px !important;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.rbs-faq .v-expansion-panel-title {
  font-weight: 700;
  font-size: 1.02rem;
  color: #11161d;
  min-height: 62px;
}
.rbs-faq .v-expansion-panel-title__overlay {
  opacity: 0;
}
.rbs-faq .v-expansion-panel-text {
  font-size: 0.97rem;
  line-height: 1.5;
}
.rbs-faq .v-expansion-panel-text a {
  color: #145355;
}

/* ============================================================
   EMPLOYER / GROUP BAND (plum)
   ============================================================ */
.rbs-employer {
  background: linear-gradient(120deg, #0a2b2c 0%, #11161d 100%);
  color: #f4efe6;
}
.rbs-employer__inner {
  max-width: 1100px;
  margin: auto;
  padding: 56px 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .rbs-employer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}
.rbs-employer__copy h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 6px 0 8px;
  color: #f4efe6;
}
.rbs-employer__copy p {
  color: rgba(244, 239, 230, 0.72);
  margin: 0;
  max-width: 560px;
}
.rbs-employer .rbs-cta {
  flex-shrink: 0;
}

/* ============================================================
   FINAL CTA BAND (dark + image)
   ============================================================ */
.rbs-finalcta {
  position: relative;
  background: #145355;
  color: #f4efe6;
  overflow: hidden;
  border-top: 1px solid rgba(224, 166, 75, 0.28);
}
.rbs-finalcta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 83, 85, 0.95) 0%, rgba(20, 83, 85, 0.6) 100%), url("/assets/images/banners/rbs-hero-beer.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.rbs-finalcta__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: auto;
  padding: 56px 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .rbs-finalcta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}
.rbs-finalcta__inner h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: #f4efe6;
}
.rbs-finalcta__inner p {
  color: rgba(244, 239, 230, 0.72);
  margin: 0;
  max-width: 560px;
}
.rbs-finalcta .rbs-cta {
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PFS (white)
   ============================================================ */
.rbs-aboutpfs {
  background: white;
  padding: 60px 0;
}
.rbs-aboutpfs__inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 992px) {
  .rbs-aboutpfs__inner {
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
  }
}
.rbs-aboutpfs__img img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.rbs-aboutpfs__copy h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #11161d;
  margin: 6px 0 12px;
}
.rbs-aboutpfs__copy p {
  color: #4f4c45;
  line-height: 1.6;
  margin: 0 0 14px;
}

/*# sourceMappingURL=california-responsible-alcohol-service-training.css.map*/