.my-texas-city {
  margin-top: 20px;
  border-top: 4px solid var(--gold);
}

.my-texas-city[hidden] { display: none; }

.my-texas-city__head {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 8px;
}

.my-texas-city__name {
  margin: 4px 0 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
}

.my-texas-city__status {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.55;
}

.my-texas-city-officials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.my-texas-city-official {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy-800);
}

.my-texas-city-official__role {
  color: var(--red);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.my-texas-city-official strong {
  overflow-wrap: anywhere;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
}

.my-texas-city-official a {
  width: fit-content;
  color: var(--navy-800);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.my-texas-city__freshness {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .my-texas-city__head { align-items: start; }
  .my-texas-city-officials { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 460px) {
  .my-texas-city-officials { grid-template-columns: 1fr; }
}
