/* ==========================================================================
   Industries We Serve — page-specific styles.
   Thin-line icon tile grid + cross-industry band. Mobile-first;
   reduced-motion safe.
   ========================================================================== */

.industries-hero__photo {
  width: 100%;
  height: auto;
  display: block;
  margin-top: var(--sp-7);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -18px rgba(11, 74, 46, 0.3);
}

.industry-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.industry {
  padding: var(--sp-6) var(--sp-2);
  border-bottom: 1px solid var(--border);
}
.industry__icon {
  display: inline-flex;
  color: var(--text-2);
  margin-bottom: var(--sp-4);
}
.industry__icon svg { display: block; stroke: currentColor; fill: none; }
/* the single brand-green node in each icon */
.industry__icon .node { fill: var(--accent-deep); stroke: none; }
.industry__name {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: 600;
  margin: 0 0 var(--sp-3);
}
.industry__desc {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.5;
  max-width: 34ch;
}

@media (min-width: 600px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--sp-7);
  }
  /* keep a continuous hairline grid without doubling borders */
  .industry { padding-inline: 0; }
}
@media (min-width: 960px) {
  .industry-grid { grid-template-columns: repeat(3, 1fr); column-gap: var(--sp-8); }
}

/* Subtle hover lift on the icon (pointer devices only). */
@media (hover: hover) {
  .industry { transition: none; }
  .industry:hover .industry__name { color: var(--accent-deep); }
}

/* --- Why cross-industry band ---------------------------------------------- */
.industries-why { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); }
@media (min-width: 880px) {
  .industries-why {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--sp-8);
    align-items: start;
  }
}
