/* ===========================================
   LOCATIONS PAGE
   Per-office entries: square image on the left,
   editorial content on the right. No boxes, no
   internal row dividers — single hairline between
   entries only.
   The "intro / by-the-numbers" band reuses
   .cr-intro / .cr-stats from case-results-page.css.
   =========================================== */

.loc-list {
  background: var(--white);
  padding: 24px 0 96px;
  border-top: 1px solid var(--teal-15);
}
.loc-list-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 48px;
}
.loc-entry {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  padding: 72px 0;
  border-bottom: 1px solid var(--teal-15);
  align-items: start;
  scroll-margin-top: 120px;
}
.loc-entry:last-child {
  border-bottom: none;
}
.loc-entry-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.loc-entry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(8%);
  transition: filter 400ms ease;
}
.loc-entry:hover .loc-entry-media img {
  filter: grayscale(0%);
}
.loc-entry-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.loc-entry-header {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}
.loc-entry-num {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.loc-entry-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--teal);
  margin: 0;
}
/* A city with a City page set links to it; the heading keeps its look. */
.loc-entry-title a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}
.loc-entry-title a:hover {
  color: var(--orange);
}
.loc-entry-tagline {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin: -8px 0 0;
}
.loc-entry-lede {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--teal-60);
  margin: 0;
}

/* Definition list: label / value rows, no dividers — just spacing. */
.loc-entry-details {
  margin: 4px 0 0;
  padding: 0;
}
.loc-entry-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) 1fr;
  gap: 24px;
  padding: 10px 0;
}
.loc-entry-row dt {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-60);
  align-self: center;
}
.loc-entry-row dd {
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--teal);
  margin: 0;
}
.loc-entry-row dd a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}
.loc-entry-row dd a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

@media (max-width: 900px) {
  .loc-list-inner { padding: 0 24px; }
  .loc-entry {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 0;
  }
  .loc-entry-title { font-size: clamp(30px, 8vw, 42px); }
  .loc-entry-tagline { margin-left: 0; }
}
@media (max-width: 768px) {
  .loc-entry-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
