.tpl-about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 1rem;
}

.tpl-about-card,
.tpl-location-card {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  border-radius: 28px;
  border: 1px solid rgba(13, 106, 113, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--tpl-shadow-soft);
}

.tpl-about-head {
  display: grid;
  gap: 0.35rem;
}

.tpl-about-kicker {
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tpl-accent);
}

.tpl-about-head h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.05;
}

.tpl-about-text {
  margin: 0;
  color: var(--tpl-muted);
  line-height: 1.78;
}

.tpl-location-blocks,
.tpl-hours-grid {
  display: grid;
  gap: 0.7rem;
}

.tpl-location-block,
.tpl-hours-row {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--tpl-border);
  background: rgba(250, 247, 241, 0.84);
}

.tpl-location-block strong,
.tpl-hours-row strong {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tpl-muted);
}

.tpl-location-block span,
.tpl-location-block a,
.tpl-hours-row span {
  color: var(--tpl-ink);
  text-decoration: none;
  line-height: 1.6;
}

.tpl-location-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tpl-accent), var(--tpl-accent-strong));
  color: #fff !important;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(13, 106, 113, 0.18);
}

.tpl-location-block a:hover,
.tpl-location-block a:focus-visible {
  text-decoration: underline;
}

.tpl-location-action:hover,
.tpl-location-action:focus-visible {
  color: #fff !important;
  text-decoration: none !important;
}

.tpl-hours-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.tpl-hours-row.is-closed span:last-child {
  color: var(--tpl-muted);
}

@media (max-width: 980px) {
  .tpl-about-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tpl-about-card,
  .tpl-location-card {
    padding: 1.05rem;
    border-radius: 24px;
  }

  .tpl-hours-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}
