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

  .neway-directions {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);

    padding: 120px 24px;

    font-family: Arial, Helvetica, sans-serif;
    color: #041f37;

    background:
      radial-gradient(
        circle at 12% 10%,
        rgba(21, 155, 210, 0.1),
        transparent 25rem
      ),
      #f7fbff;
  }

  .neway-directions__inner {
    width: min(1280px, 100%);
    margin: auto;
  }

  /* ================================
     Intro
     ================================ */

  .neway-directions__intro {
    max-width: 820px;
    margin: auto;
    text-align: center;
  }

  .neway-directions__eyebrow {
    margin: 0;

    color: #07536b;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
  }

  .neway-directions__intro h2 {
    margin: 14px 0 0;

    font-size: clamp(40px, 5.1vw, 70px);
    font-weight: 600;

    line-height: 0.98;

    letter-spacing: -0.065em;

    /* 桌面端保持一整行 */
    white-space: nowrap;
  }

  .neway-directions__intro > p:last-child {
    max-width: 560px;

    margin: 20px auto 0;

    color: #5e7482;

    font-size: 17px;

    line-height: 1.55;
  }

  /* ================================
     Cards Grid
     ================================ */

  .neway-directions__grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    margin-top: 66px;
  }

  /* ================================
     Cards
     ================================ */

  .neway-direction-card {
    min-height: 480px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 28px;

    border: 1px solid transparent;
    border-radius: 22px;

    box-shadow:
      0 16px 42px rgba(16, 47, 66, 0.1);

    text-decoration: none;

    transition:
      transform 0.32s ease,
      box-shadow 0.32s ease;
  }

  .neway-direction-card:hover {
    position: relative;
    z-index: 1;

    box-shadow:
      0 25px 56px rgba(16, 47, 66, 0.19);

    transform:
      scale(1.045)
      translateY(-8px);
  }

  /* ================================
     Export
     ================================ */

  .neway-direction-card--export {
    color: #fff;

    background:
      linear-gradient(
        145deg,
        #07536b,
        #159bd2
      );
  }

  /* ================================
     Import
     ================================ */

  .neway-direction-card--import {
    color: #fff;

    background:
      linear-gradient(
        145deg,
        #041f37,
        #07536b
      );
  }

  /* ================================
     Brand
     ================================ */

  .neway-direction-card--brand {
    color: #041f37;

    border-color: #c9e1ea;

    background: #e1f0f8;
  }

  /* ================================
     Card Number
     ================================ */

  .neway-direction-card__number {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    opacity: 0.8;
  }

  /* ================================
     Card Title
     ================================ */

  .neway-direction-card__title {
    margin: auto 0;

    font-size: clamp(30px, 3.1vw, 48px);

    font-weight: 700;

    line-height: 0.94;

    letter-spacing: -0.06em;
  }

  /* ================================
     Card Description
     ================================ */

  .neway-direction-card__bottom {
    font-size: 14px;

    line-height: 1.52;

    opacity: 0.9;
  }

  /* ================================
     View More
     ================================ */

  .neway-direction-card__link {
    display: inline-block;

    margin-top: 24px;

    padding-bottom: 5px;

    border-bottom: 1px solid currentColor;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
  }


  /* ================================
     Tablet
     ================================ */

  @media (max-width: 900px) {

    .neway-directions__intro h2 {
      white-space: normal;
    }

    .neway-directions__grid {
      grid-template-columns: 1fr;
    }

  }


  /* ================================
     Mobile
     ================================ */

  @media (max-width: 560px) {

    .neway-directions {
      padding: 76px 18px;
    }

    .neway-directions__intro h2 {
      white-space: normal;
    }

    .neway-directions__grid {
      gap: 16px;

      margin-top: 44px;
    }

    .neway-direction-card {
      min-height: 380px;
    }

    .neway-direction-card:hover {
      transform:
        scale(1.018)
        translateY(-4px);
    }

  }
