@media (max-width: 720px) {
  .header {
    --header-h: 72px;
  }

  .header__inner {
    gap: 0.75rem;
    min-height: var(--header-h);
  }

  .header__logo img {
    height: 40px;
  }

  .header__burger {
    z-index: 42;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 0;
    z-index: 39;
    border: 0;
    background: rgba(24, 38, 62, 0.38);
    cursor: pointer;
  }

  .header__nav {
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: auto;
    width: min(304px, 86vw);
    height: calc(100dvh - var(--header-h));
    z-index: 41;
    padding: 1.75rem 1.25rem 2rem;
    gap: 1rem;
    overflow-y: auto;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    box-shadow: -16px 0 32px rgba(40, 60, 90, 0.16);
  }

  .header__link {
    min-height: 44px;
    font-size: 1.5rem;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .header__link--img {
    min-height: 52px;
    justify-content: center;
    width: 100%;
  }

  .header__link--img img {
    height: 46px;
    width: auto;
    margin: 0 auto;
  }

  .header__cta-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin-top: 0.85rem;
    min-height: 3.35rem;
    padding: 1.1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    gap: 0.75rem;
  }

  .header__cta-mobile span {
    display: inline-flex;
    align-items: center;
    line-height: 1;
  }

  .header__cta-mobile img {
    display: block;
    flex-shrink: 0;
  }
}
