:root {
  --tmc-ink: #12151b;
  --tmc-muted: #69707c;
  --tmc-paper: #f4f5f7;
  --tmc-line: #dfe2e7;
  --tmc-red: #e5362b;
  --tmc-white: #fff;
}

.tmc-app,
.tmc-app * {
  box-sizing: border-box;
}

.tmc-app {
  container-type: inline-size;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 12px 0 60px;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--tmc-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

.tmc-app button,
.tmc-app input,
.tmc-app select {
  max-width: 100%;
  font: inherit;
}

.tmc-app img,
.tmc-app svg {
  max-width: 100%;
}

.tmc-hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: clamp(34px, 6vw, 76px);
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 108, 85, .62), transparent 26%),
    linear-gradient(125deg, #14161d 0%, #22242d 58%, #7e1d1f 100%);
}

.tmc-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.tmc-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.tmc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.tmc-eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

.tmc-hero h1,
.tmc-city-hero h1 {
  margin: 0 0 20px !important;
  color: inherit !important;
  font-size: clamp(48px, 7.2vw, 100px) !important;
  font-weight: 850 !important;
  line-height: .92 !important;
  letter-spacing: -.065em;
}

.tmc-hero__copy > p {
  max-width: 650px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.76);
  font-size: clamp(17px, 2vw, 22px);
}

.tmc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tmc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 100px;
  font-weight: 750;
  text-decoration: none !important;
  cursor: pointer;
}

.tmc-btn--primary {
  color: white !important;
  background: var(--tmc-red);
}

.tmc-btn--ghost {
  color: white;
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}

.tmc-btn--dark {
  margin-top: 8px;
  color: white !important;
  background: var(--tmc-ink);
}

.tmc-orbit {
  position: absolute;
  z-index: 1;
  top: 34px;
  right: 28px;
  width: 390px;
  height: 390px;
}

.tmc-orbit__ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
}

.tmc-orbit__ring--one { inset: 12%; }
.tmc-orbit__ring--two { inset: 28%; }

.tmc-orbit__center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: white;
  font-size: 28px;
  font-weight: 850;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}

.tmc-orbit__dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 3px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: var(--tmc-red);
  box-shadow: 0 0 0 7px rgba(229,54,43,.15);
}

.tmc-orbit__dot--one { top: 15%; left: 49%; }
.tmc-orbit__dot--two { right: 15%; bottom: 27%; }
.tmc-orbit__dot--three { bottom: 15%; left: 26%; }

.tmc-hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.tmc-hero__stats > div {
  min-width: 105px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(13,14,18,.42);
  backdrop-filter: blur(12px);
}

.tmc-hero__stats strong,
.tmc-hero__stats span {
  display: block;
}

.tmc-hero__stats strong {
  font-size: 22px;
  line-height: 1.15;
}

.tmc-hero__stats span {
  margin-top: 3px;
  color: rgba(255,255,255,.6);
  font-size: 11px;
}

.tmc-picks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 135px), 1fr));
  gap: 10px;
  margin: 18px 0 46px;
}

.tmc-picks button {
  min-height: 80px;
  padding: 12px;
  border: 1px solid var(--tmc-line);
  border-radius: 18px;
  color: var(--tmc-ink);
  font-size: 14px;
  font-weight: 720;
  background: white;
  cursor: pointer;
  transition: .2s ease;
}

.tmc-picks button:hover,
.tmc-picks button.is-active {
  transform: translateY(-2px);
  border-color: var(--tmc-ink);
  color: white;
  background: var(--tmc-ink);
}

.tmc-picks span {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
}

.tmc-tools {
  scroll-margin-top: 80px;
  margin-bottom: 24px;
}

.tmc-search {
  position: relative;
}

.tmc-search svg {
  position: absolute;
  top: 50%;
  left: 22px;
  width: 24px;
  transform: translateY(-50%);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.tmc-search input {
  width: 100%;
  height: 68px;
  padding: 0 80px 0 62px;
  border: 1px solid var(--tmc-line);
  border-radius: 18px;
  outline: none;
  color: var(--tmc-ink);
  font-size: 17px;
  background: white;
}

.tmc-search input:focus {
  border-color: #aeb4be;
  box-shadow: 0 0 0 4px rgba(18,21,27,.06);
}

.tmc-search kbd {
  position: absolute;
  top: 50%;
  right: 18px;
  padding: 5px 9px;
  transform: translateY(-50%);
  border: 1px solid var(--tmc-line);
  border-radius: 7px;
  color: var(--tmc-muted);
  font-family: inherit;
  font-size: 12px;
  background: #f7f7f8;
}

.tmc-filter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 50px 50px;
  gap: 10px;
  margin-top: 10px;
}

.tmc-filter-row label {
  position: relative;
  display: block;
}

.tmc-filter-row label span {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 15px;
  color: var(--tmc-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.tmc-filter-row select {
  width: 100%;
  height: 58px;
  padding: 19px 40px 3px 14px;
  border: 1px solid var(--tmc-line);
  border-radius: 14px;
  outline: none;
  color: var(--tmc-ink);
  font-weight: 650;
  background: white;
}

.tmc-view-toggle {
  border: 1px solid var(--tmc-line);
  border-radius: 14px;
  color: var(--tmc-muted);
  font-size: 22px;
  background: white;
  cursor: pointer;
}

.tmc-view-toggle.is-active {
  border-color: var(--tmc-ink);
  color: white;
  background: var(--tmc-ink);
}

.tmc-results-line {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  color: var(--tmc-muted);
  font-size: 13px;
}

.tmc-results-line button {
  padding: 0;
  border: 0;
  color: var(--tmc-muted);
  background: none;
  text-decoration: underline;
  cursor: pointer;
}

.tmc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 18px;
  min-width: 0;
}

.tmc-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--tmc-line);
  border-radius: 22px;
  background: white;
  transition: transform .22s ease, box-shadow .22s ease;
}

.tmc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(20,25,35,.1);
}

.tmc-card[hidden] {
  display: none !important;
}

.tmc-card__visual {
  position: relative;
  display: block;
  height: 194px;
  overflow: hidden;
  color: white !important;
  text-decoration: none !important;
  isolation: isolate;
}

.tmc-card__visual::before,
.tmc-city-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .28;
  background-image:
    radial-gradient(circle at 20% 30%, transparent 0 19px, rgba(255,255,255,.24) 20px 21px, transparent 22px),
    linear-gradient(135deg, transparent 48%, rgba(255,255,255,.18) 49% 50%, transparent 51%);
  background-size: 76px 76px, 50px 50px;
}

.tmc-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tmc-card__landscape {
  position: absolute;
  inset: 0;
  opacity: .28;
  background:
    linear-gradient(150deg, transparent 0 52%, rgba(255,255,255,.42) 53% 54%, transparent 55%) 0 20px / 110px 85px,
    linear-gradient(30deg, transparent 0 52%, rgba(255,255,255,.24) 53% 54%, transparent 55%) 30px 40px / 130px 95px;
}

.tmc-coat {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.tmc-coat img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.tmc-coat--card {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 15px;
  width: 72px;
  height: 82px;
  padding: 8px;
  border-radius: 16px 16px 22px 22px;
  color: var(--tmc-ink);
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 20px rgba(0,0,0,.14);
  backdrop-filter: blur(8px);
}

.tmc-coat--fallback {
  border: 1px solid rgba(255,255,255,.52);
  color: white;
  background: rgba(16,19,26,.28);
}

.tmc-coat--fallback > span {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.06em;
}

.tmc-tone-blue { background: linear-gradient(135deg, #163f7a, #4588b9); }
.tmc-tone-green { background: linear-gradient(135deg, #1b5949, #6b9b6f); }
.tmc-tone-amber { background: linear-gradient(135deg, #6e421f, #d89a42); }
.tmc-tone-plum { background: linear-gradient(135deg, #51294e, #9b637b); }
.tmc-tone-red { background: linear-gradient(135deg, #631f24, #cf5b4c); }

.tmc-card__initials {
  position: absolute;
  left: 20px;
  bottom: 10px;
  color: rgba(255,255,255,.95);
  font-size: 74px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
}

.tmc-card__route {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tmc-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 9px;
  border-radius: 100px;
  color: var(--tmc-ink);
  font-size: 10px;
  font-weight: 800;
  background: white;
}

.tmc-card__body {
  padding: 20px;
}

.tmc-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.tmc-card__head h2 {
  margin: 0 !important;
  font-size: 25px !important;
  line-height: 1.05 !important;
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
}

.tmc-card__head h2 a {
  color: var(--tmc-ink) !important;
  text-decoration: none !important;
}

.tmc-card__head > span {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 8px;
  color: var(--tmc-muted);
  font-size: 11px;
  font-weight: 750;
  background: var(--tmc-paper);
}

.tmc-card__body > p {
  min-height: 66px;
  margin: 14px 0;
  color: var(--tmc-muted);
  font-size: 14px;
  line-height: 1.55;
}

.tmc-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 14px;
  border-top: 1px solid var(--tmc-line);
}

.tmc-card__facts span {
  color: var(--tmc-muted);
  font-size: 11px;
}

.tmc-card__link {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  color: var(--tmc-ink) !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
}

.tmc-card__link span {
  color: var(--tmc-red);
  font-size: 17px;
}

.tmc-empty,
.tmc-map-note {
  padding: 70px 24px;
  border: 1px dashed #bcc1c9;
  border-radius: 22px;
  color: var(--tmc-muted);
  text-align: center;
  background: var(--tmc-paper);
}

.tmc-empty strong {
  color: var(--tmc-ink);
  font-size: 24px;
}

.tmc-map {
  width: 100%;
  height: 620px;
  overflow: hidden;
  border-radius: 24px;
}

.tmc-editorial {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 40px;
  margin-top: 62px;
  padding: 42px;
  border-radius: 24px;
  background: var(--tmc-paper);
}

.tmc-editorial h2,
.tmc-nearby h2 {
  margin: 0 !important;
  font-size: clamp(31px, 4vw, 50px) !important;
  line-height: 1 !important;
  letter-spacing: -.045em;
}

.tmc-editorial p {
  margin: 0;
  color: var(--tmc-muted);
  font-size: 17px;
}

/* Single city */
.tmc-back {
  display: inline-block;
  margin: 8px 0 18px;
  color: var(--tmc-muted) !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
}

.tmc-city-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: clamp(34px, 6vw, 74px);
  border-radius: 30px;
  color: white;
  isolation: isolate;
}

.tmc-city-hero__copy {
  position: relative;
  z-index: 2;
  max-width: min(760px, calc(100% - 220px));
}

.tmc-city-hero h1 {
  font-size: clamp(52px, 8vw, 104px) !important;
}

.tmc-city-hero__copy > p {
  max-width: 680px;
  color: rgba(255,255,255,.8);
  font-size: 19px;
}

.tmc-city-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.tmc-city-hero__facts > span {
  min-width: 140px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  background: rgba(0,0,0,.12);
}

.tmc-city-hero__facts small,
.tmc-city-hero__facts strong {
  display: block;
}

.tmc-city-hero__facts small {
  margin-bottom: 3px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  text-transform: uppercase;
}

.tmc-city-hero__facts strong {
  font-size: 15px;
}

.tmc-city-hero__mark {
  position: absolute;
  z-index: -1;
  right: -25px;
  bottom: -60px;
  color: rgba(255,255,255,.1);
  font-size: 250px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.1em;
}

.tmc-coat--hero {
  position: absolute;
  z-index: 1;
  right: clamp(28px, 5vw, 66px);
  bottom: 38px;
  width: clamp(115px, 16vw, 190px);
  height: clamp(140px, 20vw, 230px);
  padding: 18px;
  border-radius: 28px 28px 42px 42px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
}

.tmc-coat--hero.tmc-coat--fallback {
  border: 1px solid rgba(255,255,255,.26);
  color: white;
  background: rgba(0,0,0,.14);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.tmc-coat--hero.tmc-coat--fallback > span {
  font-size: clamp(42px, 8vw, 82px);
}

.tmc-coat-credit {
  margin: 7px 4px 0;
  color: var(--tmc-muted);
  font-size: 10px;
  text-align: right;
}

.tmc-coat-credit a {
  color: inherit !important;
}

.tmc-city-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  min-width: 0;
  margin-top: 42px;
}

.tmc-city-photo {
  margin: 18px 0 0;
}

.tmc-city-photo img {
  display: block;
  width: 100%;
  max-height: 680px;
  border-radius: 24px;
  object-fit: cover;
}

.tmc-city-photo figcaption {
  margin-top: 8px;
  color: var(--tmc-muted);
  font-size: 11px;
  text-align: right;
}

.tmc-city-photo figcaption a {
  color: inherit !important;
}

.tmc-city-section {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 22px;
  padding: 0 0 52px;
  min-width: 0;
}

.tmc-section-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 11px;
  font-weight: 850;
  background: var(--tmc-red);
}

.tmc-city-section h2 {
  margin: 0 0 18px !important;
  font-size: clamp(29px, 4vw, 45px) !important;
  line-height: 1.05 !important;
  letter-spacing: -.04em;
}

.tmc-city-section p {
  color: #4f5661;
  font-size: 17px;
  line-height: 1.75;
}

.tmc-seo-copy {
  margin-top: 28px;
}

.tmc-seo-copy h3 {
  margin: 26px 0 8px !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
}

.tmc-sights {
  display: grid;
  gap: 8px;
}

.tmc-sights > div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  min-height: 64px;
  padding: 8px 14px;
  border: 1px solid var(--tmc-line);
  border-radius: 14px;
}

.tmc-sights span {
  color: var(--tmc-red);
  font-size: 11px;
  font-weight: 850;
}

.tmc-info-box {
  position: static;
  padding: 25px;
  border-radius: 20px;
  color: white;
  background: var(--tmc-ink);
}

.tmc-info-box > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.tmc-info-box dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
}

.tmc-info-box dl > div {
  display: block;
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}

.tmc-info-box dt {
  color: rgba(255,255,255,.55);
}

.tmc-info-box dd {
  margin: 4px 0 0;
  font-weight: 750;
  text-align: left;
}

.tmc-info-box__action {
  display: block;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--tmc-ink) !important;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none !important;
  background: white;
}

.tmc-single-map {
  width: 100%;
  height: 430px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--tmc-paper);
}

.tmc-nearby {
  margin-top: 18px;
  padding-top: 54px;
  border-top: 1px solid var(--tmc-line);
}

.tmc-nearby__head {
  margin-bottom: 26px;
}

.tmc-nearby__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 175px), 1fr));
  gap: 12px;
}

.tmc-nearby__grid a {
  min-height: 175px;
  padding: 20px;
  border-radius: 18px;
  color: white !important;
  background: var(--tmc-ink);
  text-decoration: none !important;
}

.tmc-nearby__grid a > span {
  display: block;
  margin-bottom: 20px;
  color: rgba(255,255,255,.2);
  font-size: 42px;
  font-weight: 900;
}

.tmc-nearby__grid strong,
.tmc-nearby__grid small {
  display: block;
}

.tmc-nearby__grid strong {
  font-size: 19px;
}

.tmc-nearby__grid small {
  margin-top: 4px;
  color: rgba(255,255,255,.56);
}

.tmc-contribute {
  scroll-margin-top: 40px;
  margin-top: 64px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 26px;
  background: var(--tmc-paper);
}

.tmc-contribute__intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.tmc-contribute__intro .tmc-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -15px;
}

.tmc-contribute__intro h2 {
  margin: 0 !important;
  font-size: clamp(33px, 5vw, 56px) !important;
  line-height: .98 !important;
  letter-spacing: -.05em;
}

.tmc-contribute__intro p {
  margin: 0;
  color: var(--tmc-muted);
  font-size: 16px;
}

.tmc-contribute__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tmc-field {
  display: grid;
  gap: 7px;
}

.tmc-field > span,
.tmc-consent > span {
  color: var(--tmc-muted);
  font-size: 12px;
  font-weight: 700;
}

.tmc-field input,
.tmc-field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--tmc-line);
  border-radius: 13px;
  outline: none;
  color: var(--tmc-ink);
  background: white;
}

.tmc-field input:focus,
.tmc-field textarea:focus {
  border-color: var(--tmc-ink);
  box-shadow: 0 0 0 3px rgba(18,21,27,.06);
}

.tmc-field--wide {
  grid-column: 1 / -1;
}

.tmc-field--trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.tmc-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.tmc-consent input {
  flex: 0 0 auto;
  margin-top: 3px;
}

.tmc-form-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
}

.tmc-form-message--success {
  color: #164c36;
  background: #dcf4e8;
}

.tmc-form-message--error {
  color: #722820;
  background: #f9dfdc;
}

@media (max-width: 1000px) {
  .tmc-orbit { opacity: .58; right: -90px; }
  .tmc-picks { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .tmc-app { width: 100%; margin-top: 8px; }
  .tmc-hero { min-height: 600px; padding: 34px 24px; border-radius: 22px; }
  .tmc-hero h1 { font-size: 52px !important; }
  .tmc-orbit { top: 260px; right: -74px; width: 330px; height: 330px; }
  .tmc-hero__stats > div { flex: 1; min-width: 0; padding: 10px; }
  .tmc-hero__stats strong { font-size: 16px; }
  .tmc-picks { grid-template-columns: repeat(2, 1fr); margin-bottom: 34px; }
  .tmc-filter-row { grid-template-columns: 1fr 1fr; }
  .tmc-view-toggle { min-height: 48px; }
  .tmc-card__body > p { min-height: 0; }
  .tmc-editorial { grid-template-columns: 1fr; padding: 28px; }
  .tmc-search kbd { display: none; }
  .tmc-search input { padding-right: 18px; font-size: 14px; }
  .tmc-city-hero { min-height: 500px; padding: 32px 24px; border-radius: 22px; }
  .tmc-city-hero h1 { font-size: 50px !important; overflow-wrap: anywhere; }
  .tmc-city-hero__mark { font-size: 150px; }
  .tmc-city-section { grid-template-columns: 1fr; gap: 12px; }
  .tmc-nearby__grid { grid-template-columns: 1fr; }
  .tmc-contribute__intro,
  .tmc-contribute__form { grid-template-columns: 1fr; }
  .tmc-contribute__intro .tmc-eyebrow,
  .tmc-field--wide { grid-column: auto; }
  .tmc-single-map { height: 330px; }
}

@container (max-width: 760px) {
  .tmc-hero {
    min-height: auto;
    padding: 34px 28px;
  }

  .tmc-hero h1,
  .tmc-city-hero h1 {
    font-size: clamp(42px, 11cqw, 72px) !important;
  }

  .tmc-orbit {
    right: -135px;
    opacity: .35;
  }

  .tmc-picks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tmc-filter-row {
    grid-template-columns: 1fr 1fr;
  }

  .tmc-city-hero {
    min-height: auto;
    padding: 34px 28px;
  }

  .tmc-city-hero__copy {
    max-width: calc(100% - 105px);
  }

  .tmc-city-hero__mark {
    font-size: 140px;
  }

  .tmc-coat--hero {
    right: 22px;
    bottom: 24px;
    width: 96px;
    height: 116px;
    padding: 12px;
    opacity: .72;
  }

  .tmc-city-section {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .tmc-contribute__intro {
    grid-template-columns: 1fr;
  }

  .tmc-contribute__intro .tmc-eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }
}

@container (max-width: 520px) {
  .tmc-city-hero__copy {
    max-width: 100%;
  }

  .tmc-picks,
  .tmc-filter-row,
  .tmc-contribute__form,
  .tmc-info-box dl {
    grid-template-columns: 1fr;
  }

  .tmc-search input {
    height: 58px;
    padding-right: 16px;
    font-size: 14px;
  }

  .tmc-search kbd {
    display: none;
  }

  .tmc-city-section {
    grid-template-columns: 1fr;
  }

  .tmc-city-hero__facts > span {
    min-width: calc(50% - 8px);
  }

  .tmc-coat--hero {
    position: relative;
    right: auto;
    bottom: auto;
    width: 86px;
    height: 102px;
    margin-top: 22px;
  }

  .tmc-field--wide {
    grid-column: auto;
  }
}
