/* ================= FEATURES SECTION ================= */
.features-section {
  padding: 80px 70px;
  background: url("../../images/Rectangle 30.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.features-wrapper {
  max-width: 1320px;
  margin: auto;
}

/* TITLE */
.section-title {
  font-family: "EB Garamond", serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 40px;
  position: relative;
  /* padding-left: 22px; */
}

.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: -4px;
    width: 33px;
    height: 5px;
    background: #ed1c24;
    border-radius: 8px;
}

/* LAYOUT */
.features-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* LEFT LIST */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FEATURE CARD */
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  /* background: url("../../clg-img/Group\ 1263.png") no-repeat center  ;
  background-size: cover; */

  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #ed1c24, #ffffff) border-box;

  border: 2px solid transparent;
}

/* NUMBER */
.feature-no {
  position: relative;
  min-width: 36px;
  height: 36px;
  background: #ed1c24;
  color: #fff;
  border-radius: 50%;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.feature-no::before {
  content: "";
  position: absolute;
  inset: -2px; /* border thickness */
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a6a, #c40000);
  z-index: -1;
}

/* TEXT */
.feature-item h4 {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.feature-item p {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  color: #666;
}

/* RIGHT IMAGE */
.features-image {
  overflow: hidden;
  /* width: 725px;
  height: 457px; */
}

.features-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-right: 15px solid  #ED1C24; */
  /* deep red */
  border-radius: 12px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .features-content {
    grid-template-columns: 1fr;
  }

  .features-image {
    order: -1;
  }
}

@media (max-width: 600px) {
  .features-section {
    padding: 30px 35px;
  }

  .section-title {
    font-size: 30px;
  }
}
