/* ==========================================================================
   why_choose — about/intro (copy + image) with a row of feature cards.
   ========================================================================== */

.biz-why {
  background-color: #fff;
  padding: 5rem 0;
}

.biz-why__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0.75rem;
}

/* Intro */
.biz-why__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .biz-why__intro { grid-template-columns: 1fr 1fr; }
}

.biz-why__heading {
  color: var(--color-primary, #012269);
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 2.25rem;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.biz-why__text {
  color: #4b5563;
  font-size: 1.05rem;
}

.biz-why__image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.biz-why__image img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .18);
}

/* Feature cards */
.biz-why__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  .biz-why__features { grid-template-columns: repeat(4, 1fr); }
}

.biz-why__card {
  background-color: #eff6ff;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow .3s ease;
}
.biz-why__card:hover { box-shadow: 0 10px 24px rgba(15, 23, 42, .12); }

.biz-why__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  background-color: var(--color-primary, #012269);
  color: #fff;
}
.biz-why__card-icon svg { width: 28px; height: 28px; }

/* Custom pasted SVG markup may hard-code its own colors — force it white to
   match the built-in icon set regardless of what the admin pasted in. */
.biz-why__card-icon--custom svg,
.biz-why__card-icon--custom svg * {
  fill: currentColor !important;
  stroke: currentColor !important;
  color: #fff !important;
}

.biz-why__card-title {
  color: #1f2937;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 .5rem;
}
.biz-why__card-text {
  color: #4b5563;
  font-size: .9rem;
  margin: 0;
  line-height: 1.5;
}
