.course-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 44px;
    background:
      radial-gradient(
        circle at top right,
        rgba(185, 122, 53, 0.12),
        transparent 30%
      ),
      linear-gradient(
        180deg,
        rgba(255, 252, 248, 0.96) 0%,
        rgba(255, 255, 255, 0.98) 100%
      );
  }

  /* Убираем лишний зазор между hero и следующим блоком */
  .course-hero + .section {
    padding-top: 44px;
  }

  .course-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(185, 122, 53, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(185, 122, 53, 0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45),
      transparent 88%
    );
    mask-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45),
      transparent 88%
    );
    pointer-events: none;
  }

  .course-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
  }

  .course-hero__inner > * {
    min-width: 0;
  }

  .course-hero__side-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    position: absolute;
    left: -8px;
    top: 30px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(80, 75, 70, 0.44);
  }

  .course-hero__content {
    padding-left: clamp(0px, 3vw, 34px);
  }

  .course-hero__title {
    max-width: 680px;
    margin: 0;
    font-size: clamp(2rem, 2.2vw + 1.35rem, 3.75rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
    font-weight: 650;
  }

  .course-hero .eyebrow {
    font-size: 11px;
  }

  .course-hero__text {
    max-width: 620px;
    margin: clamp(18px, 2.5vw, 24px) 0 0;
    font-size: clamp(0.98rem, 0.25vw + 0.92rem, 1.08rem);
    line-height: 1.86;
    color: var(--zinc-600);
  }

  .course-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: clamp(22px, 3vw, 30px);
  }

  .imag {
    position: relative;
    align-self: start;
    height: fit-content;
    border: 1px solid rgba(213, 207, 198, 0.86);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 16px;
    margin-top: 23px;
  }

  .imag img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 28px;
  }

  .schedule {
    max-width: min(980px, 100%);
    margin: 0 auto;
    padding: 10px 0 6px;
  }

  .schedule__title {
    text-align: center;
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    letter-spacing: -0.04em;
  }

  .schedule__rule {
    height: 1px;
    background: rgba(213, 207, 198, 0.86);
    margin: 28px 0;
  }

  .schedule__row {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    padding: 26px 0;
    border-top: 1px solid rgba(213, 207, 198, 0.5);
    border-bottom: 1px solid rgba(213, 207, 198, 0.5);
  }

  .schedule__date {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.15;
  }

  .schedule__date span {
    display: block;
    margin-top: 6px;
    font-size: 1.15rem;
    font-weight: 700;
  }

  .schedule__desc {
    font-size: 1.25rem;
    line-height: 1.35;
    color: rgba(24, 24, 27, 0.74);
  }

  .course-benefits .service-card {
    border: 1px solid rgba(213, 207, 198, 0.86);
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition:
      transform var(--ease),
      box-shadow var(--ease),
      border-color var(--ease);
  }

  .course-benefits .service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
      90deg,
      var(--accent) 0%,
      rgba(185, 122, 53, 0.18) 100%
    );
    opacity: 0;
    transition: opacity var(--ease);
  }

  .course-benefits .service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(185, 122, 53, 0.22);
  }

  .course-benefits .service-card:hover::before {
    opacity: 1;
  }

  /* Галочка и отступы теперь задаются через единый класс .service-card--check в style.css */

  .course-roadmap {
    position: relative;
    display: grid;
    gap: clamp(16px, 2vw, 22px);
    padding: 18px 0;
    width: min(860px, 100%);
    margin: 0 auto;
  }

  .course-roadmap::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 34px;
    bottom: 34px;
    width: 1px;
    background: rgba(213, 207, 198, 0.32);
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
  }

  .course-roadmap__item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
    align-items: center;
  }

  .course-roadmap__dot {
    grid-column: 2;
    justify-self: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background:
      radial-gradient(
        circle at top right,
        rgba(185, 122, 53, 0.12),
        transparent 30%
      ),
      linear-gradient(
        180deg,
        rgba(255, 252, 248, 0.96) 0%,
        rgba(255, 255, 255, 0.98) 100%
      );
    border: 2px solid rgba(213, 207, 198, 0.78);
    position: relative;
    z-index: 2;
  }

  .course-roadmap__content {
    max-width: 360px;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 650;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.92);
    padding-inline: 2px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
  }

  .course-program {
    max-width: min(980px, 100%);
    margin: 0 auto;
    display: grid;
    gap: clamp(22px, 2.5vw, 28px);
    justify-items: center;
  }

  .course-program__title {
    width: 100%;
    margin: 0;
    padding-left: 0;
    box-sizing: border-box;
    text-align: center;
  }

  .course-program__subtitle {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
  }

  #program .dark-block::before {
    display: none;
  }

  .course-roadmap__item:nth-child(odd) .course-roadmap__content {
    grid-column: 1;
    justify-self: end;
    text-align: right;
    padding-right: 0;
  }

  .course-roadmap__item:nth-child(even) .course-roadmap__content {
    grid-column: 3;
    justify-self: start;
    text-align: left;
    padding-left: 22px;
  }

  @media (max-width: 767px) {
    .course-roadmap::before {
      left: 14px;
      top: 18px;
      bottom: 18px;
      transform: none;
    }

    .course-roadmap__item {
      grid-template-columns: 28px minmax(0, 1fr);
      gap: 14px;
      align-items: start;
    }

    .course-roadmap__dot {
      grid-column: 1;
      margin-top: 2px;
      width: 18px;
      height: 18px;
    }

    .course-roadmap__content {
      grid-column: 2;
      max-width: none;
      padding: 0 !important;
      text-align: center !important;
    }
  }

  @media (max-width: 767px) {
    .schedule__row {
      grid-template-columns: 1fr;
      gap: 14px;
      padding: 22px 0;
      text-align: center;
    }

    .schedule__date,
    .schedule__desc {
      text-align: center;
    }

    .schedule__desc {
      font-size: 1.1rem;
    }
    
  }

  .course-board {
    position: relative;
    min-height: 480px;
    border: 1px solid rgba(213, 207, 198, 0.86);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-md);
    overflow: hidden;
  }

  .course-board::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(185, 122, 53, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(185, 122, 53, 0.06) 1px, transparent 1px);
    background-size: 44px 44px;
  }

  .course-board__card {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(213, 207, 198, 0.92);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
    padding: 26px 28px;
  }

  .course-board__card--main {
    top: 58px;
    left: 54px;
    right: 54px;
    min-height: 170px;
    display: grid;
    align-content: center;
    text-align: center;
  }

  .course-board__card--dark {
    right: 52px;
    bottom: 86px;
    width: min(360px, calc(100% - 104px));
    background: linear-gradient(155deg, #0f0f12 0%, #1a1714 100%);
    color: var(--white);
  }

  .course-board__card--small {
    left: 60px;
    bottom: 76px;
    width: 280px;
  }

  .course-board__label {
    margin: 0;
    font-size: 1rem;
    color: var(--zinc-500);
  }

  .course-board__title {
    margin: 8px 0 0;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 650;
  }

  .course-board__title--dark {
    color: var(--white);
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.26);
  }

  .course-board__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .course-board__chip {
    padding: 8px 12px;
    border: 1px solid rgba(185, 122, 53, 0.2);
    border-radius: 999px;
    background: rgba(242, 228, 211, 0.48);
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .course-board__line {
    position: absolute;
    z-index: 0;
    border-top: 3px dashed rgba(185, 122, 53, 0.68);
  }

  .course-board__line--one {
    left: 25%;
    right: 25%;
    top: 56%;
  }

  .course-board__line--two {
    right: 18%;
    bottom: 38%;
    height: 112px;
    border-top: 0;
    border-left: 3px dashed rgba(185, 122, 53, 0.68);
  }

  .course-board__dot {
    width: 34px;
    height: 34px;
    margin-top: 20px;
    border-radius: 999px;
    background: radial-gradient(
      circle at center,
      #f5d2aa 0%,
      var(--accent) 58%,
      var(--accent-dark) 100%
    );
    box-shadow: 0 0 0 12px rgba(185, 122, 53, 0.12);
  }

  .course-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
  }

  .course-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(213, 207, 198, 0.95);
    background: rgba(255, 255, 255, 0.9);
    color: var(--zinc-700);
    font-size: 0.92rem;
    font-weight: 600;
  }

  .course-tab--active {
    border-color: rgba(9, 9, 11, 0.86);
    background: var(--black);
    color: var(--white);
    box-shadow: var(--shadow-md);
  }

  .course-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .course-card-number {
    position: absolute;
    right: 24px;
    top: 20px;
    font-size: 3.2rem;
    line-height: 1;
    letter-spacing: -0.06em;
    color: rgba(185, 122, 53, 0.12);
    font-weight: 700;
  }

  .course-result-list {
    display: grid;
    gap: 14px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
  }

  .course-result-list li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
  }

  .course-result-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.78em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #efbf82;
  }

  .program-timeline {
    display: grid;
    gap: 14px;
  }

/* Стили .program-disclosure теперь в общем style.css */

  .program-item {
    border: 1px solid rgba(213, 207, 198, 0.86);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
  }

  .program-item summary {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    cursor: pointer;
    list-style: none;
  }

  .program-item summary::-webkit-details-marker {
    display: none;
  }

  .program-item__title {
    font-size: 1.14rem;
    line-height: 1.45;
    font-weight: 650;
    min-width: 0;
  }

  .program-item__icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(213, 207, 198, 0.9);
    color: var(--accent-dark);
    transition: transform var(--ease);
    position: relative;
    right: 21px;
    top: 2px;
  }

  .program-item[open] .program-item__icon {
    transform: rotate(45deg);
  }

  .program-item__content {
    padding: 0 24px 24px;
    color: var(--zinc-600);
    line-height: 1.85;
  }

  .program-item__content ul {
    display: grid;
    gap: 6px;
    margin: 12px 0 0;
    padding-left: 28px;
  }

  .course-form-card {
    padding: 28px;
  }

  @media (min-width: 768px) {
    #requestForm .cta-block__grid > div:first-child {
      transform: translateX(-12px);
    }
  }

  @media (max-width: 1023px) {
    .course-hero__inner {
      grid-template-columns: 1fr;
    }

    .course-hero__content {
      padding-left: 0;
    }

    .course-hero__side-label {
      display: none;
    }

    .imag {
      padding: 14px;
    }

    .course-board {
      min-height: auto;
      display: grid;
      gap: 14px;
      padding: 18px;
    }

    .course-board__card {
      position: relative;
      inset: auto;
      width: 100%;
    }

    .course-board__line {
      display: none;
    }

    .course-board__card--main {
      min-height: 0;
    }

    .course-board__card--small,
    .course-board__card--dark {
      width: 100%;
    }

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

  @media (max-width: 767px) {
    .course-hero {
      padding: 68px 0 54px;
    }

    .course-hero .eyebrow {
      margin-bottom: 10px;
    }

    .course-hero__text {
      margin-top: 14px;
    }

    /* course-automation.html (мобилка): картинка выше, кнопки ниже */
    .page-automation .course-hero__content {
      display: contents;
    }

    .page-automation .course-hero .eyebrow,
    .page-automation .course-hero__title,
    .page-automation .course-hero__text {
      text-align: center;
    }

    .page-automation .course-hero__actions {
      grid-row: 5;
      margin-top: 16px;
    }

    .page-automation .imag {
      grid-row: 4;
      margin-top: 14px;
    }

    .imag {
      margin-top: 14px;
      border-radius: 28px;
      padding: 12px;
    }

    .page-automation #requestForm .cta-block__grid > div:first-child,
    .page-automation #requestForm .section-title,
    .page-automation #requestForm .cta-block__text {
      text-align: center;
    }

    .page-automation #requestForm .cta-block__grid > div:first-child {
      margin-left: auto;
      margin-right: auto;
    }

    .page-automation .course-benefits .section-head,
    .page-automation .course-benefits .section-title {
      text-align: center;
    }

    .program-item summary {
      padding: 18px 16px;
      gap: 12px;
    }

    .program-item__icon {
      right: 0;
      flex-shrink: 0;
    }

    .program-item__content {
      padding: 0 16px 18px;
    }

    .course-form-card {
      padding: 22px 18px;
    }

    .schedule__title {
      font-size: clamp(1.55rem, 5vw, 2.2rem);
    }
  }

  @media (max-width: 639px) {
    .course-info-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 479px) {
    .course-hero__actions {
      flex-direction: column;
    }

    .course-hero__actions .button {
      width: 100%;
      justify-content: center;
    }
  }

  @media (min-width: 1440px) {
    .schedule,
    .course-program {
      max-width: min(1040px, 100%);
    }

    .course-roadmap {
      width: min(920px, 100%);
    }
  }

  @media (min-width: 1600px) {
    .schedule,
    .course-program {
      max-width: min(1120px, 100%);
    }

    .course-roadmap {
      width: min(980px, 100%);
    }

    .course-hero__inner {
      gap: clamp(40px, 3.5vw, 64px);
    }

    .course-hero__title {
      max-width: min(720px, 100%);
    }
  }

  @media (min-width: 1920px) {
    .schedule,
    .course-program {
      max-width: min(1200px, 100%);
    }

    .course-roadmap {
      width: min(1040px, 100%);
    }

    .course-hero {
      padding: clamp(88px, 5vw, 104px) 0 clamp(72px, 4vw, 88px);
    }

    .course-hero__title {
      max-width: min(760px, 100%);
    }
  }

  @media (min-width: 2300px) {
    .schedule,
    .course-program {
      max-width: min(1280px, 100%);
    }

    .course-roadmap {
      width: min(1100px, 100%);
    }
  }

  @media (min-width: 2200px) and (min-aspect-ratio: 2/1) {
    .schedule,
    .course-program {
      max-width: min(1320px, 100%);
    }

    /* ultrawide: увеличиваем блок "Ближайший запуск" */
    .schedule {
      padding: 18px 0 12px;
    }

    .schedule__title {
      font-size: clamp(2.6rem, 2.4vw + 1.4rem, 3.4rem);
      letter-spacing: -0.05em;
    }

    .schedule__rule {
      margin: 36px 0;
    }

    .schedule__row {
      grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
      gap: 46px;
      padding: 34px 0;
    }

    .schedule__date {
      font-size: 1.7rem;
    }

    .schedule__date span {
      font-size: 1.3rem;
    }

    .schedule__desc {
      font-size: 1.42rem;
      line-height: 1.45;
    }

    /* ultrawide: блок "галочек" (benefits) — увеличиваем кружок и отступы */
    .course-benefits .service-card {
      padding: 30px;
      border-radius: 32px;
    }

    .course-benefits .service-card--check .service-card__title {
      padding-left: 64px;
    }

    .course-benefits .service-card--check .service-card__title::before {
      width: 46px;
      height: 46px;
      box-shadow:
        inset 0 0 0 1px rgba(185, 122, 53, 0.22),
        0 14px 28px rgba(19, 20, 22, 0.08);
    }

    .course-benefits .service-card--check .service-card__title::after {
      left: 16px;
      width: 14px;
      height: 9px;
      margin-top: -7px;
      border-left-width: 3px;
      border-bottom-width: 3px;
    }

    .course-benefits .service-card--check .card__text {
      padding-left: 64px;
      font-size: 1.08rem;
      line-height: 1.75;
    }

    /* ultrawide: увеличиваем блок "Подробная программа курса" */
    .program-disclosure__summary {
      padding: clamp(26px, 1.6vw, 36px) clamp(28px, 1.8vw, 40px);
    }

    .program-disclosure__title {
      font-size: clamp(1.3rem, 0.5vw + 1.1rem, 1.6rem);
    }

    .program-disclosure__subtitle {
      font-size: clamp(0.96rem, 0.18vw + 0.9rem, 1.08rem);
    }

    .program-disclosure__icon {
      width: clamp(48px, 2vw, 58px);
      height: clamp(48px, 2vw, 58px);
    }

    .program-disclosure__content {
      padding: 0 clamp(28px, 1.8vw, 40px) clamp(28px, 1.6vw, 36px);
    }

    .program-item summary {
      padding: 26px 28px;
    }

    .program-item__title {
      font-size: 1.24rem;
      line-height: 1.4;
    }

    .program-item__icon {
      width: 42px;
      height: 42px;
    }

    .program-item__content {
      font-size: 1.12rem;
      line-height: 1.85;
    }

    .program-item__content ul {
      font-size: inherit;
    }

    /* ultrawide: блок заявки (#requestForm) — текст крупнее и по центру */
    #requestForm .cta-block__grid {
      align-items: center;
    }

    #requestForm .cta-block {
      padding-top: clamp(92px, 4.4vw, 132px);
    }

    #requestForm .cta-block__grid > div:first-child {
      justify-self: start;
      text-align: left;
      max-width: min(860px, 42vw);
    }

    #requestForm .section-title {
      font-size: clamp(2.22rem, 0.95vw + 1.68rem, 2.95rem);
      line-height: 1.06;
      text-align: left;
    }

    #requestForm .cta-block__text {
      max-width: none;
      font-size: clamp(1.08rem, 0.26vw + 1.02rem, 1.38rem);
      line-height: 1.85;
      text-align: left;
    }

    .course-roadmap {
      width: min(1120px, 100%);
    }

    .course-hero__inner {
      grid-template-columns: minmax(0, 1fr) minmax(0, min(58vw, 920px));
      gap: clamp(56px, 3.2vw, 84px);
    }

    /* ultrawide: размеры как на скринах */
    .course-hero .eyebrow {
      font-size: 16px !important;
    }

    .course-hero__title {
      max-width: 1111px;
    }

    .course-hero__text {
      max-width: 1000px;
      margin: 36px 0 0;
      font-size: 27px;
      line-height: 1.86;
    }

    .course-hero__actions .button {
      min-height: 64px !important;
      padding-top: 18px !important;
      padding-bottom: 18px !important;
      font-size: 21px !important;
    }

    /* ultrawide: делаем картинку в hero больше */
    .imag {
      max-width: min(1040px, 64vw);
      padding: 22px;
      margin-top: 6px;
      border-radius: 44px;
    }

    .imag img {
      border-radius: 36px;
    }
  }

/* Программа курса (#program): усиливаем видимость центральной timeline-линии */
#program .course-roadmap {
  position: relative;
  isolation: isolate;
}

#program .course-roadmap::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 34px !important;
  bottom: 34px !important;
  width: 2px !important;
  background: rgba(255, 255, 255, 0.42) !important;
  transform: translateX(-50%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

#program .course-roadmap__dot {
  position: relative;
  z-index: 3 !important;
}

#program .course-roadmap__content {
  position: relative;
  z-index: 2 !important;
}

@media (max-width: 767px) {
  /* Программа курса (#program): на мобилке — список-карточки вместо timeline */
  #program {
    scroll-margin-top: calc(var(--mobile-header-height, 76px) + 14px);
  }

  #program .course-program {
    gap: 16px;
  }

  #program .course-program__subtitle {
    margin-top: 2px;
  }

  #program .course-roadmap {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 0;
    gap: 12px;
    counter-reset: programStep;
  }

  #program .course-roadmap::before {
    display: none !important;
  }

  #program .course-roadmap__dot {
    display: none !important;
  }

  #program .course-roadmap__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 16px 16px;
    border-radius: 20px;
    background: rgba(255, 252, 248, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    counter-increment: programStep;
  }

  #program .course-roadmap__item::before {
    content: counter(programStep, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 650;
    letter-spacing: 0.06em;
    line-height: 1;
    margin-top: 2px;
    box-sizing: border-box;
  }

  #program .course-roadmap__content {
    grid-column: 2;
    max-width: none;
    padding: 0 !important;
    text-align: left !important;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.86);
  }
}