/* Industries hub (/industries/). Page-specific components only; hero, sec-head,
   why-grid and cta come from the shared design system + works/services/
   website-design css loaded before this file. */

/* ---- Featured industry card ---- */
.ind-featured {
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
}
.ind-feat-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--paper);
}
.ind-feat-media {
  position: relative;
  display: block;
  align-self: stretch;
  min-height: 260px;
  overflow: hidden;
  background: var(--paper-2);
}
.ind-feat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s ease;
}
.ind-feat-media:hover img { transform: scale(1.03); }
.ind-feat-media .ph-label {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  background: rgba(20,18,16,.72);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
}
.ind-feat-body {
  padding: clamp(22px, 3vw, 40px) clamp(22px, 3vw, 40px) clamp(22px, 3vw, 40px) 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ind-feat-body h3 { margin: 0; font-size: clamp(21px, 2.4vw, 28px); }
.ind-feat-body p { margin: 0; color: var(--gray-1); line-height: 1.6; }

/* ---- Sector link grid ---- */
.ind-sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 16px);
}
.ind-sector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s ease, transform .2s ease;
}
.ind-sector:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.ind-sector-arr { color: var(--pw-color); flex-shrink: 0; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .ind-sector-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .ind-feat-card { grid-template-columns: 1fr; }
  .ind-feat-media { min-height: 200px; }
  .ind-feat-body { padding: 0 clamp(20px,5vw,28px) clamp(24px,6vw,32px); }
}
@media (max-width: 460px) {
  .ind-sector-grid { grid-template-columns: 1fr; }
}
