
  .neway-testimonials-block,
  .neway-testimonials-block * {
    box-sizing: border-box;
  }

  .neway-testimonials-block {
    --neway-blue: #24aade;
    --neway-navy: #122139;
    --neway-muted: #71859a;
    --neway-line: #cbd8e3;
    --neway-surface: #f8fafc;

    width: 100%;
    background: var(--neway-surface);
    color: var(--neway-navy);
    padding: 70px 64px 52px;
    font-family: Arial, Helvetica, sans-serif;
  }

  .neway-testimonials-block button {
    font-family: inherit;
  }

  .neway-testimonials-eyebrow,
  .neway-testimonials-category {
    margin: 0;
    color: var(--neway-blue);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
  }

  .neway-testimonials-eyebrow {
    margin-bottom: 24px;
  }

  .neway-testimonials-title {
    margin: 0;
    color: var(--neway-navy);
    font-size: clamp(42px, 5.4vw, 92px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.055em;
    white-space: nowrap;
  }

  .neway-testimonials-content {
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    gap: 48px;
    min-height: 280px;
    margin-top: 62px;
    padding-top: 48px;
    border-top: 1px solid var(--neway-line);
  }

  .neway-testimonials-category {
    padding-top: 8px;
  }

  .neway-testimonials-quote {
    margin: 0;
    color: var(--neway-navy);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(23px, 2.4vw, 41px);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.025em;
  }

  .neway-testimonials-controls {
    display: grid;
    grid-template-columns: 0.55fr 1fr auto;
    gap: 48px;
    align-items: center;
    margin-top: 42px;
  }

  .neway-testimonials-counter {
    margin: 0;
    color: var(--neway-muted);
    font-size: 16px;
  }

  .neway-testimonials-current {
    color: var(--neway-navy);
    font-size: 22px;
    font-weight: 500;
  }

  .neway-testimonials-total {
    margin-left: 7px;
  }

  .neway-testimonials-dots {
    display: flex;
    align-items: center;
    gap: 11px;
  }

  .neway-testimonials-dot {
    width: 30px;
    height: 3px;
    padding: 0;
    border: 0;
    background: #c7d4df;
    cursor: pointer;
  }

  .neway-testimonials-dot.is-active {
    background: var(--neway-blue);
  }

  .neway-testimonials-arrows {
    display: flex;
    gap: 10px;
  }

  .neway-testimonials-arrow {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--neway-line);
    border-radius: 50%;
    background: transparent;
    color: var(--neway-navy);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition:
      background-color 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease;
  }

  .neway-testimonials-arrow:hover {
    background: var(--neway-blue);
    border-color: var(--neway-blue);
    color: #ffffff;
  }

  @media (max-width: 760px) {
    .neway-testimonials-block {
      padding: 42px 24px 30px;
    }

    .neway-testimonials-title {
      font-size: clamp(25px, 8vw, 40px);
    }

    .neway-testimonials-content {
      grid-template-columns: 1fr;
      gap: 24px;
      min-height: 400px;
      margin-top: 40px;
      padding-top: 30px;
    }

    .neway-testimonials-controls {
      grid-template-columns: 1fr auto;
      gap: 20px;
    }

    .neway-testimonials-dots {
      grid-column: 1 / -1;
      grid-row: 1;
    }

    .neway-testimonials-counter {
      grid-column: 1;
      grid-row: 2;
    }

    .neway-testimonials-arrows {
      grid-column: 2;
      grid-row: 2;
    }
  }
