/* Grid of town cards on locations.html. Each card links to that town's hub
   page (/locksmith-services-near-[town]/), grouped under a county heading. */

.town-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
}

.town-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-alt);
  padding: 28px 26px;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease, transform 0.25s ease;
}

.town-card:hover,
.town-card:focus-visible {
  background: #fffdf9;
  transform: translateY(-2px);
}

.town-card h3 {
  font-size: 1.3rem;
}

.town-card p {
  margin-top: 6px;
  color: var(--color-ink-soft);
  font-size: 0.94rem;
}

/* Neighbouring towns listed under the description */
.town-card-nearby {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--color-ink-soft);
  opacity: 0.8;
}

@media (max-width: 1225px) {
  .town-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .town-grid {
    grid-template-columns: 1fr;
  }
}
