
  .smart-feature-section {
    width: 100%;
    background: #000;
    padding: 0 20px 72px;
    box-sizing: border-box;
  }

  .smart-feature-section * {
    box-sizing: border-box;
  }

  .smart-feature-wrap {
    max-width: 1560px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .smart-feature-card {
    background: #fff;
    overflow: hidden;
    border-radius: 0;
  }

  .smart-feature-img {
    width: 100%;
    aspect-ratio: 953 / 650;
    background: #f3f3f3;
    overflow: hidden;
  }

  .smart-feature-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }

  .smart-feature-content {
    min-height: 160px;
    padding: 40px 22px 36px;
    text-align: center;
    background: #fff;
  }

  .smart-feature-title {
    margin: 0;
    color: #000;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0;
  }

  .smart-feature-desc {
    margin: 20px 0 0;
    color: #555;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 600;
    letter-spacing: 0;
  }

  @media (max-width: 1200px) {
    .smart-feature-section {
      padding: 0 18px 56px;
    }

    .smart-feature-title {
      font-size: 23px;
    }

    .smart-feature-desc {
      font-size: 15px;
    }
  }

  @media (max-width: 768px) {
    .smart-feature-section {
      padding: 0 14px 42px;
    }

    .smart-feature-wrap {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .smart-feature-content {
      min-height: auto;
      padding: 30px 16px 32px;
    }

    .smart-feature-title {
      font-size: 22px;
    }

    .smart-feature-desc {
      margin-top: 12px;
      font-size: 15px;
    }
  }
