.course-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 76px;
    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%
      );
  }

  .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(360px, 1.1fr);
    gap: 56px;
    align-items: center;
  }

  .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: 34px;
  }

  .course-hero__title {
    max-width: 680px;
    margin: 0;
    font-size: 65px;
    line-height: 65px;
    letter-spacing: -1px;
    font-weight: 650;
  }

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

  .course-hero__text {
    max-width: 620px;
    margin: 24px 0 0;
    font-size: 1.05rem;
    line-height: 1.86;
    color: var(--zinc-600);
  }

  .course-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 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;
  }

  /* Обычный адаптив (не мобилка и не ultrawide): уменьшаем hero-картинку,
     чтобы она не наезжала на заголовок */
  @media (min-width: 768px) and (max-width: 2199px) {
    body.page-finance .course-hero__inner {
      grid-template-columns: minmax(0, 520px) minmax(320px, 520px);
      gap: 40px;
      align-items: start;
      max-width: 1120px;
      margin-left: auto;
      margin-right: auto;
    }

    body.page-finance .course-hero__content {
      padding-left: 24px;
      max-width: 520px;
    }

    body.page-finance .course-hero__title {
      max-width: 520px;
      font-size: clamp(42px, 3.1vw, 54px);
      line-height: 1.02;
      letter-spacing: -0.04em;
    }

    body.page-finance .course-hero__text {
      max-width: 520px;
    }

    body.page-finance .course-hero .imag {
      justify-self: end;
      max-width: min(520px, 40vw);
      padding: 12px;
      border-radius: 28px;
      margin-top: 8px;
    }

    body.page-finance .course-hero .imag img {
      border-radius: 20px;
    }
  }

  .schedule {
    max-width: 980px;
    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: 22px;
    padding: 18px 0;
    width: min(860px, 100%);
    margin: 0 auto;
  }

  .course-roadmap::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(-50%);
    z-index: 0;
  }

  .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: 0;
  }

  .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: 980px;
    margin: 0 auto;
    display: grid;
    gap: 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) {
  body.page-finance .course-benefits .section-head,
  body.page-finance .course-benefits .section-title {
    text-align: center;
  }

    .course-roadmap::before {
      left: 14px;
      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;
    }

    .schedule__desc {
      font-size: 1.1rem;
    }

  }

  @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: center !important;
      font-size: 1rem;
      font-weight: 600;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.86);
    }
  }

  @media (max-width: 767px) {
    body.page-finance #requestForm .cta-block__grid > div:first-child,
    body.page-finance #requestForm .section-title,
    body.page-finance #requestForm .cta-block__text {
      text-align: center;
    }

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

  .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;
  }

  .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: 8px;
    margin: 14px 0 0;
    padding-left: 18px;
  }

  .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,
    .course-info-grid {
      grid-template-columns: 1fr;
    }

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

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

    .imag {
      padding: 14px;
    }
  }

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

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

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

    .page-finance .imag {
      grid-row: 4 !important;
      margin-top: 14px !important;
    }

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

    .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%;
    }
}

@media (min-width: 1800px) and (min-aspect-ratio: 21/10) {
  body.page-finance .course-hero__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
    gap: clamp(44px, 3vw, 72px);
  }

  body.page-finance #program .dark-block {
    padding: clamp(76px, 3.2vw, 104px) clamp(72px, 3vw, 96px);
    border-radius: clamp(34px, 1.1vw, 44px);
  }

  body.page-finance #program .course-program {
    max-width: min(1320px, 70vw);
    gap: clamp(24px, 1.8vw, 36px);
  }

  body.page-finance #program .course-program__title {
    font-size: clamp(2.8rem, 1.6vw + 2.1rem, 3.6rem);
    line-height: 1.08;
  }

  body.page-finance #program .course-program__subtitle {
    font-size: clamp(1.25rem, 0.5vw + 1.05rem, 1.6rem);
    line-height: 1.55;
  }

  body.page-finance #program .course-roadmap {
    width: min(1120px, 62vw);
    gap: clamp(18px, 1.2vw, 26px);
    padding: clamp(18px, 1.2vw, 28px) 0;
  }

  body.page-finance #program .course-roadmap::before {
    width: 2px;
    background: rgba(255, 255, 255, 0.28);
    z-index: 1;
  }

  body.page-finance #program .course-roadmap__dot {
    width: clamp(22px, 1.1vw, 28px);
    height: clamp(22px, 1.1vw, 28px);
    border-width: 2px;
    z-index: 2;
  }

  body.page-finance #program .course-roadmap__item {
    grid-template-columns: minmax(0, 1fr) clamp(56px, 2.6vw, 72px) minmax(0, 1fr);
  }

  body.page-finance #program .course-roadmap__content {
    max-width: clamp(420px, 16vw, 560px);
    font-size: clamp(1.15rem, 0.34vw + 1.02rem, 1.45rem);
    line-height: 1.45;
  }

  body.page-finance .program-disclosure__summary {
    padding: clamp(26px, 1.6vw, 36px) clamp(28px, 1.8vw, 40px);
  }

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

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

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

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

  body.page-finance .program-item summary {
    padding-left: clamp(34px, 2.2vw, 54px);
    padding-right: clamp(34px, 2.2vw, 54px);
    padding-top: clamp(24px, 1.4vw, 32px);
    padding-bottom: clamp(24px, 1.4vw, 32px);
  }

  body.page-finance .program-item__title {
    font-size: clamp(1.35rem, 0.5vw + 1.15rem, 1.7rem);
    line-height: 1.35;
  }

  body.page-finance .program-item__content {
    padding-left: clamp(34px, 2.2vw, 54px);
    padding-right: clamp(34px, 2.2vw, 54px);
    padding-bottom: clamp(28px, 1.8vw, 40px);
    font-size: clamp(1.15rem, 0.36vw + 1.02rem, 1.4rem);
    line-height: 1.75;
  }

  body.page-finance .program-item__content ul {
    padding-left: 24px;
    gap: 12px;
  }

  body.page-finance .program-item__content li {
    font-size: inherit;
    line-height: inherit;
  }

  body.page-finance #requestForm .cta-block__grid {
    align-items: center;
  }

  body.page-finance #requestForm .cta-block__grid > div:first-child {
    justify-self: center;
    text-align: center;
    max-width: min(980px, 46vw);
  }

  body.page-finance #requestForm .section-title {
    text-align: center;
  }

  body.page-finance #requestForm .cta-block__text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  body.page-finance .schedule {
    max-width: min(1240px, 58vw);
    padding: 14px 0 10px;
  }

  body.page-finance .schedule__title {
    font-size: clamp(2.6rem, 1.6vw + 1.85rem, 3.35rem);
    letter-spacing: -0.05em;
  }

  body.page-finance .schedule__rule {
    margin: 28px 0;
  }

  body.page-finance .schedule__row {
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    gap: 34px;
    padding: 24px 0;
  }

  body.page-finance .schedule__date {
    font-size: 1.7rem;
    line-height: 1.12;
  }

  body.page-finance .schedule__date span {
    font-size: 1.3rem;
    margin-top: 8px;
  }

  body.page-finance .schedule__desc {
    font-size: 1.35rem;
    line-height: 1.5;
  }

  body.page-finance .course-hero .imag {
    width: min(980px, 46vw);
    max-width: none;
    padding: 16px;
    margin-top: 0;
    justify-self: end;
  }

  body.page-finance .course-hero .imag img {
    border-radius: 22px;
  }

  body.page-finance .course-hero .eyebrow {
    font-size: 16px;
  }

  body.page-finance .course-hero__title {
    max-width: 1920px;
    font-size: 76px;
    line-height: 69px;
    letter-spacing: -1px;
    font-weight: 650;
  }

  body.page-finance .course-hero__text {
    max-width: 997px;
    font-size: 24px;
    line-height: 1.86;
  }

  body.page-finance .button {
    min-height: 64px;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 21px;
  }
}

/* Большие экраны (в т.ч. 2560×1080): заголовок + текст заявки — не по центру */
@media (min-width: 1600px) {
  body.page-finance #requestForm .cta-block__grid > div:first-child {
    justify-self: start;
    text-align: left;
  }

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

  body.page-finance #requestForm .cta-block__text {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(1.08rem, 0.26vw + 1.02rem, 1.38rem);
    line-height: 1.85;
  }
}