/* V118: clean real industry images, no embedded text placeholders */
.v118-industry-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  align-items:stretch;
}
.v118-industry-card{
  overflow:hidden;
  border-radius:28px;
  background:#fff;
  border:1px solid rgba(0,83,62,.10);
  box-shadow:0 18px 60px rgba(0,45,34,.08);
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.v118-industry-photo{
  width:100%;
  aspect-ratio:16/10;
  overflow:hidden;
  background:#f3f7f4;
}
.v118-industry-photo img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center !important;
  display:block;
  filter:none !important;
  transform:scale(1);
  transition:transform .55s ease;
}
.v118-industry-card:hover .v118-industry-photo img{transform:scale(1.045)}
.v118-industry-copy{padding:28px; flex:1; display:flex; flex-direction:column; justify-content:flex-start;}
.v118-industry-copy h3{margin:0 0 12px; color:#09684f; font-size:clamp(24px,2vw,34px); line-height:1.05;}
.v118-industry-copy p{margin:0; color:#777; font-size:18px; line-height:1.45;}
@media(max-width:991px){.v118-industry-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:640px){.v118-industry-grid{grid-template-columns:1fr; gap:20px;} .v118-industry-copy{padding:22px;} }
