/* About page — this page's own sheet, and only the rules the shared layer does
   not already carry. The palette, the spacing and the type come from
   assets/css/tokens.css, assets/css/pages.css and style.css; nothing is
   redefined here. This sheet is enqueued site-wide (functions.php), so every
   rule is scoped to the .about-shot names only this template renders. */

.about-shots{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:34px}
.about-shot{position:relative;overflow:hidden;margin:0;background:var(--color-surface);border:1px solid var(--color-line);border-radius:var(--radius-md)}
.about-photo{display:block;width:100%;height:240px;object-fit:cover}
.about-caption{margin:0;padding:14px 18px;border-top:1px solid var(--color-line);font-size:13px;font-weight:600;color:var(--color-navy)}

/* ---------------------------------------------------------- Responsive -- */
@media(max-width:980px){
  .about-shots{grid-template-columns:1fr 1fr;gap:20px}
}
@media(max-width:640px){
  .about-shots{grid-template-columns:1fr}
  .about-photo{height:200px}
}
