/* assets/css/blocks/why-us.css
   Final alignment: grid-based card, heading aligned with content baseline,
   list markers removed, consistent gaps on all breakpoints.
*/
.why-us {
  background:#fff;
  color:#111;
  font-family:"MontserratCustom", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.why-us__wrap {
  max-width:1200px;
  margin:0 auto;
  padding:54px 20px;
  box-sizing:border-box;
}

.why-us__title {
  text-align:center;
  font-weight:800;
  font-size:28px;
  margin:0 0 32px;
}

/* grid for whole block: two columns */
.why-us__grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  align-items: start;
}

/* each card uses simple grid: icon fixed column + content fluid column */
.why-us__card {
  display: grid;
  grid-template-columns: 72px 1fr; /* icon | body */
  gap: 18px;
  align-items: start;               /* top-align grid cells; body content controls internal spacing */
  padding: 12px 8px;
  box-sizing: border-box;
}

/* icon column */
.why-us__icon {
  width:72px;
  height:72px;
  object-fit: contain;
  justify-self: start; /* align icon to left of its cell */
  align-self: start;   /* align icon to top of cell so it matches the first-line baseline better */
  display:block;
  margin: 0;           /* explicit reset */
}

/* body column */
.why-us__body {
  min-width:0;
  padding-left:0;
}

/* Heading: keep it tight, no extra top margin so its top lines up with list first line */
.why-us__h {
  margin: 2px 0 8px;   /* small top offset (2px) + bottom gap to list */
  font-weight:800;
  font-size:16px;
  line-height:1.05;
}

/* list: remove default markers, keep compact spacing */
.why-us__list {
  margin:0;
  padding:0 0 0 0;     /* we use no indent — items are full-width under heading */
  list-style: none;    /* remove bullets (that red triangle) */
  color:#333;
  font-size:14px;
  line-height:1.6;
}
.why-us__list li {
  margin: 8px 0;
  font-weight:400;
  padding-left: 0;
}

/* small visual polish: keep first line of list not too close to heading */
.why-us__list li:first-of-type { margin-top: 6px; }

/* TABLET: collapse to single column with icon above or left depending on space */
@media (max-width: 920px) {
  .why-us__wrap { padding:42px 16px; }

  /* stack cards vertically */
  .why-us__grid { grid-template-columns: 1fr; gap:20px; }

  /* for narrow screens put icon left of text still but tighten sizes */
  .why-us__card {
    grid-template-columns: 64px 1fr;
    gap: 14px;
    align-items: start;
  }
  .why-us__icon { width:64px; height:64px; }
  .why-us__h { font-size:15px; margin: 2px 0 8px; }
  .why-us__list { font-size:14px; line-height:1.6; }
}

/* MOBILE: icon smaller, keep readability */
@media (max-width: 480px) {
  .why-us__wrap { padding:30px 12px; }
  .why-us__card { grid-template-columns: 56px 1fr; gap:12px; }
  .why-us__icon { width:56px; height:56px; }
  .why-us__h { font-size:15px; margin: 2px 0 8px; }
  .why-us__list { font-size:13px; line-height:1.5; }
}
