.sds-refresher-page {
  overflow: hidden;
  background: #fff;
}

.sds-refresher-eyebrow {
  margin: 0 0 12px;
  color: var(--sds-red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sds-refresher-eyebrow--blue {
  color: var(--sds-blue);
}

.sds-refresher-hero {
  padding: 72px 0 78px;
  background:
    radial-gradient(circle at 88% 10%, rgba(33, 118, 189, .09), transparent 25%),
    linear-gradient(135deg, #fff 0%, #f8fbff 60%, #fff8f8 100%);
  border-bottom: 1px solid #e7edf3;
}

.sds-refresher-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr);
  align-items: center;
  gap: clamp(46px, 6vw, 82px);
}

.sds-refresher-hero__content h1 {
  max-width: 720px;
  margin: 0;
  color: var(--sds-heading);
  font-size: clamp(44px, 4.8vw, 69px);
  font-weight: 760;
  line-height: 1.03;
  letter-spacing: -.047em;
}

.sds-refresher-hero__lead {
  max-width: 690px;
  margin: 20px 0 0;
  color: #4e5d6b;
  font-size: 17px;
  line-height: 1.72;
}

.sds-refresher-hero__points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 27px 0 0;
  padding: 0;
}

.sds-refresher-hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--sds-heading);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.sds-refresher-hero__points li > span {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  background: #e8f4fd;
  color: var(--sds-blue);
}

.sds-refresher-hero__points svg {
  width: 13px;
  height: 13px;
}

.sds-refresher-hero__actions,
.sds-refresher-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sds-refresher-hero__actions {
  margin-top: 30px;
}

.sds-refresher-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 23px;
  border: 2px solid var(--sds-blue);
  border-radius: 9px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: none;
}

.sds-refresher-button svg {
  width: 18px;
  height: 18px;
}

.sds-refresher-button--primary,
.sds-refresher-button--cta {
  border-color: var(--sds-red);
  background: var(--sds-red);
  color: #fff;
}

.sds-refresher-button--secondary {
  background: #fff;
  color: var(--sds-blue);
}

.sds-refresher-button--outline {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.sds-refresher-button--primary:hover,
.sds-refresher-button--primary:focus-visible,
.sds-refresher-button--cta:hover,
.sds-refresher-button--cta:focus-visible {
  border-color: var(--sds-red);
  background: var(--sds-red);
  color: #fff;
}

.sds-refresher-button--secondary:hover,
.sds-refresher-button--secondary:focus-visible {
  border-color: var(--sds-blue);
  background: #fff;
  color: var(--sds-blue);
}

.sds-refresher-button--outline:hover,
.sds-refresher-button--outline:focus-visible {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.sds-refresher-hero__media {
  position: relative;
  min-width: 0;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #eaf1f7;
}

.sds-refresher-hero__media img {
  width: 100%;
  height: 650px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.sds-refresher-hero__media figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  min-width: 220px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1px 12px;
  padding: 14px 17px;
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  color: var(--sds-heading);
}

.sds-refresher-hero__media figcaption > span {
  grid-row: 1 / 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f4fd;
  color: var(--sds-blue);
}

.sds-refresher-hero__media figcaption svg {
  width: 23px;
  height: 23px;
}

.sds-refresher-hero__media figcaption strong {
  font-size: 14px;
  line-height: 1.3;
}

.sds-refresher-hero__media figcaption small {
  color: #61707e;
  font-size: 11px;
}

.sds-refresher-benefits,
.sds-refresher-learning,
.sds-refresher-journey,
.sds-refresher-pricing,
.sds-refresher-choice,
.sds-refresher-faq {
  padding: 82px 0 88px;
}

.sds-refresher-benefits,
.sds-refresher-pricing,
.sds-refresher-faq {
  background: #fff;
}

.sds-refresher-learning,
.sds-refresher-choice {
  background: #f7f9fc;
  border-block: 1px solid #e7edf3;
}

.sds-refresher-journey {
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.sds-refresher-section-header {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.sds-refresher-section-header h2,
.sds-refresher-faq__intro h2,
.sds-refresher-cta h2 {
  margin: 0;
  color: var(--sds-heading);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 735;
  line-height: 1.1;
  letter-spacing: -.036em;
}

.sds-refresher-section-header > p:last-child {
  max-width: 760px;
  margin: 17px auto 0;
  color: #566473;
  font-size: 16px;
  line-height: 1.68;
}

.sds-refresher-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sds-refresher-benefit-card {
  min-height: 275px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 27px 20px 24px;
  border: 1px solid #dce5ed;
  border-top: 4px solid var(--sds-blue);
  border-radius: 15px;
  background: #fff;
  text-align: center;
}

.sds-refresher-benefit-card--red {
  border-top-color: var(--sds-red);
}

.sds-refresher-benefit-card__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 19px;
  border-radius: 50%;
  background: #eaf4fd;
  color: var(--sds-blue);
}

.sds-refresher-benefit-card--red .sds-refresher-benefit-card__icon {
  background: #fff0f0;
  color: var(--sds-red);
}

.sds-refresher-benefit-card__icon svg {
  width: 34px;
  height: 34px;
}

.sds-refresher-benefit-card h3,
.sds-refresher-learning-card h3,
.sds-refresher-step h3,
.sds-refresher-choice-card h3 {
  margin: 0;
  color: var(--sds-heading);
  font-size: 18px;
  font-weight: 720;
  line-height: 1.3;
}

.sds-refresher-benefit-card p {
  margin: 10px 0 0;
  color: #5a6876;
  font-size: 13.5px;
  line-height: 1.6;
}

.sds-refresher-learning__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sds-refresher-learning-card {
  min-height: 400px;
  padding: 28px;
  border: 1px solid #dce5ed;
  border-radius: 16px;
  background: #fff;
}

.sds-refresher-learning-card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #e9f4fd;
  color: var(--sds-blue);
}

.sds-refresher-learning-card__icon svg {
  width: 30px;
  height: 30px;
}

.sds-refresher-learning-card h3 {
  font-size: 21px;
}

.sds-refresher-learning-card ul {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
}

.sds-refresher-learning-card li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: flex-start;
  gap: 10px;
  color: #526170;
  font-size: 13px;
  line-height: 1.55;
}

.sds-refresher-learning-card li > span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  background: #edf6ff;
  color: var(--sds-blue);
}

.sds-refresher-learning-card li svg {
  width: 12px;
  height: 12px;
}

.sds-refresher-journey__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sds-refresher-step {
  position: relative;
  min-height: 230px;
  padding: 28px 22px 24px;
  border: 1px solid #dce5ed;
  border-radius: 15px;
  background: #fff;
}

.sds-refresher-step__number {
  display: block;
  margin-bottom: 29px;
  color: rgba(33,118,189,.22);
  font-size: 58px;
  font-weight: 800;
  line-height: .9;
}

.sds-refresher-step:nth-child(even) .sds-refresher-step__number {
  color: rgba(217,13,10,.18);
}

.sds-refresher-step p,
.sds-refresher-choice-card p {
  margin: 9px 0 0;
  color: #596776;
  font-size: 13px;
  line-height: 1.58;
}

.sds-refresher-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.sds-refresher-price-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px 22px 22px;
  border: 2px solid var(--sds-blue);
  border-radius: 17px;
  background: #fff;
  text-align: center;
}

.sds-refresher-price-card--red {
  border-color: var(--sds-red);
}

.sds-refresher-price-card h3 {
  margin: 0;
  color: var(--sds-heading);
  font-size: 17px;
  line-height: 1.3;
}

.sds-refresher-price-card > strong {
  display: block;
  margin-top: 22px;
  color: var(--sds-blue);
  font-size: 45px;
  font-weight: 780;
  line-height: 1;
}

.sds-refresher-price-card--red > strong {
  color: var(--sds-red);
}

.sds-refresher-price-card p {
  margin: 18px 0 24px;
  color: #5b6875;
  font-size: 13px;
  line-height: 1.58;
}

.sds-refresher-price-card a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--sds-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
}

.sds-refresher-price-card--red a {
  background: var(--sds-red);
}

.sds-refresher-price-card a:hover,
.sds-refresher-price-card a:focus-visible {
  color: #fff;
}

.sds-refresher-choice__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sds-refresher-choice-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 17px;
  min-height: 145px;
  padding: 22px;
  border: 1px solid #dce5ed;
  border-radius: 14px;
  background: #fff;
}

.sds-refresher-choice-card > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf4fd;
  color: var(--sds-blue);
}

.sds-refresher-choice-card:nth-child(even) > span {
  background: #fff0f0;
  color: var(--sds-red);
}

.sds-refresher-choice-card svg {
  width: 25px;
  height: 25px;
}

.sds-refresher-choice-card h3 {
  font-size: 16px;
}

.sds-refresher-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  margin-top: 28px;
  padding: 30px;
  border: 1px solid #d8e4ee;
  border-radius: 16px;
  background: linear-gradient(110deg, #fff 0%, #edf6ff 100%);
}

.sds-refresher-compare h3 {
  margin: 0;
  color: var(--sds-heading);
  font-size: 26px;
  line-height: 1.25;
}

.sds-refresher-compare p:last-child {
  max-width: 780px;
  margin: 10px 0 0;
  color: #586675;
  font-size: 14px;
  line-height: 1.62;
}

.sds-refresher-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 56px;
}

.sds-refresher-faq__intro {
  position: sticky;
  top: 120px;
}

.sds-refresher-faq__intro > p:last-child {
  margin: 17px 0 0;
  color: #566473;
  font-size: 15px;
  line-height: 1.67;
}

.sds-refresher-faq__list {
  display: grid;
  gap: 11px;
}

.sds-refresher-faq-item {
  border: 1px solid #dce5ed;
  border-radius: 13px;
  background: #fff;
  overflow: hidden;
}

.sds-refresher-faq-item summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: var(--sds-heading);
  font-size: 15px;
  font-weight: 680;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}

.sds-refresher-faq-item summary::-webkit-details-marker {
  display: none;
}

.sds-refresher-faq-item summary i {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: #eaf4fd;
}

.sds-refresher-faq-item summary i::before,
.sds-refresher-faq-item summary i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 10px;
  background: var(--sds-blue);
  transform: translate(-50%, -50%);
}

.sds-refresher-faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.sds-refresher-faq-item[open] summary i::after {
  display: none;
}

.sds-refresher-faq-item > div {
  padding: 0 18px 18px;
}

.sds-refresher-faq-item p {
  margin: 0;
  color: #586675;
  font-size: 13px;
  line-height: 1.65;
}

.sds-refresher-cta {
  padding: 0 0 78px;
  background: #fff;
}

.sds-refresher-cta__inner {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
  padding: 48px;
  border-radius: 20px;
  background: linear-gradient(115deg, #07477c 0%, #0b5e9e 55%, #073f70 100%);
}

.sds-refresher-cta__inner::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -145px;
  width: 380px;
  height: 380px;
  border: 60px solid rgba(255,255,255,.07);
  border-radius: 50%;
}

.sds-refresher-cta__inner > * {
  position: relative;
  z-index: 1;
}

.sds-refresher-cta h2 {
  color: #fff;
}

.sds-refresher-cta p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 1160px) {
  .sds-refresher-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .92fr);
    gap: 42px;
  }

  .sds-refresher-hero__media img {
    height: 600px;
  }

  .sds-refresher-benefits__grid,
  .sds-refresher-pricing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sds-refresher-benefit-card {
    min-height: 240px;
  }

  .sds-refresher-choice__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .sds-refresher-hero {
    padding-top: 54px;
  }

  .sds-refresher-hero__grid {
    grid-template-columns: 1fr;
  }

  .sds-refresher-hero__content {
    text-align: center;
  }

  .sds-refresher-hero__content h1,
  .sds-refresher-hero__lead {
    margin-inline: auto;
  }

  .sds-refresher-hero__points {
    max-width: 720px;
    margin-inline: auto;
    text-align: left;
  }

  .sds-refresher-hero__actions {
    justify-content: center;
  }

  .sds-refresher-hero__media img {
    height: 590px;
  }

  .sds-refresher-learning__grid {
    grid-template-columns: 1fr;
  }

  .sds-refresher-learning-card {
    min-height: 0;
  }

  .sds-refresher-journey__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sds-refresher-faq__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sds-refresher-faq__intro {
    position: static;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .sds-refresher-cta__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .sds-refresher-hero {
    padding: 44px 0 54px;
  }

  .sds-refresher-hero__grid,
  .sds-refresher-benefits > .sds-container,
  .sds-refresher-learning > .sds-container,
  .sds-refresher-journey > .sds-container,
  .sds-refresher-pricing > .sds-container,
  .sds-refresher-choice > .sds-container,
  .sds-refresher-faq > .sds-container,
  .sds-refresher-cta > .sds-container {
    width: min(100% - 20px, var(--sds-container));
  }

  .sds-refresher-hero__content h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .sds-refresher-hero__lead {
    font-size: 14px;
    line-height: 1.65;
  }

  .sds-refresher-hero__points {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sds-refresher-hero__actions,
  .sds-refresher-cta__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .sds-refresher-button {
    width: 100%;
    padding-inline: 10px;
    font-size: 12px;
  }

  .sds-refresher-hero__media {
    border-radius: 17px;
  }

  .sds-refresher-hero__media img {
    height: 430px;
  }

  .sds-refresher-hero__media figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: 0;
  }

  .sds-refresher-benefits,
  .sds-refresher-learning,
  .sds-refresher-journey,
  .sds-refresher-pricing,
  .sds-refresher-choice,
  .sds-refresher-faq {
    padding-block: 56px;
  }

  .sds-refresher-section-header {
    margin-bottom: 28px;
  }

  .sds-refresher-section-header h2,
  .sds-refresher-faq__intro h2,
  .sds-refresher-cta h2 {
    font-size: 31px;
  }

  .sds-refresher-section-header > p:last-child,
  .sds-refresher-faq__intro > p:last-child {
    font-size: 14px;
    line-height: 1.6;
  }

  .sds-refresher-benefits__grid,
  .sds-refresher-pricing__grid,
  .sds-refresher-choice__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .sds-refresher-benefit-card {
    min-height: 245px;
    padding: 20px 10px 18px;
  }

  .sds-refresher-benefit-card__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
  }

  .sds-refresher-benefit-card__icon svg {
    width: 27px;
    height: 27px;
  }

  .sds-refresher-benefit-card h3 {
    font-size: 13px;
  }

  .sds-refresher-benefit-card p {
    font-size: 11px;
    line-height: 1.48;
  }

  .sds-refresher-learning__grid {
    gap: 11px;
  }

  .sds-refresher-learning-card {
    padding: 20px 16px;
  }

  .sds-refresher-learning-card h3 {
    font-size: 17px;
  }

  .sds-refresher-learning-card li {
    font-size: 12px;
  }

  .sds-refresher-journey__grid {
    gap: 10px;
  }

  .sds-refresher-step {
    min-height: 220px;
    padding: 20px 13px;
  }

  .sds-refresher-step__number {
    margin-bottom: 23px;
    font-size: 46px;
  }

  .sds-refresher-step h3 {
    font-size: 14px;
  }

  .sds-refresher-step p {
    font-size: 11.5px;
    line-height: 1.5;
  }

  .sds-refresher-price-card {
    min-height: 300px;
    padding: 22px 11px 14px;
  }

  .sds-refresher-price-card h3 {
    font-size: 13px;
  }

  .sds-refresher-price-card > strong {
    margin-top: 18px;
    font-size: 34px;
  }

  .sds-refresher-price-card p {
    font-size: 11px;
  }

  .sds-refresher-price-card a {
    min-height: 44px;
    padding-inline: 8px;
    font-size: 11px;
  }

  .sds-refresher-choice-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 210px;
    padding: 18px 10px;
    text-align: center;
  }

  .sds-refresher-choice-card h3 {
    font-size: 13px;
  }

  .sds-refresher-choice-card p {
    font-size: 11px;
    line-height: 1.5;
  }

  .sds-refresher-compare {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 18px;
    text-align: center;
  }

  .sds-refresher-compare h3 {
    font-size: 23px;
  }

  .sds-refresher-compare p:last-child {
    font-size: 12px;
  }

  .sds-refresher-faq-item summary {
    min-height: 64px;
    padding: 14px;
    font-size: 13px;
  }

  .sds-refresher-faq-item > div {
    padding: 0 14px 15px;
  }

  .sds-refresher-faq-item p {
    font-size: 12px;
  }

  .sds-refresher-cta {
    padding-bottom: 54px;
  }

  .sds-refresher-cta__inner {
    min-height: 0;
    padding: 34px 18px;
    text-align: center;
  }

  .sds-refresher-cta p {
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .sds-refresher-hero__media img {
    height: 390px;
  }

  .sds-refresher-hero__actions,
  .sds-refresher-cta__actions {
    grid-template-columns: 1fr;
  }

  .sds-refresher-benefit-card {
    min-height: 255px;
    padding-inline: 8px;
  }

  .sds-refresher-choice-card {
    min-height: 218px;
    padding-inline: 8px;
  }
}
