
  .certification-page,
  .renewal-landing--certification,
  .certification-course-layout,
  .elementor-widget[class*="elementor-widget-rwl_cert_"] {
    --renewal-layout-max: var(--layout-max, 1300px);
  }

  /* Sentence case: never capitalize-every-word on any heading or title element */
  :is(h1, h2, h3, h4, h5, h6, [class*="__title"], [class*="__heading"]) {
    text-transform: none !important;
  }

  .renewal-cert-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 100svh;
    background: #020617;
  }

  .renewal-cert-hero__carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .renewal-cert-hero__carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .renewal-cert-hero__carousel-item {
    position: absolute;
    inset: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    animation: renewal-hero-fade 25s infinite;
    will-change: opacity;
  }

  .renewal-cert-hero__carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .renewal-cert-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgb(15 23 42 / 0.78) 0%, rgb(15 23 42 / 0.68) 36%, rgb(15 23 42 / 0.36) 58%, rgb(15 23 42 / 0.08) 78%),
      linear-gradient(180deg, rgb(2 6 23 / 0.34) 0%, rgb(15 23 42 / 0.48) 100%);
  }

  .renewal-cert-hero__carousel-item:nth-child(1) { animation-delay: 0s; }
  .renewal-cert-hero__carousel-item:nth-child(2) { animation-delay: 5s; }
  .renewal-cert-hero__carousel-item:nth-child(3) { animation-delay: 10s; }
  .renewal-cert-hero__carousel-item:nth-child(4) { animation-delay: 15s; }
  .renewal-cert-hero__carousel-item:nth-child(5) { animation-delay: 20s; }
  .renewal-cert-hero__carousel-item:nth-child(n + 6) { display: none; }

  @keyframes renewal-hero-fade {
    0%,
    18% {
      opacity: 1;
    }

    22%,
    100% {
      opacity: 0;
    }
  }

  .renewal-cert-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(38% 28% at 14% 18%, rgb(96 165 250 / 0.2) 0%, transparent 74%),
      radial-gradient(34% 24% at 86% 80%, rgb(56 189 248 / 0.15) 0%, transparent 75%);
    pointer-events: none;
  }

  .renewal-cert-hero__inner {
    position: relative;
    z-index: 2;
    width: min(100%, var(--renewal-layout-max, 1300px));
    margin: 0 auto;
    min-height: 100svh;
    padding: calc(5rem + 14px) 0 2.4rem 0;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 0;
  }

  .renewal-cert-hero__content {
    max-width: 41rem;
    margin: 0;
  }

  .renewal-cert-hero__title {
    margin: 0;
    font-size: clamp(2.35rem, 5vw, 4.35rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #f5f8fd;
  }

  .renewal-cert-hero__title span {
    color: #69dc82;
  }

  .renewal-cert-hero__lead {
    margin: 0.9rem 0 0;
    max-width: 38rem;
    font-size: clamp(1.02rem, 1.65vw, 1.16rem);
    line-height: 1.7;
    color: #e2e8f0;
  }

  .renewal-cert-hero__cta {
    margin-top: 1.2rem;
  }

  .renewal-cert-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    background: #69dc82;
    color: #fff;
    font-family: Area, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.1;
    text-decoration: none;
    box-shadow: 0 12px 24px rgb(15 23 42 / 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  }

  /* Unified button baseline across the page */
  :is(.renewal-cert-hero__button, .renewal-dates__button, .renewal-agenda__cta) {
    font-family: var(--font-sans, Area), Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.2;
    min-height: 2.9rem;
    border-radius: 999px;
  }

  /* Cap running/body text at 16px across Renewal sections */
  #content :where([class^="renewal-"], [class*=" renewal-"]) :is(
    p,
    li,
    [class*="__lead"],
    [class*="__copy"],
    [class*="__bio"],
    [class*="__role"],
    [class*="__text"],
    [class*="__item"],
    [class*="__line"],
    [class*="__desc"],
    [class*="__description"]
  ) {
    font-size: clamp(0.95rem, 1vw, 1rem) !important;
  }

  /* Unified eyebrow/kicker visual language */
  :is(
    .renewal-mission__eyebrow,
    .renewal-learning__eyebrow,
    .renewal-instructors__kicker,
    .renewal-agenda__kicker
  ) {
    margin: 0 0 0.55rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    padding: 0.28rem 0.68rem !important;
    border-radius: 999px !important;
    border: 1px solid currentColor !important;
    background: rgb(255 255 255 / 0.12) !important;
    font-family: var(--font-sans, Area), Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .renewal-mission__eyebrow,
  .renewal-learning__eyebrow,
  .renewal-agenda__kicker {
    color: #2563eb !important;
    background: rgb(37 99 235 / 0.08) !important;
    border-color: rgb(37 99 235 / 0.28) !important;
  }

  .renewal-instructors__kicker {
    color: rgb(226 232 240 / 0.94) !important;
    background: rgb(148 163 184 / 0.14) !important;
    border-color: rgb(226 232 240 / 0.3) !important;
  }

  /* Remove remaining uppercase labels in Renewal blocks */
  :is(
    .renewal-mission__stat-label,
    .renewal-days__highlights strong,
    .renewal-learning__media-caption,
    .renewal-instructors__role
  ) {
    text-transform: none !important;
    font-weight: 500 !important;
  }

  /* Standard vertical spacing for all non-hero sections */
  :is(
    .renewal-mission__inner,
    .renewal-pellets__inner,
    .renewal-learning__inner,
    .renewal-instructors__inner,
    .renewal-agenda__inner,
    .renewal-advantages__inner,
    .renewal-enroll__inner
  ) {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }

  .renewal-cert-hero__button:hover,
  .renewal-cert-hero__button:focus {
    background: #4fcf6b;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgb(15 23 42 / 0.28);
    color: #fff;
  }

  .renewal-mission {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(120% 120% at 0% 0%, rgb(59 130 246 / 0.1) 0%, rgb(59 130 246 / 0) 45%),
      radial-gradient(110% 110% at 100% 0%, rgb(14 165 233 / 0.12) 0%, rgb(14 165 233 / 0) 48%),
      linear-gradient(180deg, #f8fbff 0%, #eef4ff 62%, #edf5ff 100%);
    border-top: 1px solid rgb(191 219 254 / 0.6);
  }

  .renewal-mission__inner {
    width: min(100%, var(--renewal-layout-max, 1300px));
    margin: 0 auto;
    padding: clamp(2.2rem, 4.6vw, 3.6rem) 0 clamp(2.1rem, 4.3vw, 3.3rem) 0;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: clamp(1.15rem, 2.4vw, 1.8rem);
  }

  .renewal-mission__copy {
    max-width: 62rem;
    text-align: center;
  }

  .renewal-mission__eyebrow {
    margin: 0 0 0.55rem;
    font-family: Area, Arial, sans-serif !important;
    font-size: clamp(0.9rem, 1.05vw, 0.98rem);
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #64748b;
  }

  .renewal-mission__title {
    margin: 0;
    max-width: 54rem;
    font-family: "Ivy Mode", Georgia, serif !important;
    font-size: clamp(2.1rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.03;
    letter-spacing: -0.02em;
    color: #0f172a;
    text-wrap: balance;
  }

  .renewal-mission__lead {
    margin: 0.9rem auto 0;
    max-width: 45rem;
    font-family: Area, Arial, sans-serif !important;
    font-size: clamp(1rem, 1.08vw, 1.06rem);
    font-weight: 400;
    line-height: 1.58;
    color: #475569;
  }

  .renewal-mission__stats {
    margin: 0;
    width: min(100%, 780px);
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: clamp(0.65rem, 1.5vw, 1rem);
  }

  .renewal-mission__stat {
    min-width: clamp(170px, 22vw, 232px);
    padding: 0.9rem 1rem 0.95rem;
    text-align: center;
    border: 1px solid rgb(147 197 253 / 0.42);
    border-radius: 0.95rem;
    background: linear-gradient(180deg, rgb(255 255 255 / 0.86) 0%, rgb(239 246 255 / 0.92) 100%);
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 0.72),
      0 16px 28px -24px rgb(30 64 175 / 0.42);
  }

  .renewal-mission__stat-value {
    margin: 0;
    font-family: Area, Arial, sans-serif;
    font-size: clamp(2rem, 2.7vw, 2.6rem);
    font-weight: 400;
    line-height: 0.98;
    color: #0073ff;
  }

  .renewal-mission__stat-label {
    margin: 0.24rem 0 0;
    font-family: Area, Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
    color: #1e293b;
  }

  /* DS2 typography lock for mission section */
  .renewal-mission .renewal-mission__title {
    font-family: var(--font-heading, "Ivy Mode"), Georgia, serif !important;
    font-weight: 300 !important;
  }

  .renewal-mission .renewal-mission__eyebrow,
  .renewal-mission .renewal-mission__lead,
  .renewal-mission .renewal-mission__stat-value,
  .renewal-mission .renewal-mission__stat-label {
    font-family: var(--font-sans, Area), Arial, sans-serif !important;
  }

  .renewal-pellets {
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    border-top: 1px solid rgb(226 232 240 / 0.68);
  }

  .renewal-pellets__inner {
    width: min(100%, var(--renewal-layout-max, 1300px));
    margin: 0 auto;
    padding: clamp(2.1rem, 4.6vw, 3.4rem) 0 clamp(2.2rem, 4.7vw, 3.6rem) 0;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    align-items: center;
    gap: clamp(1.05rem, 2.4vw, 1.8rem);
  }

  .renewal-pellets__content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    justify-content: center;
  }

  .renewal-pellets__title {
    margin: 0;
    max-width: 32rem;
    font-family: "Ivy Mode", Georgia, serif;
    font-size: clamp(2.1rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: #0f172a;
  }

  .renewal-pellets__title span {
    color: #0073ff;
  }

  .renewal-pellets__copy {
    margin-top: 0.85rem;
    max-width: 31rem;
    font-family: Area, Arial, sans-serif;
    font-size: 0.96rem;
    line-height: 1.45;
    color: #334155;
  }

  .renewal-pellets__copy p {
    margin: 0 0 0.48rem;
  }

  .renewal-pellets__copy p:last-child {
    margin-bottom: 0;
  }

  .renewal-pellets__card {
    margin-top: 1rem;
    max-width: 31rem;
    padding: 1rem 1rem 0.92rem;
    border-radius: 1.15rem;
    border: 1px solid rgb(59 130 246 / 0.18);
    background: linear-gradient(180deg, rgb(255 255 255 / 0.95) 0%, rgb(247 251 255 / 0.95) 100%);
    box-shadow: 0 24px 38px -30px rgb(15 23 42 / 0.3);
  }

  .renewal-pellets__card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.72rem;
  }

  .renewal-pellets__card li {
    position: relative;
    margin: 0;
    padding: 0 0 0 1.1rem;
    font-family: Area, Arial, sans-serif;
    font-size: clamp(0.92rem, 1vw, 1rem);
    line-height: 1.55;
    color: #1e293b;
  }

  .renewal-pellets__card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #38bdf8 0%, #2563eb 100%);
  }

  .renewal-pellets__card li b {
    color: #0f172a;
    font-size: inherit;
    font-weight: 500;
  }

  .renewal-pellets__cta-wrap {
    margin-top: clamp(1.1rem, 2.2vw, 1.45rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.65rem;
    max-width: 31rem;
  }

  .renewal-pellets__cta-wrap .renewal-agenda__cta:focus-visible {
    outline: 2px solid rgb(37 99 235 / 0.55);
    outline-offset: 3px;
  }

  .renewal-pellets__visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 100%;
  }

  .renewal-pellets__media {
    margin: 0;
    height: 100%;
    min-height: 100%;
    max-height: 650px;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgb(148 163 184 / 0.32);
    box-shadow: 0 24px 36px -24px rgb(15 23 42 / 0.42);
  }

  .renewal-pellets__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .renewal-dates__title {
    margin: 0;
    max-width: 35rem;
    font-size: clamp(1.75rem, 3.2vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.018em;
    color: #f8fafc;
  }

  .renewal-dates__panel {
    justify-self: end;
    width: min(100%, 420px);
    padding: 1.05rem 1.35rem;
    border-radius: 1rem;
    border: 1px solid rgb(255 255 255 / 0.62);
    background: rgb(255 255 255 / 0.09);
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 0.35),
      0 16px 34px -22px rgb(2 6 23 / 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .renewal-dates__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.35rem;
  }

  .renewal-dates__item {
    margin: 0;
    font-family: Area, Arial, sans-serif;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    font-weight: 500;
    line-height: 1.45;
    color: #f8fafc;
  }

  .renewal-dates__cta {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 0.25rem;
  }

  .renewal-dates__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.75rem 1.8rem;
    border-radius: 999px;
    background: #69dc82;
    color: #fff;
    font-family: Area, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.1;
    text-decoration: none;
    box-shadow: 0 12px 28px -16px rgb(2 6 23 / 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  }

  .renewal-dates__button:hover,
  .renewal-dates__button:focus {
    background: #4fcf6b;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -14px rgb(2 6 23 / 0.58);
    color: #fff;
  }

  .renewal-days {
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }

  .renewal-days__carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .renewal-days__carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: renewal-days-fade 18s infinite;
  }

  .renewal-days__carousel-item:nth-child(1) { animation-delay: 0s; }
  .renewal-days__carousel-item:nth-child(2) { animation-delay: 6s; }
  .renewal-days__carousel-item:nth-child(3) { animation-delay: 12s; }

  @keyframes renewal-days-fade {
    0%, 30% { opacity: 1; }
    36%, 100% { opacity: 0; }
  }

  .renewal-days::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(108deg, rgb(2 6 23 / 0.78) 0%, rgb(2 6 23 / 0.66) 44%, rgb(2 6 23 / 0.5) 100%);
    z-index: 1;
  }

  .renewal-days::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    pointer-events: none;
    background: linear-gradient(180deg, rgb(2 6 23 / 0) 0%, rgb(2 6 23 / 0.7) 100%);
    z-index: 1;
  }

  .renewal-days__inner {
    position: relative;
    z-index: 2;
    width: min(100%, var(--renewal-layout-max, 1300px));
    margin: 0 auto;
    min-height: clamp(560px, 74svh, 760px);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 5.8vw, 4.8rem) 0;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    align-content: center;
    gap: clamp(0.5rem, 1.2vw, 1rem);
  }

  .renewal-days__content {
    max-width: none;
    width: 100%;
  }

  .renewal-days__title {
    margin: 0;
    font-family: var(--font-heading, "Ivy Mode"), Georgia, serif;
    font-size: clamp(2.4rem, 4.9vw, 4.1rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: #fff;
    text-transform: none;
    text-wrap: balance;
  }

  .renewal-days__title-accent {
    color: #dbeafe;
    font-weight: 300;
    font-size: clamp(1.65rem, 2.85vw, 2.55rem);
    letter-spacing: -0.01em;
  }

  .renewal-days__lead {
    margin: 0.9rem 0 0;
    max-width: none;
    font-family: var(--font-sans, Area), Arial, sans-serif;
    font-size: clamp(0.98rem, 1.05vw, 1.04rem);
    line-height: 1.5;
    color: rgb(241 245 249 / 0.88);
  }

  .renewal-days__highlights {
    list-style: none;
    margin: 0.95rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.52rem;
    max-width: none;
  }

  .renewal-days__highlights li {
    margin: 0;
    display: grid;
    gap: 0.2rem;
    padding: 0.62rem 0.72rem;
    border-radius: 0.72rem;
    border: 1px solid rgb(255 255 255 / 0.22);
    background: linear-gradient(165deg, rgb(74 96 101 / 0.56) 0%, rgb(92 113 118 / 0.36) 100%);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08);
  }

  .renewal-days__highlights strong {
    font-family: var(--font-sans, Area), Arial, sans-serif;
    font-size: 0.84rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
  }

  .renewal-days__highlights span {
    font-family: var(--font-sans, Area), Arial, sans-serif;
    font-size: 0.92rem;
    line-height: 1.34;
    color: rgb(241 245 249 / 0.88);
  }

  .renewal-days__alerts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    align-items: start;
    justify-items: stretch;
    max-width: none;
    width: 100%;
  }

  .renewal-days__alerts .renewal-dates__title {
    margin: 0;
    max-width: none;
    font-family: var(--font-sans, Area), Arial, sans-serif;
    font-size: clamp(0.98rem, 1.05vw, 1.04rem);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    color: rgb(241 245 249 / 0.88);
    text-wrap: pretty;
  }

  .renewal-days__alerts-intro {
    margin: 0;
    max-width: 21rem;
    font-family: var(--font-sans, Area), Arial, sans-serif;
    font-size: clamp(1.05rem, 1.55vw, 1.62rem);
    line-height: 1.22;
    letter-spacing: -0.01em;
    color: #fff;
  }

  .renewal-days__alerts .renewal-dates__panel {
    justify-self: stretch;
    width: 100%;
    padding: 0.78rem 0.88rem;
    border-radius: 0.72rem;
    border: 1px solid rgb(255 255 255 / 0.34);
    background: rgb(255 255 255 / 0.14);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .renewal-days__alerts .renewal-dates__list {
    gap: 0.25rem;
  }

  .renewal-days__alerts .renewal-dates__item {
    font-family: var(--font-sans, Area), Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.28;
    color: rgb(241 245 249 / 0.9);
  }

  .renewal-days__alerts .renewal-dates__cta {
    grid-column: auto;
    margin-top: 0.05rem;
    justify-content: flex-start;
    gap: 0.42rem;
  }

  .renewal-days__alerts .renewal-dates__button {
    font-family: var(--font-sans, Area), Arial, sans-serif;
    min-height: 2.9rem;
    padding: 0.7rem 1.45rem;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.01em;
  }

  .renewal-days__alerts .renewal-dates__button--ghost {
    border: 1px solid rgb(255 255 255 / 0.34);
    background: rgb(74 96 101 / 0.38);
    color: #fff;
    box-shadow: none;
  }


  .renewal-learning {
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  }

  .renewal-learning__inner {
    width: min(100%, var(--renewal-layout-max, 1300px));
    margin: 0 auto;
    padding: clamp(2.2rem, 4.6vw, 3.7rem) 0 clamp(2.3rem, 4.8vw, 3.9rem) 0;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
    gap: clamp(1.2rem, 2.8vw, 2.8rem);
    align-items: stretch;
  }

  .renewal-learning__eyebrow {
    margin: 0 0 0.35rem;
    font-family: Area, Arial, sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #2563eb;
  }

  .renewal-learning__title {
    margin: 0;
    font-family: "Ivy Mode", Georgia, serif;
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.02em;
    color: #0f172a;
  }

  .renewal-learning__title span {
    color: #0073ff;
  }

  .renewal-learning__lead {
    margin: 0.8rem 0 0;
    max-width: 39rem;
    font-family: Area, Arial, sans-serif;
    font-size: clamp(0.95rem, 1.18vw, 1.03rem);
    line-height: 1.62;
    color: #334155;
  }

  .renewal-learning__points {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
    max-width: 40rem;
  }

  .renewal-learning__points li {
    position: relative;
    margin: 0;
    padding-left: 1.5rem;
    font-family: Area, Arial, sans-serif;
    font-size: clamp(0.98rem, 1.1vw, 1.04rem);
    line-height: 1.54;
    color: #1e293b;
  }

  .renewal-learning__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #38bdf8 0%, #2563eb 100%);
  }

  .renewal-dates-slab {
    margin-top: 1rem;
    max-width: 48rem;
    padding: 1rem 1.1rem 1.05rem;
    border-radius: 0.95rem;
    border: 1px solid rgb(100 116 139 / 0.35);
    background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%);
    box-shadow: 0 12px 28px -18px rgb(15 23 42 / 0.22);
    display: grid;
    gap: 0.75rem;
    box-sizing: border-box;
  }

  .renewal-dates-slab__title {
    margin: 0;
    max-width: none;
    font-family: var(--font-sans, Area), Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0;
    color: #1e293b;
  }

  .renewal-dates-slab .renewal-dates__panel,
  .renewal-dates-slab__panel {
    margin: 0;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    padding: 0.82rem 0.95rem;
    border-radius: 0.86rem;
    border: 1px solid rgb(148 163 184 / 0.38);
    background: #fff;
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 0.85),
      0 10px 24px -14px rgb(15 23 42 / 0.18);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .renewal-dates-slab .renewal-dates__item {
    color: #334155;
    font-size: 0.95rem;
    font-weight: 500;
  }

  .renewal-enroll__copy .renewal-dates-slab {
    margin-top: clamp(1.1rem, 2.5vw, 1.55rem);
    max-width: 100%;
    border-color: rgb(255 255 255 / 0.18);
    background: linear-gradient(180deg, #d8dee6 0%, #c5cdd6 100%);
    box-shadow: 0 14px 30px -16px rgb(15 23 42 / 0.35);
  }

  .renewal-enroll__copy .renewal-dates-slab__title {
    color: #0f172a;
  }

  .renewal-learning__media {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: stretch;
    align-self: stretch;
    height: 100%;
    background: #f7faf7;
    border: 1px solid rgb(148 163 184 / 0.24);
    padding: 0.8rem;
    border-radius: 1rem;
    overflow: hidden;
  }

  .renewal-learning__image {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
    border-radius: 0.7rem;
  }

  .renewal-learning__media-caption {
    margin: 0;
    grid-column: 1 / -1;
    font-family: Area, Arial, sans-serif;
    font-size: 0.88rem;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0f172a;
  }

  .renewal-practice-gallery {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #eef4ff 0%, #e7efff 100%);
    --gallery-gap: clamp(0.55rem, 1vw, 0.85rem);
    --gallery-per-view: 5;
  }

  .renewal-practice-gallery__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 50px 0 90px;
    box-sizing: border-box;
  }

  .renewal-practice-gallery__viewport {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .renewal-practice-gallery__viewport::before,
  .renewal-practice-gallery__viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(38px, 8vw, 120px);
    z-index: 2;
    pointer-events: none;
  }

  .renewal-practice-gallery__viewport::before {
    left: 0;
    background: linear-gradient(90deg, #edf3ff 0%, rgb(237 243 255 / 0) 100%);
  }

  .renewal-practice-gallery__viewport::after {
    right: 0;
    background: linear-gradient(270deg, #e8f0ff 0%, rgb(232 240 255 / 0) 100%);
  }

  .renewal-practice-gallery__track {
    display: flex;
    align-items: stretch;
    gap: var(--gallery-gap);
    width: max-content;
    animation: renewal-gallery-scroll 36s linear infinite;
    will-change: transform;
  }

  .renewal-practice-gallery__item {
    margin: 0;
    flex: 0 0 calc((100vw - (var(--gallery-gap) * (var(--gallery-per-view) - 1))) / var(--gallery-per-view));
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid rgb(148 163 184 / 0.24);
    box-shadow: 0 18px 30px -20px rgb(15 23 42 / 0.4);
  }

  .renewal-practice-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .renewal-practice-gallery__viewport:hover .renewal-practice-gallery__track {
    animation-play-state: paused;
  }

  @keyframes renewal-gallery-scroll {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(calc(-50% - (var(--gallery-gap) / 2)));
    }
  }

  .renewal-instructors {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(110% 120% at 8% 8%, rgb(255 255 255 / 0.12) 0%, rgb(255 255 255 / 0) 42%),
      radial-gradient(100% 110% at 92% 14%, rgb(15 23 42 / 0.1) 0%, rgb(15 23 42 / 0) 46%),
      linear-gradient(132deg, #6e878c 0%, #6e878c 46%, #6e878c 100%);
  }

  .renewal-instructors::before {
    content: "";
    position: absolute;
    inset: -22% auto auto -14%;
    width: clamp(320px, 45vw, 780px);
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    pointer-events: none;
    opacity: 1;
    background: radial-gradient(circle, rgb(255 255 255 / 0.16) 0%, rgb(255 255 255 / 0) 72%);
    filter: blur(2px);
  }

  .renewal-instructors::after {
    content: "";
    position: absolute;
    inset: auto -16% -30% auto;
    width: clamp(360px, 50vw, 820px);
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    pointer-events: none;
    background: radial-gradient(circle, rgb(15 23 42 / 0.14) 0%, rgb(15 23 42 / 0) 74%);
    filter: blur(2px);
  }

  .renewal-instructors__inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--renewal-layout-max, 1300px));
    margin: 0 auto;
    padding: clamp(2.45rem, 4.8vw, 4rem) 0 clamp(2.55rem, 5.1vw, 4.3rem) 0;
    box-sizing: border-box;
    display: grid;
    gap: clamp(1.15rem, 2.3vw, 1.85rem);
  }

  .renewal-instructors__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    align-items: end;
    gap: clamp(1rem, 2.2vw, 2rem);
  }

  .renewal-instructors__kicker {
    margin: 0 0 0.55rem;
    font-family: Area, Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: rgb(148 163 184 / 0.95);
  }

  .renewal-instructors__title {
    margin: 0;
    display: grid;
    gap: 0.22rem;
    font-family: "Ivy Mode", Georgia, serif;
    color: #fff;
    text-wrap: balance;
  }

  .renewal-instructors__title-kicker {
    display: block;
    font-size: clamp(2.25rem, 4.4vw, 3.5rem);
    font-weight: 300;
    line-height: 0.94;
    letter-spacing: -0.022em;
    color: rgb(226 232 240 / 0.94);
  }

  .renewal-instructors__title > span:not(.renewal-instructors__title-kicker) {
    font-size: clamp(2.25rem, 4.4vw, 3.5rem);
    font-weight: 300;
    line-height: 0.94;
    letter-spacing: -0.022em;
    color: #fff;
  }

  .renewal-instructors__intro {
    margin: 0;
    display: grid;
    justify-items: start;
    gap: 0.75rem;
    font-family: Area, Arial, sans-serif;
    font-size: clamp(0.92rem, 1.05vw, 1rem);
    line-height: 1.45;
    color: rgb(226 232 240 / 0.9);
  }

  .renewal-instructors__intro p {
    margin: 0;
    max-width: 34rem;
  }

  .renewal-instructors__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: Area, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #86f89d;
    text-decoration: none;
    transition: color 200ms ease, transform 200ms ease;
  }

  .renewal-instructors__cta:hover {
    color: #b2ffbf;
    transform: translateX(2px);
  }

  .renewal-instructors__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.9rem, 2vw, 1.3rem);
  }

  .renewal-instructors__card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid rgb(255 255 255 / 0.24);
    border-radius: 0.75rem;
    background: linear-gradient(165deg, rgb(74 96 101 / 0.92) 0%, rgb(92 113 118 / 0.9) 48%, rgb(64 84 88 / 0.92) 100%);
    box-shadow: 0 20px 34px -28px rgb(15 23 42 / 0.55);
    overflow: hidden;
    transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  }

  .renewal-instructors__card:hover {
    transform: translateY(-3px);
    border-color: rgb(255 255 255 / 0.42);
    box-shadow: 0 24px 38px -24px rgb(15 23 42 / 0.62);
  }

  .renewal-instructors__photo {
    margin: 0;
    overflow: hidden;
    background: #1f2937;
    height: clamp(300px, 30vw, 400px);
  }

  .renewal-instructors__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.001);
    transition: transform 260ms ease;
  }

  .renewal-instructors__card:hover .renewal-instructors__photo img {
    transform: scale(1.03);
  }

  .renewal-instructors__name {
    margin: 0;
    padding: 1.1rem 1.15rem 0.42rem;
    font-family: Area, Arial, sans-serif;
    font-size: clamp(1.08rem, 1.2vw, 1.18rem);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #f8fafc;
  }

  .renewal-instructors__role {
    margin: 0;
    padding: 0 1.15rem 0.82rem;
    font-family: Area, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 400;
    text-transform: uppercase;
    color: rgb(219 234 254 / 0.9);
  }

  .renewal-instructors__bio {
    margin: 0;
    padding: 2.15rem 2.15rem 2.22rem;
    border-top: 1px solid rgb(255 255 255 / 0.18);
    font-family: Area, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: rgb(241 245 249 / 0.9);
  }

  .renewal-instructors__bio p {
    margin: 0;
  }

  .renewal-instructors__bio p + p {
    margin-top: 0.45rem;
  }


  .renewal-agenda {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f4f8ff 0%, #ebf2ff 100%);
  }

  .renewal-agenda__inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--renewal-layout-max, 1300px));
    margin: 0 auto;
    padding: clamp(2.1rem, 4.4vw, 3.2rem) 0 clamp(1.8rem, 4vw, 2.8rem) 0;
    box-sizing: border-box;
    display: grid;
    gap: clamp(0.9rem, 2vw, 1.25rem);
  }

  .renewal-agenda__kicker {
    margin: 0;
    font-family: Area, Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: #3b82f6;
  }

  .renewal-agenda__title {
    margin: 0;
    max-width: 42rem;
    font-family: "Ivy Mode", Georgia, serif;
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.02em;
    color: #0f172a;
    text-wrap: balance;
  }

  .renewal-agenda__title-accent {
    color: #2563eb;
  }

  .renewal-agenda__support {
    margin: -0.15rem 0 0;
    max-width: 46rem;
    font-family: Area, Arial, sans-serif;
    font-size: clamp(0.95rem, 1.2vw, 1rem);
    line-height: 1.45;
    color: #334155;
  }

  .renewal-agenda__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(0.75rem, 1.8vw, 1rem);
  }

  .renewal-agenda__card {
    border-radius: 1.15rem;
    border: 1px solid rgb(59 130 246 / 0.18);
    background: linear-gradient(180deg, rgb(255 255 255 / 0.95) 0%, rgb(247 251 255 / 0.95) 100%);
    box-shadow: 0 24px 38px -30px rgb(15 23 42 / 0.3);
    padding: 1.6rem 1.65rem 1.5rem;
  }

  @media (max-width: 767px) {
    .renewal-agenda__card {
      padding: 1.25rem 1.2rem 1.15rem;
    }
  }

  .renewal-agenda__header {
    margin: 0;
    color: #0f172a;
    font-family: Area, Arial, sans-serif;
    font-size: clamp(1.06rem, 1.5vw, 1.34rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.005em;
  }

  .renewal-agenda__list {
    list-style: none;
    margin: 0.68rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.72rem;
  }

  .renewal-agenda__item {
    margin: 0;
    padding: 0 0 0 1.1rem;
    position: relative;
    color: #1e293b;
    font-family: Area, Arial, sans-serif;
    font-size: clamp(0.92rem, 1vw, 1rem);
    line-height: 1.55;
  }

  .renewal-agenda__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #38bdf8 0%, #2563eb 100%);
  }

  .renewal-agenda__time {
    color: #2563eb;
    font-weight: 700;
  }

  .renewal-agenda__day2-line {
    margin: 0.68rem 0 0;
    padding: 0 0 0 1.1rem;
    position: relative;
    text-align: left;
    font-family: Area, Arial, sans-serif;
    font-size: clamp(0.95rem, 1.18vw, 1.08rem);
    line-height: 1.4;
    color: #1e293b;
  }

  .renewal-agenda__day2-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #38bdf8 0%, #2563eb 100%);
  }

  .renewal-agenda__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 0.3rem;
  }

  .renewal-agenda__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    border: 0;
    background: #69dc82;
    box-shadow: 0 12px 28px -16px rgb(2 6 23 / 0.55);
    font-family: Area, Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
  }

  .renewal-agenda__cta:hover {
    transform: translateY(-2px);
    background: #4fcf6b;
    box-shadow: 0 16px 32px -14px rgb(2 6 23 / 0.58);
    color: #fff;
  }

  .renewal-advantages {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);
  }

  .renewal-advantages::before {
    content: "";
    position: absolute;
    inset: -22% auto auto -18%;
    width: clamp(300px, 45vw, 760px);
    height: clamp(300px, 45vw, 760px);
    border-radius: 999px;
    background: radial-gradient(circle, rgb(59 130 246 / 0.13) 0%, rgb(59 130 246 / 0) 70%);
    pointer-events: none;
  }

  .renewal-advantages__inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--renewal-layout-max, 1300px));
    margin: 0 auto;
    padding: clamp(2.1rem, 4.2vw, 3.25rem) 0 clamp(2.2rem, 4.5vw, 3.4rem) 0;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(250px, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(0.95rem, 2.2vw, 2rem);
    align-items: start;
  }

  .renewal-advantages__title {
    margin: 0;
    font-family: "Ivy Mode", Georgia, serif;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #0f172a;
    text-wrap: balance;
  }

  .renewal-advantages__title span {
    color: #0073ff;
  }

  .renewal-advantages__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.62rem;
  }

  .renewal-advantages__item {
    position: relative;
    margin: 0;
    min-height: 3.25rem;
    display: flex;
    align-items: center;
    padding: 0.82rem 1rem 0.82rem 2.85rem;
    border-radius: 999px;
    border: 1px solid rgb(96 165 250 / 0.32);
    background: linear-gradient(135deg, rgb(255 255 255 / 0.95) 0%, rgb(237 245 255 / 0.96) 100%);
    box-shadow: 0 14px 26px -22px rgb(15 23 42 / 0.5);
    font-family: Area, Arial, sans-serif;
    font-size: clamp(0.93rem, 1.2vw, 1.05rem);
    line-height: 1.35;
    color: #1e293b;
  }

  .renewal-advantages__item::before {
    content: "";
    position: absolute;
    left: 0.95rem;
    top: 50%;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 999px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #60a5fa 0%, #0073ff 100%);
    box-shadow: 0 8px 14px -10px rgb(37 99 235 / 0.7);
  }

  .renewal-advantages__item::after {
    content: "";
    position: absolute;
    left: 1.34rem;
    top: 50%;
    width: 0.4rem;
    height: 0.22rem;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-60%) rotate(-45deg);
  }

  .renewal-enroll {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(110% 120% at 8% 8%, rgb(255 255 255 / 0.12) 0%, rgb(255 255 255 / 0) 42%),
      radial-gradient(100% 110% at 92% 14%, rgb(15 23 42 / 0.1) 0%, rgb(15 23 42 / 0) 46%),
      linear-gradient(132deg, #6e878c 0%, #6e878c 46%, #6e878c 100%);
  }

  .renewal-enroll::before {
    content: "";
    position: absolute;
    inset: -22% auto auto -14%;
    width: clamp(320px, 45vw, 780px);
    height: clamp(320px, 45vw, 780px);
    border-radius: 999px;
    background: radial-gradient(circle, rgb(255 255 255 / 0.16) 0%, rgb(255 255 255 / 0) 72%);
    pointer-events: none;
    filter: blur(2px);
  }

  .renewal-enroll::after {
    content: "";
    position: absolute;
    inset: auto -16% -30% auto;
    width: clamp(360px, 50vw, 820px);
    height: clamp(360px, 50vw, 820px);
    border-radius: 999px;
    background: radial-gradient(circle, rgb(15 23 42 / 0.14) 0%, rgb(15 23 42 / 0) 74%);
    pointer-events: none;
    filter: blur(2px);
  }

  .renewal-enroll__inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--renewal-layout-max, 1300px));
    margin: 0 auto;
    padding: clamp(2.2rem, 4.5vw, 3.5rem) 0 clamp(2.3rem, 4.6vw, 3.7rem) 0;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1rem, 2.4vw, 2rem);
    align-items: center;
  }

  .renewal-enroll__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
  }

  .renewal-enroll__title {
    margin: 0 0 0.65rem;
    font-family: "Ivy Mode", Georgia, serif;
    font-size: clamp(2rem, 3.9vw, 2.9rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
    color: #fff;
    text-wrap: balance;
  }

  .renewal-enroll__lead {
    margin: 0;
    font-family: Area, Arial, sans-serif;
    font-size: clamp(1.02rem, 1.24vw, 1.12rem);
    line-height: 1.6;
    color: rgb(255 255 255 / 0.92);
  }

  .renewal-enroll__lead strong {
    color: #fff;
  }

  .renewal-enroll__form {
    margin: 0;
    display: grid;
    gap: clamp(0.78rem, 1.8vw, 1rem);
  }

  .renewal-enroll__field {
    display: grid;
    gap: 0.35rem;
  }

  .renewal-enroll__field label {
    font-family: Area, Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2f4850;
  }

  .renewal-enroll__req {
    color: #0f766e;
  }

  .renewal-enroll__input,
  .renewal-enroll__form select.renewal-enroll__input {
    width: 100%;
    box-sizing: border-box;
    min-height: 2.85rem;
    padding: 0.55rem 1rem;
    border: 1px solid rgb(148 163 184 / 0.35);
    border-radius: 999px;
    background: rgb(227 236 238);
    color: #22363b;
    font-family: Area, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.25;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .renewal-enroll__input:focus,
  .renewal-enroll__form select.renewal-enroll__input:focus {
    outline: none;
    border-color: rgb(59 130 246 / 0.75);
    box-shadow: 0 0 0 3px rgb(59 130 246 / 0.2);
  }

  .renewal-enroll__input::placeholder {
    color: rgb(34 54 59 / 0.45);
  }

  .renewal-enroll__phone-row {
    display: grid;
    grid-template-columns: minmax(7.5rem, 9.2rem) minmax(0, 1fr);
    gap: 0.5rem;
    align-items: stretch;
  }

  .renewal-enroll__phone-row .renewal-enroll__input {
    border-radius: 999px;
  }

  .renewal-enroll__phone-row select.renewal-enroll__input {
    cursor: pointer;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #22363b 50%), linear-gradient(135deg, #22363b 50%, transparent 50%);
    background-position: calc(100% - 1.1rem) calc(50% + 0.15rem), calc(100% - 0.72rem) calc(50% + 0.15rem);
    background-size: 0.38rem 0.38rem, 0.38rem 0.38rem;
    background-repeat: no-repeat;
    padding-right: 1.85rem;
  }

  .renewal-enroll__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3.05rem;
    margin-top: 0.15rem;
    padding: 0.75rem 1.25rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #6e878c 0%, #567279 100%);
    color: #fff;
    font-family: Area, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.15;
    cursor: pointer;
    box-shadow: 0 16px 28px -18px rgb(28 45 49 / 0.62);
    transition: filter 0.2s ease, transform 0.2s ease;
  }

  .renewal-enroll__submit:hover {
    filter: brightness(1.06);
  }

  .renewal-enroll__submit:focus-visible {
    outline: none;
    box-shadow:
      0 16px 28px -18px rgb(28 45 49 / 0.62),
      0 0 0 3px rgb(255 255 255 / 0.65),
      0 0 0 5px rgb(86 114 121 / 0.55);
  }

  .renewal-enroll__fineprint {
    margin: 0.35rem 0 0;
    font-family: Area, Arial, sans-serif;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgb(47 72 80 / 0.78);
    text-align: center;
  }

  .renewal-enroll__form-success {
    margin-top: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    border: 1px solid rgb(110 135 140 / 0.35);
    background: rgb(240 253 250 / 0.95);
    font-family: Area, Arial, sans-serif;
    font-size: 0.92rem;
    line-height: 1.45;
    color: #134e4a;
    text-align: center;
  }

  .renewal-enroll__form-success p {
    margin: 0;
  }

  .renewal-enroll__form-wrap {
    padding: clamp(0.95rem, 2.3vw, 1.3rem);
    border-radius: 1.2rem;
    border: 1px solid rgb(110 135 140 / 0.35);
    background: #fff;
    box-shadow: 0 26px 42px -28px rgb(28 45 49 / 0.55);
  }

  .renewal-signoff {
    background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
  }

  .renewal-signoff__inner {
    width: min(100%, var(--renewal-layout-max, 1300px));
    margin: 0 auto;
    padding: clamp(1.8rem, 3.9vw, 2.9rem) 0 clamp(1.9rem, 4vw, 3rem) 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
  }

  .renewal-signoff__logo {
    margin: 0;
  }

  .renewal-signoff__logo img {
    width: min(100%, 290px);
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .ds2-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 560ms ease, transform 560ms ease;
  }

  .ds2-reveal--scale {
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 560ms ease, transform 560ms ease;
  }

  .ds2-reveal--visible {
    opacity: 1;
    transform: none;
  }

  .ds2-stagger > * {
    transition-delay: calc(var(--i, 0) * 80ms);
  }


  @media (max-width: 1024px) {
    .renewal-cert-hero__inner {
      min-height: auto;
      padding-top: calc(5rem + 22px);
      padding-bottom: 2.8rem;
      grid-template-columns: 1fr;
      text-align: left;
    }

    .renewal-cert-hero__content {
      max-width: 100%;
      margin: 0;
    }

    .renewal-mission__inner {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }

    .renewal-mission__stats {
      width: min(100%, 680px);
      flex-wrap: wrap;
    }

    .renewal-pellets__inner {
      grid-template-columns: 1fr;
      gap: 1.4rem;
    }

    .renewal-pellets__visual {
      grid-template-columns: 1fr;
    }

    .renewal-pellets__media {
      min-height: 260px;
      height: auto;
    }

    .renewal-dates__panel {
      justify-self: start;
      width: min(100%, 460px);
    }

    .renewal-days__inner {
      grid-template-columns: 1fr;
      min-height: 100svh;
      gap: 1.3rem;
      align-content: start;
      align-items: start;
    }

    .renewal-days__alerts {
      grid-template-columns: 1fr;
      align-items: start;
      justify-items: stretch;
    }

    .renewal-days__highlights {
      max-width: none;
    }

    .renewal-days__alerts .renewal-dates__panel {
      justify-self: start;
    }

    .renewal-days__alerts .renewal-dates__cta {
      justify-content: flex-start;
    }

    .renewal-learning__inner {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .renewal-learning__media {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .renewal-practice-gallery {
      --gallery-per-view: 3;
    }

    .renewal-instructors__head {
      grid-template-columns: 1fr;
      align-items: start;
      gap: 0.8rem;
    }

    .renewal-instructors__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .renewal-instructors__card {
      min-height: 100%;
    }

    .renewal-instructors__photo {
      height: clamp(275px, 37.5vw, 362.5px);
    }

    .renewal-agenda__grid {
      grid-template-columns: 1fr;
    }

    .renewal-advantages__inner {
      grid-template-columns: 1fr;
      gap: 0.8rem;
    }

    .renewal-enroll__inner {
      grid-template-columns: 1fr;
      gap: 0.8rem;
    }

    .renewal-signoff__inner {
      justify-content: center;
    }
  }

  @media (max-width: 767px) {
    .certification-page,
    .renewal-landing--certification,
    .certification-course-layout,
    .elementor-widget[class*="elementor-widget-rwl_cert_"] {
      --renewal-layout-max: var(--layout-max, 1300px);
    }

    .renewal-cert-hero__inner,
    .renewal-mission__inner,
    .renewal-pellets__inner,
    .renewal-days__inner,
    .renewal-learning__inner,
    .renewal-practice-gallery__inner,
    .renewal-instructors__inner,
    .renewal-agenda__inner,
    .renewal-advantages__inner,
    .renewal-enroll__inner,
    .renewal-signoff__inner,
    .renewal-countdown__inner {
      padding-left: 1.25rem;
      padding-right: 1.25rem;
      width: min(100%, var(--layout-max, 1300px));
      max-width: var(--layout-max, 1300px);
    }

    .renewal-cert-hero {
      min-height: 100svh;
    }

    .renewal-cert-hero__carousel-track {
      height: 100%;
    }

    .renewal-cert-hero__inner {
      min-height: 100svh;
      padding-top: calc(4.5rem + 24px + env(safe-area-inset-top, 0px));
      padding-bottom: calc(2.7rem + env(safe-area-inset-bottom, 0px));
      padding-left: 1.25rem;
      padding-right: 1.25rem;
      place-content: center;
      gap: 1.1rem;
    }

    .renewal-cert-hero__title {
      font-size: clamp(1.9rem, 9vw, 2.55rem);
      line-height: 1.1;
    }

    .renewal-cert-hero__button {
      width: 100%;
    }

    .renewal-mission__inner {
      gap: 1.05rem;
    }

    .renewal-mission__title {
      font-size: clamp(1.95rem, 8.3vw, 2.7rem);
      line-height: 1.08;
    }

    .renewal-mission__lead {
      font-size: 0.9rem;
      line-height: 1.45;
    }

    .renewal-mission__stats {
      width: 100%;
      flex-direction: column;
      gap: 0.55rem;
    }

    .renewal-mission__stat {
      min-width: 0;
      padding: 0.78rem 0.5rem;
    }

    .renewal-pellets__visual {
      grid-template-columns: 1fr;
      gap: 0.55rem;
    }

    .renewal-pellets__media {
      min-height: 220px;
      height: auto;
    }

    .renewal-dates__title {
      font-size: clamp(1.55rem, 7.8vw, 2.3rem);
      line-height: 1.1;
    }

    .renewal-dates__panel {
      width: 100%;
      padding: 0.9rem 1rem;
    }

    .renewal-dates__cta {
      margin-top: 0.1rem;
    }


    .renewal-dates__button {
      width: 100%;
    }

    .renewal-days__inner {
      min-height: auto;
      padding-top: calc(2.6rem + env(safe-area-inset-top, 0px));
      padding-bottom: calc(2.6rem + env(safe-area-inset-bottom, 0px));
    }

    .renewal-days__title {
      font-size: clamp(1.95rem, 8.2vw, 2.7rem);
      line-height: 0.95;
    }

    .renewal-days__title-accent {
      font-size: clamp(1.4rem, 6.6vw, 1.95rem);
    }

    .renewal-days__alerts .renewal-dates__title {
      font-size: clamp(1.22rem, 6.4vw, 1.65rem);
      line-height: 1.1;
    }

    .renewal-days__alerts .renewal-dates__item {
      font-size: 0.9rem;
    }

    .renewal-days__alerts .renewal-dates__button {
      width: 100%;
      justify-content: center;
      font-size: 0.92rem;
    }

    .renewal-days__alerts-intro {
      font-size: 1rem;
      line-height: 1.24;
    }

    .renewal-days__highlights {
      grid-template-columns: 1fr;
    }

    .renewal-days__highlights li {
      padding: 0.58rem 0.62rem;
    }

    .renewal-learning__inner {
      gap: 0.9rem;
    }

    .renewal-learning__title {
      font-size: clamp(1.9rem, 8.5vw, 2.55rem);
    }

    .renewal-learning__lead,
    .renewal-learning__points li {
      font-size: 0.9rem;
    }

    .renewal-learning__media {
      gap: 0.6rem;
      padding: 0.55rem;
    }

    .renewal-practice-gallery__inner {
      padding-top: 90px;
      padding-bottom: 90px;
    }

    .renewal-practice-gallery__track {
      --gallery-gap: 0.55rem;
      animation-duration: 28s;
    }

    .renewal-practice-gallery {
      --gallery-per-view: 2;
    }

    .renewal-instructors__title {
      margin-bottom: 0.9rem;
      gap: 0.15rem;
    }

    .renewal-instructors__title-kicker {
      font-size: 1rem;
    }

    .renewal-instructors__title span {
      font-size: clamp(2rem, 8vw, 2.6rem);
    }

    .renewal-instructors__intro {
      font-size: 0.9rem;
      line-height: 1.42;
    }

    .renewal-instructors__grid {
      grid-template-columns: 1fr;
      gap: 1.1rem;
    }

    .renewal-instructors__photo {
      height: clamp(275px, 90vw, 375px);
    }

    .renewal-instructors__card {
      border-radius: 0.68rem;
    }

    .renewal-instructors__name {
      padding: 0.98rem 1rem 0.36rem;
    }

    .renewal-instructors__role {
      padding: 0 1rem 0.72rem;
    }

    .renewal-agenda__inner {
      gap: 0.75rem;
    }

    .renewal-agenda__card {
      border-radius: 1.1rem;
      padding: 0.8rem 0.78rem 0.78rem;
    }

    .renewal-agenda__header {
      font-size: 1rem;
    }

    .renewal-agenda__item {
      font-size: 0.82rem;
      padding-left: 0.95rem;
      line-height: 1.52;
    }

    .renewal-agenda__day2-line {
      margin-top: 0.65rem;
      font-size: 0.9rem;
      padding-left: 0.95rem;
    }

    .renewal-agenda__cta {
      min-height: 2.7rem;
      font-size: 0.88rem;
      padding-inline: 1.2rem;
    }

    .renewal-advantages__inner {
      gap: 0.75rem;
    }

    .renewal-advantages__title {
      font-size: clamp(1.8rem, 8vw, 2.45rem);
    }

    .renewal-advantages__item {
      min-height: 3rem;
      font-size: 0.9rem;
      padding-left: 2.6rem;
      padding-right: 0.88rem;
    }

    .renewal-advantages__item::before {
      left: 0.82rem;
      width: 1.1rem;
      height: 1.1rem;
    }

    .renewal-advantages__item::after {
      left: 1.18rem;
    }

    .renewal-enroll__inner {
      gap: 0.75rem;
    }

    .renewal-enroll__title {
      font-size: clamp(1.75rem, 8vw, 2.45rem);
    }

    .renewal-enroll__lead {
      font-size: 0.93rem;
      line-height: 1.55;
    }

    .renewal-enroll__form-wrap {
      padding: 0.82rem;
    }

    .renewal-enroll__phone-row {
      grid-template-columns: 1fr;
    }

    .renewal-signoff__inner {
      padding-top: 1.65rem;
      padding-bottom: 1.75rem;
    }

    .renewal-cert-hero__inner,
    .renewal-mission__inner,
    .renewal-pellets__inner,
    .renewal-days__inner,
    .renewal-learning__inner,
    .renewal-practice-gallery__inner,
    .renewal-instructors__inner,
    .renewal-agenda__inner,
    .renewal-advantages__inner,
    .renewal-enroll__inner,
    .renewal-signoff__inner {
      padding-top: 2.6rem !important;
      padding-bottom: 2.6rem !important;
    }

  }

  /* Respect authored casing (LATAM Spanish sentence case). */
  :is(
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .elementor-heading-title,
    [class*="__title"],
    [class*="__heading"],
    .nav-megamenu__title
  ) {
    text-transform: none !important;
  }



  .renewal-countdown {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10050;
    padding: 0.55rem 0 calc(0.55rem + env(safe-area-inset-bottom, 0)) 0;
    background:
      radial-gradient(120% 140% at 10% 0%, rgb(255 255 255 / 0.14) 0%, rgb(255 255 255 / 0) 45%),
      linear-gradient(132deg, #6e878c 0%, #5a7278 42%, #567279 100%);
    border-top: 1px solid rgb(255 255 255 / 0.22);
    box-shadow: 0 -14px 36px -12px rgb(15 23 42 / 0.35);
    color: rgb(255 255 255 / 0.95);
    font-family: Area, Arial, sans-serif;
    transform: translate3d(0, 110%, 0);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.42s linear;
  }

  .renewal-countdown.renewal-countdown--visible {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }

  .renewal-countdown__inner {
    width: min(100%, var(--renewal-layout-max, 1300px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr) auto;
    align-items: center;
    gap: clamp(0.65rem, 2vw, 1.25rem);
    box-sizing: border-box;
    padding: 0;
  }

  .renewal-countdown__close {
    position: absolute;
    top: 0.35rem;
    right: 0.35rem;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.12);
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .renewal-countdown__close:hover {
    background: rgb(255 255 255 / 0.22);
  }

  .renewal-countdown__close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
  }

  .renewal-countdown__intro {
    position: relative;
    min-width: 0;
    padding-right: 2rem;
  }

  .renewal-countdown__eyebrow {
    margin: 0 0 0.2rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.72);
  }

  .renewal-countdown__event {
    margin: 0;
    font-family: "Ivy Mode", IvyMode, Georgia, serif;
    font-size: clamp(1rem, 2.1vw, 1.2rem);
    font-weight: 300;
    line-height: 1.25;
    color: #fff;
    text-wrap: balance;
  }

  .renewal-countdown__timer {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.4rem 0.5rem;
  }

  .renewal-countdown__segment {
    min-width: 3.35rem;
    padding: 0.38rem 0.45rem 0.32rem;
    border-radius: 0.55rem;
    border: 1px solid rgb(255 255 255 / 0.22);
    background: rgb(15 23 42 / 0.12);
    text-align: center;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.12);
  }

  .renewal-countdown__value {
    display: block;
    font-variant-numeric: tabular-nums;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #fff;
  }

  .renewal-countdown__unit-label {
    display: block;
    margin-top: 0.12rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.72);
  }

  .renewal-countdown__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
  }

  .renewal-countdown__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.65rem;
    padding: 0.5rem 1.15rem;
    border-radius: 999px;
    border: 0;
    background: #69dc82;
    color: #fff;
    font-family: Area, Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 22px -10px rgb(2 6 23 / 0.45);
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
  }

  .renewal-countdown__cta:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    color: #fff;
  }

  .renewal-countdown__cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
  }

  @media (max-width: 767px) {
    .renewal-countdown__inner {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 0 2.25rem 0 0.35rem;
    }

    .renewal-countdown__intro {
      padding-right: 0;
    }

    .renewal-countdown__actions {
      justify-content: center;
    }

    .renewal-countdown__timer {
      justify-content: center;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ds2-reveal,
    .ds2-reveal--scale,
    .ds2-stagger > * {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }

    .renewal-instructors__card,
    .renewal-instructors__photo img,
    .renewal-countdown {
      transition: none;
    }

    .renewal-instructors__card:hover,
    .renewal-countdown__cta:hover {
      transform: none;
    }
  }

  /* Desktop: same max-width as navbar (--layout-max), no lateral padding. */
  @media (min-width: 768px) {
    .certification-page.elementor-page .elementor.elementor-42,
    .certification-page.elementor-page .elementor.elementor-42 > .e-con,
    .certification-page.elementor-page .elementor.elementor-42 .e-con {
      --padding-left: 0px;
      --padding-right: 0px;
      --container-max-width: 100%;
      padding-left: 0 !important;
      padding-right: 0 !important;
      max-width: 100% !important;
    }

    .certification-page .renewal-cert-hero__inner,
    .certification-page .renewal-mission__inner,
    .certification-page .renewal-pellets__inner,
    .certification-page .renewal-days__inner,
    .certification-page .renewal-learning__inner,
    .certification-page .renewal-practice-gallery__inner,
    .certification-page .renewal-instructors__inner,
    .certification-page .renewal-agenda__inner,
    .certification-page .renewal-advantages__inner,
    .certification-page .renewal-enroll__inner,
    .certification-page .renewal-signoff__inner,
    .certification-page .renewal-countdown__inner {
      width: 100%;
      max-width: var(--layout-max, 1300px);
      margin-left: auto;
      margin-right: auto;
      padding-left: 0;
      padding-right: 0;
      box-sizing: border-box;
    }
  }

  /* Certification page: children fill their section rail / card width. */
  .certification-page .renewal-mission__copy,
  .certification-page .renewal-mission__title,
  .certification-page .renewal-mission__lead,
  .certification-page .renewal-mission__stats,
  .certification-page .renewal-pellets__title,
  .certification-page .renewal-pellets__copy,
  .certification-page .renewal-pellets__card,
  .certification-page .renewal-pellets__cta-wrap,
  .certification-page .renewal-learning__lead,
  .certification-page .renewal-learning__points,
  .certification-page .renewal-dates-slab,
  .certification-page .renewal-agenda__support,
  .certification-page .renewal-advantages__title,
  .certification-page .renewal-advantages__list {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  /* Mobile: full-width content inside section rails (no lateral inset). */
  @media (max-width: 767px) {
    .certification-page.elementor-page .elementor.elementor-42,
    .certification-page.elementor-page .elementor.elementor-42 > .e-con.e-parent,
    .certification-page.elementor-page .elementor.elementor-42 .e-con.e-parent {
      --padding-left: 0px !important;
      --padding-right: 0px !important;
      --container-max-width: 100% !important;
      width: 100% !important;
      max-width: 100% !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
    }

    .certification-page .renewal-cert-hero__inner,
    .certification-page .renewal-mission__inner,
    .certification-page .renewal-pellets__inner,
    .certification-page .renewal-days__inner,
    .certification-page .renewal-learning__inner,
    .certification-page .renewal-practice-gallery__inner,
    .certification-page .renewal-instructors__inner,
    .certification-page .renewal-agenda__inner,
    .certification-page .renewal-advantages__inner,
    .certification-page .renewal-enroll__inner,
    .certification-page .renewal-signoff__inner,
    .certification-page .renewal-countdown__inner {
      width: 100% !important;
      max-width: var(--layout-max, 1300px) !important;
      padding-left: 1.25rem !important;
      padding-right: 1.25rem !important;
    }

    .certification-page .renewal-cert-hero__content,
    .certification-page .renewal-mission__copy,
    .certification-page .renewal-mission__stats,
    .certification-page .renewal-mission__stat,
    .certification-page .renewal-pellets__title,
    .certification-page .renewal-pellets__copy,
    .certification-page .renewal-pellets__card,
    .certification-page .renewal-pellets__visual,
    .certification-page .renewal-pellets__media,
    .certification-page .renewal-learning__copy,
    .certification-page .renewal-learning__lead,
    .certification-page .renewal-learning__points,
    .certification-page .renewal-learning__media,
    .certification-page .renewal-dates-slab,
    .certification-page .renewal-days__highlights,
    .certification-page .renewal-days__alerts,
    .certification-page .renewal-dates__panel,
    .certification-page .renewal-agenda__support,
    .certification-page .renewal-agenda__card,
    .certification-page .renewal-enroll__copy,
    .certification-page .renewal-enroll__form-wrap,
    .certification-page .renewal-enroll__form,
    .certification-page .renewal-advantages__title,
    .certification-page .renewal-advantages__list,
    .certification-page .renewal-advantages__item,
    .certification-page .renewal-instructors__head,
    .certification-page .renewal-instructors__grid,
    .certification-page .renewal-instructors__card {
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box;
    }

    .certification-page .renewal-cert-hero__inner,
    .certification-page .renewal-mission__inner,
    .certification-page .renewal-pellets__inner,
    .certification-page .renewal-days__inner,
    .certification-page .renewal-learning__inner,
    .certification-page .renewal-instructors__inner,
    .certification-page .renewal-agenda__inner,
    .certification-page .renewal-advantages__inner,
    .certification-page .renewal-enroll__inner {
      justify-items: stretch;
      align-items: stretch;
    }

    .certification-page .renewal-pellets__content,
    .certification-page .renewal-pellets__cta-wrap,
    .certification-page .renewal-mission__title,
    .certification-page .renewal-mission__lead,
    .certification-page .renewal-mission__eyebrow,
    .certification-page .renewal-learning__title,
    .certification-page .renewal-instructors__intro,
    .certification-page .renewal-agenda__support {
      width: 100% !important;
      max-width: 100% !important;
    }

    .certification-page .renewal-pellets__card,
    .certification-page .renewal-agenda__card,
    .certification-page .renewal-enroll__form-wrap {
      border-radius: 0;
    }

    .certification-page .renewal-mission__stat,
    .certification-page .renewal-days__highlights li {
      width: 100%;
    }

    .certification-page .elementor-widget[class*="elementor-widget-rwl_cert_"] {
      width: 100% !important;
      max-width: 100% !important;
    }
  }

