 /* ───────────────────────────────────────────
       SECTION
    ─────────────────────────────────────────── */
    .features-section {
      max-width: 1460px;
      margin: 0 auto;
      padding: 0 30px 180px;
    }

    /* ───────────────────────────────────────────
       HEADING
    ─────────────────────────────────────────── */
    .features-section__heading {
  color: #000;
  max-width: 780px;
  margin: 0 auto 35px;
  font-family: Lufga;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0;
  text-align: center;
}

    /* ───────────────────────────────────────────
       GRID
    ─────────────────────────────────────────── */
    .features-section__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 54px 60px;
    }

    /* ───────────────────────────────────────────
       CARD
    ─────────────────────────────────────────── */
    .feature-card {
      display: flex;
      flex-direction: column;
    }

    .feature-card__image-wrapper {
      width: 100%;
      height: 170px;
      border-radius: 10px;
      overflow: hidden;
      background: #f5f5f5;
    }

    .feature-card__image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .feature-card__content {
      display: flex;
      flex-direction: column;
      flex: 1;
      padding-top: 20px;
    }


    .feature-card__title {
      color: #111;
      margin: 5px 0 10px;
      font-family: Lufga;
      font-weight: 500;
      font-size: 20px;
      line-height: 30px;
      letter-spacing: 0;
    }

    .feature-card__desc-wrapper {
      flex: 1;
    }

    .feature-card__description {
      color: rgba(0,0,0,0.8);
      font-family: Lufga;
      font-weight: 400;
      font-size: 15px;
      line-height: 28px;
      letter-spacing: 0;
      padding: 0;
      margin: 0 0 15px;
    }

    .feature-card__link {
      text-decoration: none !important;
      display: inline-block;
      cursor: pointer;
      font-family: Lufga;
      font-size: 14px;
      line-height: 100%;
      letter-spacing: 0.01em;
      -webkit-transition: all 0.5s ease 0s;
      transition: all 0.5s ease 0s;
      padding: 0 0 3px;
      border-bottom: 1px solid #000;
      width: max-content;
      color: #000 !important;
      font-weight: 500 !important;
    }

    .feature-card__link:hover {
      color: #0052cc !important;
      border-color: #0052cc !important;
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1440px
    ─────────────────────────────────────────── */
    @media (max-width: 1440px) {
      .features-section {
  padding: 0 30px 150px;
      }
      .features-section__grid {
  gap: 40px 30px;
}
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1366px
    ─────────────────────────────────────────── */
    @media (max-width: 1366px) {
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1280px
    ─────────────────────────────────────────── */
    @media (max-width: 1280px) {

    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1024px
    ─────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .features-section {
        padding:0 20px 90px;
      }

      .features-section__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 25px;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 991px
    ─────────────────────────────────────────── */
    @media (max-width: 991px) {
     .features-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 767px
    ─────────────────────────────────────────── */
    @media (max-width: 767px) {
      .features-section {
        padding: 0 15px 60px;
      }
    .feature-card__title {
      margin: 5px 0 10px;
      }
    
      .features-section__grid {
        grid-template-columns: 1fr;
        gap: 45px 25px;
      }

      .feature-card__image-wrapper {
        height: auto;
        width: 100%;
      }

    }