/* ================= RESET ================= */


/* ================= SECTION ================= */
.greycrust-srvc-1{
  width:96%;
  max-width:1600px;
  margin:auto;
  padding:60px 0;
}

/* ================= GRID ================= */
.greycrust-srvc-2{
  width:100%;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:26px;
}

/* ================= CARD ================= */
.greycrust-srvc-3{
  background:#ebdafe;
  /* background:#caedf7; */
  border:1px solid #ebdafe;
  padding:34px 26px;
  border-radius:18px;
  text-align:center;
  display:flex;
  flex-direction:column;
  transition:0.35s ease;
}

.greycrust-srvc-3:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 32px rgba(0,0,0,0.18);
}

/* ================= ICON ================= */
.greycrust-srvc-4{
  width:60px;
  height:60px;
  margin:0 auto 16px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.greycrust-srvc-4 img{
  width:100%;
  height:100%;
  object-fit:contain;
}

/* ================= TITLE (LONG TEXT SAFE) ================= */
.greycrust-srvc-5{
  font-size:18px;
  font-weight:600;
  color:#0875a4;
  line-height:1.35;
  margin-bottom:8px;

  /* 🔴 CRITICAL FIX */
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

/* ================= DESCRIPTION ================= */
.greycrust-srvc-6{
  font-size:14px;
  color:#0476a8;
  line-height:1.55;
  margin-bottom:16px;
}

/* ================= BUTTON ================= */
.greycrust-srvc-7{
  margin-top:auto;
  padding:10px 22px;
  border:none;
  border-radius:10px;
  background:#ffffff;
  color:#1f9f3a;
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
  cursor:pointer;
  transition:0.3s ease;
}

.greycrust-srvc-7:hover{
  background:#1f9f3a;
  color:#ffffff;
}

/* =================================================
   RESPONSIVE BREAKPOINTS – FULL COVERAGE
================================================= */

/* ≤1400px */
@media (max-width:1400px){
  .greycrust-srvc-2{
    grid-template-columns:repeat(3, 1fr);
  }
}

/* ≤1024px */
@media (max-width:1024px){
  .greycrust-srvc-2{
    grid-template-columns:repeat(3, 1fr);
  }
}

/* ≤900px */
@media (max-width:900px){
  .greycrust-srvc-2{
    grid-template-columns:repeat(2, 1fr);
  }
}

/* ≤768px (MOBILE FIX STARTS HERE) */
@media (max-width:768px){
  .greycrust-srvc-1{
    padding:40px 0;
  }

  .greycrust-srvc-2{
    grid-template-columns:repeat(2, 1fr);
    gap:16px;
  }

  .greycrust-srvc-3{
    aspect-ratio:auto;     /* 🔴 IMPORTANT */
    min-height:220px;      /* keeps alignment */
    padding:18px;
  }

  .greycrust-srvc-4{
    width:44px;
    height:44px;
  }

  .greycrust-srvc-5{
    font-size:1.7rem;
    max-height:3.9em;      /* max 3 lines */
    overflow:hidden;
  }

  .greycrust-srvc-6{
    font-size:1.4rem;
  }

  .greycrust-srvc-7{
    font-size:11px;
    padding:8px 14px;
  }
}

/* ≤480px */
@media (max-width:480px){
  .greycrust-srvc-2{
    gap:12px;
  }

  .greycrust-srvc-3{
    padding:14px;
  }
}

/* ≤360px (320 SAFE) */
@media (max-width:360px){
  .greycrust-srvc-5{
    font-size:13px;
  }

  .greycrust-srvc-6{
    font-size:11.5px;
  }
}