/* place.css — the server-rendered geography pages (/us/, /eu/).
   Every colour here is a dentist.css token, so both editions and the
   reduced-motion guard come for free; this sheet adds no palette of its own. */

.place { max-width: 1080px; }

/* breadcrumb ------------------------------------------------------------- */
.pcrumbs { margin: 0 0 10px; }
.pcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35em; margin: 0; padding: 0;
  font: 500 12px/1.5 var(--sans); letter-spacing: .04em; text-transform: uppercase; }
.pcrumbs li + li::before { content: "›"; margin-right: .45em; color: var(--ink3); }
.pcrumbs a { color: var(--ink2); text-decoration: none; border-bottom: 1px solid var(--line); }
.pcrumbs a:hover { color: var(--acc); border-bottom-color: var(--acc); }
.pcrumbs [aria-current] { color: var(--ink3); }

.place .hero h1 { margin: 0 0 .25em; }
.pgo { margin: 14px 0 6px; }
.pgo__a { display: inline-block; font: 600 13px/1 var(--sans); letter-spacing: .04em;
  color: var(--acc); text-decoration: none; padding: .62em .9em;
  border: 1px solid var(--acc); border-radius: 6px; }
.pgo__a:hover { background: var(--accbg); }

/* a grid of child places ------------------------------------------------- */
.place h2 { font-family: var(--serif); font-weight: 500; font-size: 19px;
  margin: 30px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.pgrid { list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1px; background: var(--line2);
  border: 1px solid var(--line2); border-radius: 8px; overflow: hidden;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); }
.pgrid li { background: var(--bg2); }
.pgrid a { display: flex; align-items: baseline; justify-content: space-between; gap: .8em;
  padding: 11px 14px; text-decoration: none; color: var(--ink); }
.pgrid a:hover { background: var(--accbg); color: var(--acc2); }
.pgrid__n { font: 500 14px/1.35 var(--sans); }
.pgrid__c { font: 500 13px/1 var(--mono); color: var(--ink3);
  font-variant-numeric: tabular-nums; flex: none; }
.pgrid a:hover .pgrid__c { color: var(--acc); }

/* specialty chips -------------------------------------------------------- */
.pchips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.pchip { display: inline-flex; align-items: baseline; gap: .5em;
  font: 500 12.5px/1 var(--sans); color: var(--ink2);
  border: 1px solid var(--line); border-radius: 999px; padding: .55em .85em; }
.pchip b { color: var(--acc); font-variant-numeric: tabular-nums; }
.pchip--sm { font-size: 11px; padding: .35em .6em; color: var(--ink3); }

/* the office list -------------------------------------------------------- */
.poffices { list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1px; background: var(--line2);
  border: 1px solid var(--line2); border-radius: 8px; overflow: hidden;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
.poffice { background: var(--bg2); padding: 14px 16px; }
.poffice h3 { margin: 0 0 .35em; font: 500 15px/1.35 var(--serif); color: var(--ink); }
.poffice h3 i { color: var(--ink3); font-weight: 400; }
.pmeta { margin: 0; font: 400 13px/1.6 var(--sans); color: var(--ink2); }
.pmeta a { color: var(--acc); text-decoration: none; border-bottom: 1px solid transparent; }
.pmeta a:hover { border-bottom-color: var(--acc); }
.pmeta .ph { color: var(--ink3); font-size: 12px; }
.psp { margin: .55em 0 0; display: flex; flex-wrap: wrap; gap: 5px; }
.pnote { color: var(--ink3); font: 400 14px/1.6 var(--sans); }

@media (max-width: 720px) {
  .pgrid { grid-template-columns: 1fr; }
  .poffices { grid-template-columns: 1fr; }
  .place h2 { font-size: 17px; margin-top: 24px; }
}
