/* Indoor Air Quality — page-specific styles (numbered process list only;
   everything else reuses shared classes from css/main.css). */

.iaq-steps {
  display: grid;
  gap: var(--s5);
}

.iaq-steps__item {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
}

.iaq-steps__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: var(--cool);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
}

.iaq-steps__body h3 { margin-bottom: var(--s2); }
.iaq-steps__body p { margin: 0; }

@media (min-width: 700px) {
  .iaq-steps { gap: var(--s4); }
}

/* -- Evidence photos ---------------------------------------------------- */
/* ~1.5x native (257 -> 385, 240 -> 360), side by side from 700px up. */
.photo-row .photo-frame:nth-child(1) { max-width: 385px; }
.photo-row .photo-frame:nth-child(2) { max-width: 360px; }
.photo-row .photo-frame img { width: 100%; height: auto; }
@media (min-width: 700px) {
  .photo-row .photo-frame { flex: 1 1 0; }
}
