/* Landing-page styles (used by static SEO pages, not by the SPA) */

:root {
  --ink-50: #f7f8fa;
  --ink-100: #eef0f4;
  --ink-200: #dcdfe7;
  --ink-300: #bac0cf;
  --ink-400: #8a92a7;
  --ink-500: #5e6680;
  --ink-700: #333852;
  --ink-900: #13162b;
  --sea-50: #eef9fb;
  --sea-500: #1f8a9f;
  --sea-600: #176c80;
  --sand-100: #f8f0dd;
  --sand-200: #f0dfb6;
  --coral-50: #fff4ee;
  --coral-100: #ffe4d4;
  --coral-300: #fcb98e;
  --coral-400: #f97a47;
  --coral-500: #ea580c;
  --coral-600: #c2410c;
  --amber-50: #fff8e6;
  --amber-500: #d97706;
  --emerald-50: #ecfdf5;
  --emerald-500: #059669;
  --teal-50: #f0fdfa;
  --teal-500: #0d9488;
  --indigo-50: #eef2ff;
  --indigo-500: #4f46e5;
  --rose-50: #fff1f2;
  --rose-500: #e11d48;
  --sky-50: #f0f9ff;
  --sky-500: #0284c7;
  --max-w: 920px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--ink-50);
  color: var(--ink-900);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

a { color: var(--sea-600); text-decoration: none; }
a:hover { text-decoration: underline; }

.tc-header {
  background: white;
  border-bottom: 1px solid var(--ink-100);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.tc-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-900);
  font-weight: 600;
  font-size: 14px;
}
.tc-logo:hover { text-decoration: none; }
.tc-logo-icon-clip {
  display: inline-block;
  width: 36px;
  height: 36px;
  overflow: hidden;
  flex-shrink: 0;
}
.tc-logo-icon-clip img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
}

/* Legacy single CTA (kept for any pages still using it) */
.tc-nav-cta {
  margin-left: auto;
  font-size: 13px;
  background: var(--ink-900);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 500;
}
.tc-nav-cta:hover { background: var(--ink-700); text-decoration: none; }

/* Multi-link page nav (mirrors the SPA TopBar) */
.tc-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tc-nav::-webkit-scrollbar { display: none; }

.tc-nav-link,
.tc-nav-map {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  background: var(--ink-100);
  color: var(--ink-700);
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: background-color .12s, color .12s, transform .12s;
}
.tc-nav-link:hover,
.tc-nav-map:hover {
  background: var(--ink-200);
  color: var(--ink-900);
  text-decoration: none;
}
.tc-nav-link.tc-nav-active {
  background: var(--ink-900);
  color: #fff;
}
.tc-nav-link.tc-nav-active:hover { background: var(--ink-700); color: #fff; }

/* Pale-coral Discover CTA — mirrors SPA TopBar's muted Discover button */
.tc-nav-link.tc-nav-cta-coral {
  background: var(--coral-100);
  color: var(--coral-600);
}
.tc-nav-link.tc-nav-cta-coral:hover {
  background: #fdc9b3;
  color: var(--coral-600);
}

/* Green Currency CTA */
.tc-nav-link.tc-nav-cta-green {
  background: linear-gradient(135deg, var(--emerald-500), #10b981);
  color: #fff;
  box-shadow: 0 1px 2px rgba(5, 150, 105, .25);
}
.tc-nav-link.tc-nav-cta-green:hover {
  background: linear-gradient(135deg, #047857, var(--emerald-500));
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px -2px rgba(5, 150, 105, .35);
}
.tc-nav-link.tc-nav-cta-green.tc-nav-active {
  background: linear-gradient(135deg, #047857, #065f46);
  color: #fff;
}

/* Map button — black like the old CTA */
.tc-nav-map {
  background: var(--ink-900);
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
}
.tc-nav-map:hover { background: var(--ink-700); color: #fff; }

/* Responsive: hide labels below 1180px, hide secondary tier below 880px */
@media (max-width: 1180px) {
  .tc-nav-link .tc-nav-label,
  .tc-nav-map .tc-nav-label { display: none; }
  .tc-nav-link { padding: 6px 9px; font-size: 14px; }
  .tc-nav-map { padding: 6px 10px; font-size: 14px; }
}
@media (max-width: 880px) {
  .tc-nav-link.tc-nav-lg { display: none; }
}
@media (max-width: 560px) {
  .tc-nav-link.tc-nav-sm { display: none; }
}
@media (max-width: 560px) {
  /* Tighten on mobile */
  .tc-header { padding: 10px 12px; gap: 8px; }
  .tc-logo-text { display: none; }
  .tc-nav { gap: 4px; }
  .tc-nav-link, .tc-nav-map { padding: 6px 8px; }
}

.tc-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 20px 48px;
}
.tc-main h1 {
  font-size: 32px;
  margin: 8px 0 24px;
  line-height: 1.2;
}
.tc-main h2 {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--ink-900);
}
.tc-main h3 {
  font-size: 16px;
  margin: 16px 0 8px;
  color: var(--ink-700);
}
.tc-main p {
  color: var(--ink-700);
  font-size: 15px;
  margin: 0 0 12px;
}
.tc-lead {
  font-size: 17px;
  color: var(--ink-900);
  font-weight: 500;
}

.tc-section {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}

.tc-callout {
  background: var(--sand-100);
  border-color: var(--sand-200);
}

.tc-quickfacts dl {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 6px 16px;
  margin: 0;
  font-size: 14px;
}
.tc-quickfacts dt { color: var(--ink-500); }
.tc-quickfacts dd { margin: 0; color: var(--ink-900); }

.tc-table-wrap {
  overflow-x: auto;
  margin-top: 8px;
}
.tc-climate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.tc-climate-table th,
.tc-climate-table td {
  text-align: left;
  padding: 8px 10px;
  border-top: 1px solid var(--ink-100);
}
.tc-climate-table thead th {
  border-top: 0;
  border-bottom: 2px solid var(--ink-100);
  color: var(--ink-500);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tc-climate-table tbody th {
  font-weight: 500;
  color: var(--ink-900);
}

.tc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.tc-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  color: var(--ink-700);
  font-size: 12px;
}
.tc-chip:hover { border-color: var(--ink-400); text-decoration: none; }
.tc-chip-current {
  background: var(--ink-900);
  color: white;
  border-color: var(--ink-900);
}

.tc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 8px;
}
.tc-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  color: var(--ink-900);
}
.tc-card:hover {
  border-color: var(--ink-300);
  background: white;
  text-decoration: none;
}
.tc-card-flag { font-size: 22px; line-height: 1; }
.tc-card-name { font-weight: 600; font-size: 14px; }
.tc-card-meta { font-size: 11px; color: var(--ink-500); }
.tc-card-extra { font-size: 12px; color: var(--ink-700); margin-top: 2px; }

.tc-stat-grid {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}
.tc-stat-grid > div {
  text-align: center;
}
.tc-stat-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink-900);
}
.tc-stat-label {
  font-size: 11px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.tc-list li {
  padding: 4px 0;
  color: var(--ink-700);
}
.tc-list li a { color: var(--ink-900); font-weight: 500; }
.tc-list-meta {
  color: var(--ink-400);
  font-size: 12px;
  margin-left: 6px;
}

.tc-list-cols {
  columns: 2;
  column-gap: 24px;
}
@media (min-width: 720px) {
  .tc-list-cols { columns: 3; }
}

.tc-cta-section {
  background: linear-gradient(135deg, #176c80, #13162b);
  color: white;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin-top: 16px;
}
.tc-cta {
  display: inline-block;
  background: white;
  color: var(--ink-900);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
}
.tc-cta:hover { background: var(--ink-50); text-decoration: none; }
.tc-cta-sub {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.tc-footer {
  background: white;
  border-top: 1px solid var(--ink-100);
  padding: 16px 20px;
  margin-top: 24px;
}
.tc-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-500);
}
.tc-footer-inner a { color: var(--ink-700); }
.tc-spacer { margin-left: auto; }

@media (max-width: 600px) {
  .tc-main h1 { font-size: 26px; }
  .tc-quickfacts dl { grid-template-columns: 100px 1fr; }
  .tc-list-cols { columns: 1; }
}

/* ------------------------------------------------------------------ */
/* Calendar pages                                                      */
/* ------------------------------------------------------------------ */

.tc-cal-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}
.tc-cal-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tc-cal-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-500);
  font-weight: 500;
}
.tc-cal-yrs, .tc-cal-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tc-cal-yr, .tc-cal-country {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  color: var(--ink-700);
  font-size: 13px;
  text-decoration: none;
}
.tc-cal-yr:hover, .tc-cal-country:hover { border-color: var(--ink-400); text-decoration: none; }
.tc-cal-yr-current, .tc-cal-country-current {
  background: var(--ink-900);
  color: white;
  border-color: var(--ink-900);
}

/* Country picker (native <select>) */
.tc-cal-picker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 220px;
}
.tc-cal-picker select {
  flex: 1;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--ink-200);
  background: white;
  font-family: inherit;
  cursor: pointer;
  max-width: 320px;
}
.tc-cal-picker select:hover { border-color: var(--ink-400); }

.tc-cal-print {
  margin-left: auto;
  background: var(--sea-600);
  color: white;
  border: 0;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 500;
}
.tc-cal-print:hover { background: var(--sea-700); }

.tc-cal-grid-wrap {
  margin-bottom: 16px;
}
.tc-cal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.tc-cal-month {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  padding: 12px;
}
.tc-cal-month h3 {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--ink-900);
  text-align: center;
  font-weight: 600;
}
.tc-cal-month table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  table-layout: fixed;
}
.tc-cal-month th, .tc-cal-month td {
  text-align: center;
  padding: 4px 0;
  width: calc(100% / 7);
}
.tc-cal-dow {
  font-weight: 500;
  color: var(--ink-500);
  font-size: 10px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink-100);
}
.tc-cal-dow.tc-cal-weekend { color: var(--sea-600); }
.tc-cal-day {
  color: var(--ink-700);
  border-radius: 4px;
}
.tc-cal-empty { background: transparent; }
.tc-cal-day.tc-cal-weekend { color: var(--sea-600); }
.tc-cal-day.tc-cal-holiday {
  background: #f5e6d8;
  color: #b13a18;
  font-weight: 600;
}
.tc-cal-legend {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.tc-cal-swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  vertical-align: middle;
}
.tc-cal-swatch-holiday { background: #f5e6d8; border: 1px solid #b13a18; }
.tc-cal-swatch-weekend { background: var(--sea-50); border: 1px solid var(--sea-300); }

/* Holiday list */
.tc-hol-section h2 { margin-bottom: 10px; }
.tc-hol-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.tc-hol-table th, .tc-hol-table td {
  text-align: left;
  padding: 8px 12px;
  border-top: 1px solid var(--ink-100);
}
.tc-hol-table thead th {
  border-top: 0;
  border-bottom: 2px solid var(--ink-100);
  color: var(--ink-500);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.tc-hol-date { font-weight: 600; color: var(--ink-900); white-space: nowrap; }
.tc-hol-dow { color: var(--ink-500); white-space: nowrap; }
.tc-hol-name { color: var(--ink-900); }
.tc-hol-iso { color: var(--ink-400); font-size: 12px; font-family: ui-monospace, monospace; white-space: nowrap; }

/* ------------------------------------------------------------------ */
/* Print styles                                                        */
/* ------------------------------------------------------------------ */

/* Print header — only shown on the printed page, hidden on screen */
.tc-print-header { display: none; }

@media print {
  html, body { background: white !important; }
  .tc-header, .tc-footer, .tc-cal-controls, .tc-cta-section { display: none !important; }
  .tc-main { max-width: none; padding: 12px 16px; }
  .tc-main h1 { display: none !important; }

  .tc-print-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #999;
    padding-bottom: 8px;
    margin-bottom: 10px;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .tc-print-logo {
    width: 180px;
    height: auto;
    display: block;
  }
  .tc-print-title-block {
    text-align: right;
  }
  .tc-print-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 1.1;
  }
  .tc-print-url {
    font-size: 10px;
    color: #555;
    margin-top: 2px;
  }
  .tc-main h2 { font-size: 14px; }

  .tc-cal-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .tc-cal-month {
    border: 1px solid #999;
    border-radius: 4px;
    padding: 6px;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .tc-cal-month h3 { font-size: 11px; margin-bottom: 4px; }
  .tc-cal-month table { font-size: 9px; }
  .tc-cal-day, .tc-cal-dow { padding: 1px 0; }

  .tc-cal-day.tc-cal-holiday {
    background: #eee !important;
    color: #000 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .tc-cal-day.tc-cal-weekend { color: #555 !important; }

  .tc-hol-section { page-break-before: always; }
  .tc-hol-table { font-size: 11px; }
  .tc-hol-table th, .tc-hol-table td { padding: 4px 8px; }
}

/* ------------------------------------------------------------------ */
/* Calendar index — search row, popular cards, region groups          */
/* ------------------------------------------------------------------ */

.tc-cal-hero {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 24px 20px 20px;
  margin-bottom: 16px;
  text-align: center;
}
.tc-cal-hero-logo {
  display: block;
  margin: 0 auto 12px;
  max-width: 320px;
  width: 100%;
  height: auto;
}
.tc-cal-hero .tc-lead { text-align: left; }

.tc-cl-search-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}
#tc-cl-search {
  flex: 1;
  min-width: 220px;
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink-200);
  background: white;
  font-family: inherit;
}
#tc-cl-search:focus {
  outline: none;
  border-color: var(--sea-500);
  box-shadow: 0 0 0 3px rgba(31, 138, 159, 0.15);
}
.tc-cl-years {
  font-size: 12px;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Popular travel countries */
.tc-pop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 8px;
}
.tc-pop-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  padding: 14px 10px 12px;
  color: var(--ink-900);
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.tc-pop-card:hover {
  border-color: var(--sea-300);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(15, 22, 42, 0.18);
}
.tc-pop-flag {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 8px;
}
.tc-pop-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-900);
  line-height: 1.2;
}
.tc-pop-year {
  margin-top: 4px;
  font-size: 11px;
  color: var(--sea-600);
  font-weight: 500;
}

/* All countries by region */
.tc-cl-region {
  margin-top: 18px;
}
.tc-cl-region:first-of-type { margin-top: 4px; }
.tc-cl-region-h {
  font-size: 14px;
  color: var(--ink-700);
  margin: 0 0 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink-100);
}
.tc-cl-count {
  color: var(--ink-400);
  font-weight: 400;
  font-size: 12px;
  margin-left: 6px;
}
.tc-cl-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2px 12px;
}
.tc-cl-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 6px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink-700);
}
.tc-cl-list li a:hover {
  background: var(--ink-50);
  color: var(--ink-900);
  text-decoration: none;
}
.tc-cl-flag { font-size: 16px; line-height: 1; flex-shrink: 0; }
.tc-cl-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tc-cl-empty {
  text-align: center;
  color: var(--ink-500);
  font-style: italic;
  padding: 24px 12px;
}

/* ------------------------------------------------------------------ */
/* Time zones: ribbon + cards                                          */
/* ------------------------------------------------------------------ */

.tc-tz-utc {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 10px;
  background: var(--ink-900);
  color: white;
  border-radius: 999px;
  font-family: ui-monospace, monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  vertical-align: middle;
}

.tc-tz-worldmap-wrap {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px -8px rgba(15, 22, 42, 0.12);
}
.tc-tz-worldmap {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
  border-radius: 10px;
  background: #13162b;
}
.tc-tz-worldmap-cap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: var(--ink-500);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--ink-100);
}
@media (max-width: 600px) {
  .tc-tz-worldmap-cap { font-size: 10px; flex-direction: column; gap: 4px; }
}

.tc-tz-ribbon-wrap {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}
.tc-tz-ribbon {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  border-radius: 10px;
  background: var(--ink-50);
  padding: 0;
  -webkit-overflow-scrolling: touch;
}
.tc-tz-seg {
  flex: 1 0 64px;
  min-width: 64px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.tc-tz-seg:last-child { border-right: 0; }
.tc-tz-seg-bar {
  height: 56px;
  background: var(--ink-50);
  transition: background 0.6s ease;
}
.tc-tz-seg-label {
  padding: 6px 4px 8px;
  text-align: center;
  background: white;
}
.tc-tz-seg-offset {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-700);
  font-family: ui-monospace, monospace;
}
.tc-tz-seg-time {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  font-family: ui-monospace, monospace;
  margin-top: 2px;
}
.tc-tz-seg-city {
  font-size: 10px;
  color: var(--ink-500);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tc-tz-ribbon-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--ink-500);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--ink-100);
}
.tc-tz-ribbon-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tc-tz-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
}

.tc-tz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.tc-tz-card {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
  transition: background 0.6s ease, color 0.6s ease;
}
.tc-tz-offset {
  font-size: 11px;
  font-weight: 600;
  font-family: ui-monospace, monospace;
  opacity: 0.65;
  letter-spacing: 0.04em;
}
.tc-tz-time {
  font-size: 26px;
  font-weight: 700;
  font-family: ui-monospace, monospace;
  margin-top: 4px;
  letter-spacing: -0.02em;
}
.tc-tz-city {
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
}
.tc-tz-country {
  font-size: 11px;
  opacity: 0.7;
  margin-top: 1px;
}

/* ------------------------------------------------------------------ */
/* Contact: click-to-reveal email with math captcha                    */
/* ------------------------------------------------------------------ */

.tc-contact-show-btn {
  background: var(--ink-900);
  color: white;
  border: 0;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tc-contact-show-btn:hover { background: var(--ink-700); }

.tc-captcha {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: 10px;
  padding: 14px 16px;
  max-width: 360px;
}
.tc-captcha-label {
  font-size: 14px;
  color: var(--ink-700);
}
.tc-captcha-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.tc-captcha-row input {
  font-size: 16px;
  padding: 8px 12px;
  border: 1px solid var(--ink-200);
  border-radius: 6px;
  width: 90px;
  font-family: inherit;
}
.tc-captcha-row input:focus {
  outline: none;
  border-color: var(--sea-500);
  box-shadow: 0 0 0 3px rgba(31, 138, 159, 0.15);
}
.tc-captcha-row button {
  background: var(--ink-900);
  color: white;
  border: 0;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}
.tc-captcha-row button:hover { background: var(--ink-700); }
.tc-captcha-error {
  font-size: 12px;
  color: #b13a18;
  min-height: 16px;
}

.tc-contact-email {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 16px;
  background: var(--sea-50);
  border: 1px solid #a5d4dd;
  border-radius: 10px;
  color: var(--ink-900);
  text-decoration: none;
}
.tc-contact-email:hover { background: #d3f1f5; text-decoration: none; }
.tc-contact-copy {
  margin-left: 8px;
  font-size: 12px;
  padding: 6px 12px;
  background: var(--ink-100);
  color: var(--ink-700);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  vertical-align: middle;
}
.tc-contact-copy:hover { background: var(--ink-200); }

/* ------------------------------------------------------------------ */
/* Time-in-city, astronomy, countdowns, records, religious, converter  */
/* ------------------------------------------------------------------ */

/* Time-in-city hero */
.tc-tic-hero {
  background: linear-gradient(135deg, #13162b 0%, #1d2447 100%);
  color: white;
  border: 0;
}
.tc-tic-clock-wrap { text-align: center; }
.tc-tic-clock {
  font-size: 64px;
  font-weight: 700;
  font-family: ui-monospace, monospace;
  letter-spacing: -0.02em;
  color: white;
  line-height: 1;
}
.tc-tic-date {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}
.tc-tic-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  font-family: ui-monospace, monospace;
}
.tc-tic-diff {
  margin-top: 12px;
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}
.tc-tic-sun-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: center;
}
.tc-tic-sun-label {
  font-size: 12px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tc-tic-sun-val {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-900);
  font-family: ui-monospace, monospace;
  margin-top: 4px;
}
.tc-tic-note {
  font-size: 12px;
  color: var(--ink-500);
  font-style: italic;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .tc-tic-clock { font-size: 44px; }
  .tc-tic-sun-grid { grid-template-columns: 1fr; }
}

/* Astronomy + records tables */
.tc-astro-table, .tc-records-table, .tc-countdown-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 8px;
}
.tc-astro-table th, .tc-astro-table td,
.tc-records-table th, .tc-records-table td,
.tc-countdown-table th, .tc-countdown-table td {
  padding: 8px 12px;
  text-align: left;
  border-top: 1px solid var(--ink-100);
}
.tc-astro-table thead th,
.tc-records-table thead th,
.tc-countdown-table thead th {
  border-top: 0;
  border-bottom: 2px solid var(--ink-100);
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
  font-weight: 500;
}
.tc-records-table h2 small, .tc-dst-region h3 small {
  font-weight: 400;
  color: var(--ink-500);
  margin-left: 4px;
  font-size: 12px;
}

/* Time zone converter */
.tc-conv {
  margin-top: 16px;
}
.tc-conv-pair {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  /* Stack City A above City B vertically; swap button between them */
  .tc-conv-pair {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .tc-conv-label { width: 100%; }
  .tc-conv-pair button {
    align-self: center;
    transform: rotate(90deg);
    margin: 2px 0;
  }
}
.tc-conv-label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tc-conv-label select {
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  background: white;
  font-family: inherit;
}
.tc-conv-pair button {
  background: var(--ink-900);
  color: white;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 18px;
  cursor: pointer;
  align-self: flex-end;
}
.tc-conv-output {
  margin-top: 16px;
  padding: 16px;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
}
.tc-conv-clocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
}
.tc-conv-clock {
  text-align: center;
  background: white;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--ink-100);
}
.tc-conv-clock-time {
  font-size: 28px;
  font-weight: 700;
  font-family: ui-monospace, monospace;
  color: var(--ink-900);
}
.tc-conv-clock-label {
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 4px;
}
.tc-conv-diff {
  text-align: center;
  font-size: 14px;
  color: var(--ink-700);
  padding: 8px;
  background: white;
  border-radius: 6px;
}
.tc-conv-strip-wrap { margin-top: 16px; }
.tc-conv-strip-label {
  font-size: 11px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 8px 0 4px;
}
.tc-conv-strip {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 1px;
  background: var(--ink-100);
  border: 1px solid var(--ink-100);
  border-radius: 6px;
  overflow: hidden;
}
.tc-conv-cell {
  background: white;
  text-align: center;
  font-size: 10px;
  font-family: ui-monospace, monospace;
  padding: 6px 0;
  color: var(--ink-700);
}
.tc-conv-cell.tc-conv-work { background: #fff5d6; color: #b8860b; font-weight: 600; }
.tc-conv-cell.tc-conv-night { background: #1a1f3d; color: #a5b4d3; }
.tc-conv-cell.tc-conv-now { box-shadow: inset 0 0 0 2px var(--sea-500); font-weight: 700; }

/* Mobile: stack clocks, allow strips to scroll horizontally instead of cramming */
@media (max-width: 640px) {
  .tc-conv-clocks { grid-template-columns: 1fr; gap: 10px; }
  .tc-conv-clock-time { font-size: 32px; }
  .tc-conv-strip {
    grid-template-columns: repeat(24, minmax(28px, 1fr));
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tc-conv-cell { font-size: 11px; padding: 7px 0; }
}

/* Avoid-city reasons */
.tc-avoid-reason {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin: 2px 4px 2px 0;
}
.tc-avoid-hot { background: #ffe0d6; color: #b13a18; }
.tc-avoid-warm { background: #fff0d6; color: #b8860b; }
.tc-avoid-cold { background: #d6e8ff; color: #1c4a8a; }
.tc-avoid-wet { background: #d6eeff; color: #155566; }
.tc-avoid-storm { background: #f0d6ff; color: #5a1c8a; }

/* Compare table */
.tc-cmp-pickers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
@media (max-width: 640px) {
  /* Stack City A above City B on phones */
  .tc-cmp-pickers { grid-template-columns: 1fr; }
}
.tc-cmp-pickers label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tc-cmp-pickers select {
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  background: white;
  font-family: inherit;
}
.tc-cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 8px;
}
.tc-cmp-table th, .tc-cmp-table td {
  padding: 8px 12px;
  text-align: left;
  border-top: 1px solid var(--ink-100);
}
.tc-cmp-table thead th {
  border-top: 0;
  border-bottom: 2px solid var(--ink-100);
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
  font-weight: 500;
}
.tc-cmp-table .tc-cmp-win {
  background: #eaf7ee;
  font-weight: 600;
  color: #1a5d2c;
}

/* ------------------------------------------------------------------ */
/* Daylight Saving Time page                                           */
/* ------------------------------------------------------------------ */

.tc-dst-banner {
  background: linear-gradient(135deg, #fff8eb 0%, #fff 100%);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  padding: 16px;
  margin-top: 12px;
}
.tc-dst-banner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.tc-dst-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--ink-700);
}
.tc-dst-pill strong {
  margin-left: 6px;
  padding-left: 8px;
  border-left: 1px solid var(--ink-200);
  font-weight: 600;
}
.tc-dst-pill-on {
  background: #fff5d6;
  border-color: #f0c656;
}
.tc-dst-pill-on strong { color: #b8860b; }
.tc-dst-pill-off { background: #f0f3fa; }
.tc-dst-pill-off strong { color: var(--ink-500); }
.tc-dst-banner-summary {
  font-size: 13px;
  color: var(--ink-500);
  font-style: italic;
}

.tc-dst-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 8px;
}
.tc-dst-table th, .tc-dst-table td {
  padding: 10px 12px;
  text-align: left;
  border-top: 1px solid var(--ink-100);
}
.tc-dst-table thead th {
  border-top: 0;
  border-bottom: 2px solid var(--ink-100);
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
  font-weight: 500;
}
.tc-dst-fwd { color: #c46b3a; font-weight: 600; }
.tc-dst-back { color: var(--sea-600); font-weight: 600; }

.tc-dst-region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.tc-dst-region {
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  padding: 16px;
}
.tc-dst-region h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--ink-900);
}
.tc-dst-region h3 small {
  font-weight: 400;
  color: var(--ink-500);
  margin-left: 4px;
}
.tc-dst-rule {
  font-size: 13px;
  color: var(--ink-700);
  margin-bottom: 4px;
}
.tc-dst-rule .tc-dst-fwd, .tc-dst-rule .tc-dst-back {
  display: inline-block;
  width: 18px;
}
.tc-dst-region p {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--ink-500);
}

/* ------------------------------------------------------------------ */
/* FAQ list                                                            */
/* ------------------------------------------------------------------ */

.tc-faq-list .tc-faq-item {
  border-top: 1px solid var(--ink-100);
  padding: 14px 0;
}
.tc-faq-list .tc-faq-item:first-child { border-top: 0; padding-top: 0; }
.tc-faq-q {
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
  padding-right: 24px;
  position: relative;
  list-style: none;
}
.tc-faq-q::-webkit-details-marker { display: none; }
.tc-faq-q::after {
  content: "−";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--ink-400);
  font-size: 18px;
  font-weight: 400;
}
.tc-faq-item:not([open]) .tc-faq-q::after { content: "+"; }
.tc-faq-a {
  margin-top: 8px;
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.55;
}


/* ================================================================== */
/* Currency converter + pair pages                                    */
/* ================================================================== */

/* Hero converter card — bright sunset gradient */
.tc-cur {
  background:
    radial-gradient(circle at 0% 0%, rgba(249, 122, 71, 0.10), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(13, 148, 136, 0.10), transparent 50%),
    linear-gradient(135deg, #fffbf5 0%, #fff 50%, #f0fdfa 100%);
  border: 1px solid var(--coral-100);
  border-radius: 20px;
  padding: 28px 24px;
  margin: 16px 0;
  box-shadow:
    0 1px 2px rgba(0,0,0,.04),
    0 12px 32px -16px rgba(234, 88, 12, 0.18);
  position: relative;
  overflow: hidden;
}
.tc-cur::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--coral-500) 0%,
    var(--amber-500) 25%,
    var(--emerald-500) 50%,
    var(--teal-500) 65%,
    var(--indigo-500) 85%,
    var(--rose-500) 100%);
}

.tc-cur-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.tc-cur-amount {
  flex: 1 1 140px;
  min-width: 0;
  padding: 14px 16px;
  font-size: 20px;
  font-weight: 700;
  border: 2px solid var(--ink-100);
  border-radius: 12px;
  background: #fff;
  color: var(--ink-900);
  font-variant-numeric: tabular-nums;
  transition: border-color .15s, box-shadow .15s;
}
.tc-cur-amount:focus {
  outline: none;
  border-color: var(--coral-400);
  box-shadow: 0 0 0 4px rgba(249, 122, 71, 0.12);
}
.tc-cur-select {
  flex: 1 1 200px;
  min-width: 0;
  padding: 14px 12px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--ink-100);
  border-radius: 12px;
  background: #fff;
  color: var(--ink-900);
  cursor: pointer;
  transition: border-color .15s;
}
.tc-cur-select:hover { border-color: var(--coral-300); }
.tc-cur-select:focus {
  outline: none;
  border-color: var(--coral-400);
  box-shadow: 0 0 0 4px rgba(249, 122, 71, 0.12);
}
.tc-cur-select optgroup {
  font-weight: 700;
  color: var(--coral-600);
  font-style: normal;
}
.tc-cur-select option {
  font-weight: 500;
  color: var(--ink-900);
  padding: 4px 0;
}

.tc-cur-row button {
  flex: 0 0 auto;
  padding: 12px 14px;
  font-size: 18px;
  border: 2px solid var(--coral-300);
  border-radius: 12px;
  background: #fff;
  color: var(--coral-500);
  cursor: pointer;
  transition: all .15s;
  font-weight: 600;
}
.tc-cur-row button:hover {
  background: var(--coral-500);
  color: #fff;
  border-color: var(--coral-500);
  transform: rotate(180deg);
}

.tc-cur-result {
  margin-top: 22px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--coral-50), #fff);
  border-radius: 14px;
  border: 1px solid var(--coral-100);
  text-align: left;
}
.tc-cur-result-value {
  display: inline-block;
  font-size: 40px;
  font-weight: 800;
  color: var(--coral-600);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--coral-500), var(--amber-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tc-cur-result-code {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-500);
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tc-cur-rate {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-700);
  font-variant-numeric: tabular-nums;
}
.tc-cur-rate strong { color: var(--coral-600); font-weight: 700; }
.tc-cur-rate-back { color: var(--ink-400); margin-left: 6px; }

.tc-cur-meta {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-400);
  display: flex;
  align-items: center;
  gap: 6px;
}
.tc-cur-status::before {
  content: "● ";
  color: var(--emerald-500);
  font-size: 8px;
  vertical-align: middle;
}
.tc-cur-status strong { color: var(--coral-600); }

/* Conversion table */
.tc-cur-table-wrap { margin: 24px 0 8px; }
.tc-cur-table-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 10px 0;
  padding-left: 10px;
  border-left: 3px solid var(--coral-500);
}
.tc-cur-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  overflow: hidden;
}
.tc-cur-table th {
  text-align: left;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--coral-50), var(--amber-50));
  font-weight: 700;
  color: var(--coral-600);
  border-bottom: 2px solid var(--coral-100);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.tc-cur-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--ink-50);
  color: var(--ink-900);
  font-weight: 500;
}
.tc-cur-table tr:last-child td { border-bottom: none; }
.tc-cur-table tr:hover td { background: var(--coral-50); }

/* Pair link chips — colorful & distinct */
.tc-cur-pairs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}
.tc-cur-pair-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  border: 1.5px solid var(--coral-200, #fdba74);
  border-radius: 999px;
  color: var(--coral-600);
  text-decoration: none;
  transition: all .15s;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 1px 2px rgba(234, 88, 12, 0.06);
}
.tc-cur-pair-link:hover {
  background: linear-gradient(135deg, var(--coral-500), var(--amber-500));
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px -2px rgba(234, 88, 12, 0.32);
  text-decoration: none;
}
.tc-cur-pairs-more { margin-top: 10px; font-size: 13px; }
.tc-cur-pairs-more a {
  color: var(--coral-500);
  text-decoration: none;
  font-weight: 600;
}
.tc-cur-pairs-more a:hover { text-decoration: underline; color: var(--coral-600); }

/* ----- Pair page hero ----- */
.tc-cur-pair-rate {
  text-align: center;
  padding: 24px 16px 20px;
  margin: -28px -24px 24px;
  background: linear-gradient(135deg, var(--coral-50), var(--amber-50) 60%, #fff);
  border-radius: 18px 18px 0 0;
  border-bottom: 1px solid var(--coral-100);
}
.tc-cur-pair-headline {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}
.tc-cur-pair-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink-700);
}
.tc-cur-pair-result {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--coral-500), var(--rose-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tc-cur-pair-eq {
  font-size: 28px;
  color: var(--coral-400);
  font-weight: 300;
}
.tc-cur-pair-back {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-500);
  font-variant-numeric: tabular-nums;
}
.tc-cur-pair-back span { color: var(--coral-600); font-weight: 600; }
.tc-cur-pair-from {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  background: var(--coral-100);
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: 0.02em;
}
.tc-cur-pair-to {
  flex: 1;
  text-align: right;
  font-size: 18px;
  font-weight: 700;
  color: var(--coral-600);
  font-variant-numeric: tabular-nums;
}
.tc-cur-pair-arrow { font-size: 18px; color: var(--coral-400); }

.tc-cur-tables {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .tc-cur-tables { grid-template-columns: 1fr 1fr; }
}

.tc-cur-tips {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}
.tc-cur-tips li {
  padding: 10px 12px 10px 36px;
  margin: 6px 0;
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.5;
  background: var(--amber-50);
  border-left: 3px solid var(--amber-500);
  border-radius: 6px;
  position: relative;
}
.tc-cur-tips li::before {
  content: "💡";
  position: absolute;
  left: 12px;
  top: 10px;
  font-size: 14px;
}
.tc-cur-tips strong { color: var(--ink-900); }

/* All-pairs index */
.tc-cur-all {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) {
  .tc-cur-all { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1080px) {
  .tc-cur-all { grid-template-columns: 1fr 1fr 1fr; }
}
.tc-cur-group {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  padding: 14px 16px;
  border-top: 3px solid var(--coral-500);
}
.tc-cur-group-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--coral-600);
  margin: 0 0 8px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--coral-100);
  letter-spacing: 0.01em;
}
.tc-cur-group-list { list-style: none; padding: 0; margin: 0; }
.tc-cur-group-list a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 6px;
  color: var(--ink-700);
  text-decoration: none;
  font-size: 13px;
  transition: background-color .15s, color .15s;
}
.tc-cur-group-list a:hover {
  background: var(--coral-50);
  color: var(--coral-600);
}
.tc-cur-group-list a strong { color: var(--ink-900); font-weight: 700; }
.tc-cur-rate-mini {
  font-size: 11px;
  color: var(--ink-400);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ================================================================== */
/* AdSense slots — real ads + dashed placeholders                     */
/* ================================================================== */
.tc-ad {
  margin: 24px auto;
  max-width: var(--max-w);
  padding: 0 4px;
  text-align: center;
  color: var(--ink-400);
}
.tc-ad-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-300);
  margin-bottom: 4px;
  text-align: center;
}
.tc-ad-placeholder {
  border: 1.5px dashed var(--ink-200);
  background: var(--ink-50);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tc-ad-placeholder .tc-ad-tag {
  margin-bottom: 8px;
}
.tc-ad-ph-inner {
  font-size: 11px;
  color: var(--ink-300);
  font-style: italic;
}

/* Format-specific minimum heights so layout matches with or without ads */
.tc-ad-banner.tc-ad-placeholder { min-height: 110px; }
.tc-ad-inline.tc-ad-placeholder { min-height: 260px; }
.tc-ad-sidebar.tc-ad-placeholder { min-height: 600px; max-width: 300px; }
.tc-ad-responsive.tc-ad-placeholder { min-height: 110px; }

/* When the real ad renders, the <ins> handles the height */
.tc-ad .adsbygoogle { display: block; }
.tc-ad-banner .adsbygoogle { min-height: 90px; }
.tc-ad-inline .adsbygoogle { min-height: 250px; }
.tc-ad-sidebar .adsbygoogle { min-height: 600px; }

/* Hide ads cleanly in print and on tiny screens (Google requires the
   layout to remain coherent without ads, but we tighten margins on phones) */
@media print {
  .tc-ad { display: none !important; }
}
@media (max-width: 480px) {
  .tc-ad { margin: 16px auto; }
}

/* ================================================================== */
/* PER-PAGE COLOR THEMES                                              */
/* Each page type gets its own accent palette via .tc-page-<slug>     */
/* (auto-set on <main> from the canonical URL's first segment).        */
/* ================================================================== */

/* Shared theme primitives — applied to all themed pages */
[class*="tc-page-"] h1 {
  position: relative;
  padding-bottom: 12px;
}
[class*="tc-page-"] h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 4px;
  border-radius: 2px;
}
[class*="tc-page-"] .tc-section h2 {
  display: inline-block;
  position: relative;
  padding: 4px 0 4px 12px;
  margin-bottom: 12px;
  font-weight: 700;
  border-left: 3px solid currentColor;
  color: var(--ink-900);
}

/* ----- CALENDAR (sea blue — orderly) ------------------------------ */
.tc-page-calendar h1::after { background: linear-gradient(90deg, var(--sea-500), var(--sea-600)); }
.tc-page-calendar .tc-section { border-top: 3px solid var(--sea-500); }
.tc-page-calendar .tc-section:first-of-type {
  background: linear-gradient(135deg, var(--sea-50), #fff 60%);
}
.tc-page-calendar .tc-section h2 { border-left-color: var(--sea-500); color: var(--sea-600); }
.tc-page-calendar .tc-cal-hero {
  background: linear-gradient(135deg, var(--sea-50), #fff);
  border-radius: 12px;
  padding: 14px 16px;
}
.tc-page-calendar .tc-cal-yr-current { background: var(--sea-500); color: #fff; border-color: var(--sea-500); }

/* ----- TIME-IN-CITY (indigo — night sky / clocks) ----------------- */
.tc-page-time-in h1::after { background: linear-gradient(90deg, var(--indigo-500), #312e81); }
.tc-page-time-in .tc-section { border-top: 3px solid var(--indigo-500); }
.tc-page-time-in .tc-section h2 { border-left-color: var(--indigo-500); color: var(--indigo-500); }
.tc-page-time-in .tc-tic-clock-wrap {
  background: linear-gradient(135deg, var(--indigo-50), #fff 60%, #fff8e6 100%);
  border-radius: 14px;
  padding: 22px;
  border: 1px solid #e0e7ff;
}
.tc-page-time-in .tc-tic-clock {
  background: linear-gradient(135deg, var(--indigo-500), #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ----- TIME-ZONE CONVERTER (sky — air, distance) ------------------ */
.tc-page-converter h1::after { background: linear-gradient(90deg, var(--sky-500), #0369a1); }
.tc-page-converter .tc-section { border-top: 3px solid var(--sky-500); }
.tc-page-converter .tc-section h2 { border-left-color: var(--sky-500); color: var(--sky-500); }
.tc-page-converter .tc-conv {
  background: linear-gradient(135deg, var(--sky-50), #fff 60%);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #bae6fd;
}
.tc-page-converter .tc-conv-clock-time {
  background: linear-gradient(135deg, var(--sky-500), #0369a1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.tc-page-converter .tc-conv-diff strong { color: var(--sky-500); }

/* ----- TIME ZONES MAP (teal/emerald — world) ---------------------- */
.tc-page-timezones h1::after { background: linear-gradient(90deg, var(--teal-500), var(--emerald-500)); }
.tc-page-timezones .tc-section { border-top: 3px solid var(--teal-500); }
.tc-page-timezones .tc-section h2 { border-left-color: var(--teal-500); color: var(--teal-500); }
.tc-page-timezones .tc-tz-card {
  border-top: 3px solid var(--teal-500);
  transition: transform .15s, box-shadow .15s;
}
.tc-page-timezones .tc-tz-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px -4px rgba(13, 148, 136, .25);
}
.tc-page-timezones .tc-tz-time { color: var(--teal-500); font-weight: 700; }

/* ----- DAYLIGHT SAVING (amber — sunny) ---------------------------- */
.tc-page-daylight-saving h1::after { background: linear-gradient(90deg, var(--amber-500), #f59e0b); }
.tc-page-daylight-saving .tc-section { border-top: 3px solid var(--amber-500); }
.tc-page-daylight-saving .tc-section h2 { border-left-color: var(--amber-500); color: var(--amber-500); }
.tc-page-daylight-saving .tc-dst-banner {
  background: linear-gradient(135deg, var(--amber-50), #fef3c7);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #fde68a;
}
.tc-page-daylight-saving .tc-dst-pill-on { background: var(--amber-500); color: #fff; }
.tc-page-daylight-saving .tc-dst-pill-off { background: var(--ink-200); color: var(--ink-700); }

/* ----- COMPARE CITIES (coral — heat, contrast) -------------------- */
.tc-page-compare h1::after { background: linear-gradient(90deg, var(--coral-500), var(--amber-500)); }
.tc-page-compare .tc-section { border-top: 3px solid var(--coral-500); }
.tc-page-compare .tc-section h2 { border-left-color: var(--coral-500); color: var(--coral-500); }
.tc-page-compare .tc-cmp-pickers {
  background: linear-gradient(135deg, var(--coral-50), #fff);
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--coral-100);
}

/* ----- COUNTDOWN (rose — anticipation) ---------------------------- */
.tc-page-countdown h1::after { background: linear-gradient(90deg, var(--rose-500), #be185d); }
.tc-page-countdown .tc-section { border-top: 3px solid var(--rose-500); }
.tc-page-countdown .tc-section h2 { border-left-color: var(--rose-500); color: var(--rose-500); }
.tc-page-countdown .tc-countdown-table th {
  background: linear-gradient(135deg, var(--rose-50), #fff);
  color: var(--rose-500);
  font-weight: 700;
}

/* ----- WHEN NOT TO VISIT (rose — warning) ------------------------- */
.tc-page-avoid h1::after { background: linear-gradient(90deg, var(--rose-500), var(--coral-500)); }
.tc-page-avoid .tc-section { border-top: 3px solid var(--rose-500); }
.tc-page-avoid .tc-section h2 { border-left-color: var(--rose-500); color: var(--rose-500); }
.tc-page-avoid .tc-avoid-reason {
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  display: inline-block;
  margin: 2px 4px 2px 0;
}
.tc-page-avoid .tc-avoid-hot { background: #fef2f2; color: #b91c1c; }
.tc-page-avoid .tc-avoid-cold { background: var(--sky-50); color: #0c4a6e; }
.tc-page-avoid .tc-avoid-wet { background: var(--teal-50); color: #115e59; }
.tc-page-avoid .tc-avoid-warm { background: #fff7ed; color: #c2410c; }
.tc-page-avoid .tc-avoid-storm { background: var(--indigo-50); color: #3730a3; }

/* ----- RELIGIOUS CALENDAR (teal — sacred) ------------------------- */
.tc-page-religious-calendar h1::after { background: linear-gradient(90deg, var(--teal-500), #047857); }
.tc-page-religious-calendar .tc-section { border-top: 3px solid var(--teal-500); }
.tc-page-religious-calendar .tc-section h2 { border-left-color: var(--teal-500); color: var(--teal-500); }
.tc-page-religious-calendar .tc-astro-table th {
  background: linear-gradient(135deg, var(--teal-50), #fff);
  color: var(--teal-500);
  font-weight: 700;
}

/* ----- ASTRONOMY (indigo — night sky) ----------------------------- */
.tc-page-astronomy h1::after { background: linear-gradient(90deg, var(--indigo-500), #5b21b6); }
.tc-page-astronomy .tc-section { border-top: 3px solid var(--indigo-500); }
.tc-page-astronomy .tc-section h2 { border-left-color: var(--indigo-500); color: var(--indigo-500); }
.tc-page-astronomy .tc-astro-table th {
  background: linear-gradient(135deg, var(--indigo-50), #fff);
  color: var(--indigo-500);
  font-weight: 700;
}

/* ----- WEATHER RECORDS (coral/amber — extremes) ------------------- */
.tc-page-weather-records h1::after { background: linear-gradient(90deg, var(--coral-500), var(--rose-500)); }
.tc-page-weather-records .tc-section { border-top: 3px solid var(--coral-500); }
.tc-page-weather-records .tc-section h2 { border-left-color: var(--coral-500); color: var(--coral-500); }
.tc-page-weather-records .tc-records-table th {
  background: linear-gradient(135deg, var(--coral-50), var(--amber-50));
  color: var(--coral-600);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 10px 12px;
}
.tc-page-weather-records .tc-records-table td:first-child {
  color: var(--coral-500);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ----- TRAVEL GUIDES (emerald — nature, travel) ------------------- */
.tc-page-guides h1::after { background: linear-gradient(90deg, var(--emerald-500), var(--teal-500)); }
.tc-page-guides .tc-section { border-top: 3px solid var(--emerald-500); }
.tc-page-guides .tc-section h2 { border-left-color: var(--emerald-500); color: var(--emerald-500); }
.tc-page-guides .tc-card {
  border-top: 2px solid var(--emerald-500);
  transition: transform .15s, box-shadow .15s;
}
.tc-page-guides .tc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px -4px rgba(5, 150, 105, .25);
}

/* ----- WEATHER (city pages — sea blue, weather feel) -------------- */
.tc-page-weather h1::after { background: linear-gradient(90deg, var(--sea-500), var(--sky-500)); }
.tc-page-weather .tc-section { border-top: 3px solid var(--sea-500); }
.tc-page-weather .tc-section h2 { border-left-color: var(--sea-500); color: var(--sea-500); }

/* ----- BEST-IN-MONTH (amber/coral — sunny months) ----------------- */
.tc-page-best-in h1::after { background: linear-gradient(90deg, var(--amber-500), var(--coral-500)); }
.tc-page-best-in .tc-section { border-top: 3px solid var(--amber-500); }
.tc-page-best-in .tc-section h2 { border-left-color: var(--amber-500); color: var(--amber-500); }
.tc-page-best-in .tc-card {
  border-top: 2px solid var(--amber-500);
}

/* ----- ABOUT / FAQ / CONTACT (sea — info) ------------------------- */
.tc-page-about h1::after,
.tc-page-faq h1::after,
.tc-page-contact h1::after { background: linear-gradient(90deg, var(--sea-500), var(--ink-700)); }
.tc-page-about .tc-section,
.tc-page-faq .tc-section,
.tc-page-contact .tc-section { border-top: 3px solid var(--sea-500); }
.tc-page-about .tc-section h2,
.tc-page-faq .tc-section h2,
.tc-page-contact .tc-section h2 { border-left-color: var(--sea-500); color: var(--sea-600); }

/* ================================================================== */
/* Static-page Browse dropdown — mirrors SPA's BrowseMenu              */
/* Uses native <details> so no JS needed                               */
/* ================================================================== */
.tc-browse {
  position: relative;
  flex: 0 0 auto;
}
.tc-browse summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}
.tc-browse summary::-webkit-details-marker { display: none; }
.tc-nav-browse {
  /* Inherits .tc-nav-link base styles (already gray pill) */
  gap: 5px;
}
.tc-nav-caret {
  font-size: 9px;
  opacity: 0.7;
  transition: transform .15s;
}
.tc-browse[open] .tc-nav-caret { transform: rotate(180deg); }

/* Panel — full-width modal style on mobile, popover on desktop */
.tc-browse-panel {
  position: fixed;
  inset-inline: 8px;
  top: 56px;
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  box-shadow: 0 24px 48px -12px rgba(15, 22, 42, 0.20);
  padding: 12px;
  z-index: 1200;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) {
  .tc-browse-panel {
    /* Stay position:fixed on desktop too — escapes .tc-nav's overflow-x:auto
       which would otherwise clip the dropdown. Anchored to top-right of viewport. */
    position: fixed;
    inset-inline: auto;
    top: 70px;
    right: 16px;
    left: auto;
    width: 640px;
    max-width: calc(100vw - 32px);
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Mobile-only backdrop when open */
.tc-browse[open]::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 42, 0.30);
  z-index: 1199;
}
@media (min-width: 720px) {
  .tc-browse[open]::before { display: none; }
}

.tc-browse-group-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--coral-500);
  font-weight: 600;
  padding: 0 8px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tc-browse-group-title::before {
  content: "";
  width: 4px;
  height: 12px;
  background: var(--coral-400);
  border-radius: 2px;
}
.tc-browse-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tc-browse-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color .12s;
}
.tc-browse-item:hover {
  background: var(--ink-50);
  text-decoration: none;
}
.tc-browse-icon {
  font-size: 18px;
  line-height: 1;
  flex: 0 0 24px;
  text-align: center;
  margin-top: 2px;
}
.tc-browse-text { display: flex; flex-direction: column; min-width: 0; }
.tc-browse-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.3;
}
.tc-browse-desc {
  font-size: 11px;
  color: var(--ink-500);
  line-height: 1.3;
  margin-top: 1px;
}

/* ================================================================== */
/* Packing-list pages (/pack/...)                                     */
/* ================================================================== */
.tc-pack-summary {
  margin-top: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--emerald-50), #fff 60%);
  border: 1px solid #d1fae5;
  border-radius: 12px;
}
.tc-pack-summary-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-pack-summary-icon {
  font-size: 28px;
  line-height: 1;
}
.tc-pack-summary-place {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
}
.tc-pack-summary-meta {
  font-size: 13px;
  color: var(--ink-700);
  margin-top: 2px;
}

.tc-pack-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.tc-pack-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  margin: 2px 0;
}
.tc-pack-item:hover { background: var(--ink-50); }
.tc-pack-tick {
  flex: 0 0 18px;
  text-align: center;
  font-size: 14px;
  margin-top: 2px;
}
.tc-pack-p1 .tc-pack-tick { color: var(--coral-500); font-weight: 700; }
.tc-pack-p2 .tc-pack-tick { color: var(--emerald-500); }
.tc-pack-p3 .tc-pack-tick { color: var(--ink-300); }
.tc-pack-text { display: flex; flex-direction: column; min-width: 0; }
.tc-pack-text strong {
  color: var(--ink-900);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}
.tc-pack-reason {
  font-size: 12px;
  color: var(--ink-500);
  font-style: italic;
  margin-top: 2px;
}

/* Quick-jump month pills on a single-month page */
.tc-pack-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.tc-pack-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  text-decoration: none;
}
.tc-pack-pill:hover {
  background: var(--emerald-50);
  border-color: var(--emerald-500);
  color: var(--emerald-500);
  text-decoration: none;
}

/* Per-city overview month grid */
.tc-pack-month-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media (min-width: 540px) {
  .tc-pack-month-list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 880px) {
  .tc-pack-month-list { grid-template-columns: 1fr 1fr 1fr; }
}
.tc-pack-month-link {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 2px 12px;
  padding: 10px 14px;
  border: 1px solid var(--ink-100);
  border-left: 3px solid var(--emerald-500);
  border-radius: 8px;
  background: white;
  text-decoration: none;
  transition: all .12s;
}
.tc-pack-month-link:hover {
  background: var(--emerald-50);
  border-color: var(--emerald-500);
  text-decoration: none;
}
.tc-pack-month-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
}
.tc-pack-month-tip {
  font-size: 11px;
  color: var(--emerald-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: right;
}
.tc-pack-month-meta {
  grid-column: 1 / -1;
  font-size: 11px;
  color: var(--ink-500);
  font-variant-numeric: tabular-nums;
}

/* Hub city grid */
.tc-pack-city-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 4px;
}
.tc-pack-city-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink-700);
  font-size: 14px;
}
.tc-pack-city-link:hover {
  background: var(--emerald-50);
  color: var(--emerald-500);
  text-decoration: none;
}

/* Page theme: green */
.tc-page-pack h1::after { background: linear-gradient(90deg, var(--emerald-500), var(--teal-500)); }
.tc-page-pack .tc-section { border-top: 3px solid var(--emerald-500); }
.tc-page-pack .tc-section h2 { border-left-color: var(--emerald-500); color: var(--emerald-500); }

/* ================================================================== */
/* Packing-list section colors — each section has its own theme       */
/* ================================================================== */
.tc-pack-sec { border-top-width: 4px; position: relative; }
.tc-pack-sec h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left-width: 3px;
  border-left-style: solid;
}
.tc-pack-sec-icon {
  font-size: 22px;
  line-height: 1;
  flex: 0 0 28px;
  text-align: center;
}

/* Color variants */
.tc-pack-sec-rose    { border-top-color: var(--rose-500); background: linear-gradient(180deg, var(--rose-50), #fff 60%); }
.tc-pack-sec-rose h2  { color: var(--rose-500); border-left-color: var(--rose-500); }
.tc-pack-sec-ink     { border-top-color: var(--ink-700); }
.tc-pack-sec-ink h2   { color: var(--ink-900); border-left-color: var(--ink-700); }
.tc-pack-sec-sky     { border-top-color: var(--sky-500); }
.tc-pack-sec-sky h2   { color: var(--sky-500); border-left-color: var(--sky-500); }
.tc-pack-sec-amber   { border-top-color: var(--amber-500); }
.tc-pack-sec-amber h2 { color: var(--amber-500); border-left-color: var(--amber-500); }
.tc-pack-sec-indigo  { border-top-color: var(--indigo-500); }
.tc-pack-sec-indigo h2{ color: var(--indigo-500); border-left-color: var(--indigo-500); }
.tc-pack-sec-teal    { border-top-color: var(--teal-500); background: linear-gradient(180deg, var(--teal-50), #fff 70%); }
.tc-pack-sec-teal h2  { color: var(--teal-500); border-left-color: var(--teal-500); }
.tc-pack-sec-coral   { border-top-color: var(--coral-500); }
.tc-pack-sec-coral h2 { color: var(--coral-500); border-left-color: var(--coral-500); }
.tc-pack-sec-emerald { border-top-color: var(--emerald-500); background: linear-gradient(180deg, var(--emerald-50), #fff 60%); }
.tc-pack-sec-emerald h2 { color: var(--emerald-500); border-left-color: var(--emerald-500); }

/* Section-color tinted hover state on items */
.tc-pack-sec-rose    .tc-pack-item:hover { background: var(--rose-50); }
.tc-pack-sec-sky     .tc-pack-item:hover { background: var(--sky-50); }
.tc-pack-sec-amber   .tc-pack-item:hover { background: var(--amber-50); }
.tc-pack-sec-indigo  .tc-pack-item:hover { background: var(--indigo-50); }
.tc-pack-sec-teal    .tc-pack-item:hover { background: var(--teal-50); }
.tc-pack-sec-coral   .tc-pack-item:hover { background: var(--coral-50); }
.tc-pack-sec-emerald .tc-pack-item:hover { background: var(--emerald-50); }
.tc-pack-sec-ink     .tc-pack-item:hover { background: var(--ink-50); }

/* Mobile: a touch tighter */
@media (max-width: 640px) {
  .tc-pack-sec h2 { font-size: 16px; }
  .tc-pack-sec-icon { font-size: 18px; flex: 0 0 22px; }
  .tc-pack-text strong { font-size: 13px; }
}

/* ================================================================== */
/* Best-time-to-visit pages — green/yellow/red month cards            */
/* ================================================================== */
.tc-page-best-time h1::after { background: linear-gradient(90deg, var(--emerald-500), var(--amber-500), var(--rose-500)); }
.tc-bt-section-h {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  margin-bottom: 14px;
}
.tc-bt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 540px) { .tc-bt-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 880px) { .tc-bt-grid { grid-template-columns: 1fr 1fr 1fr; } }

.tc-bt-card {
  border-radius: 12px;
  padding: 14px;
  background: white;
  border: 1px solid var(--ink-100);
  border-top-width: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .15s, box-shadow .15s;
}
.tc-bt-card:hover { transform: translateY(-2px); box-shadow: 0 8px 18px -8px rgba(15,22,42,.16); }

.tc-bt-tier-green   { border-top-color: var(--emerald-500); background: linear-gradient(180deg, var(--emerald-50), #fff 60%); }
.tc-bt-tier-yellow  { border-top-color: var(--amber-500);   background: linear-gradient(180deg, var(--amber-50), #fff 60%); }
.tc-bt-tier-red     { border-top-color: var(--rose-500);    background: linear-gradient(180deg, var(--rose-50), #fff 60%); }

.tc-bt-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.tc-bt-card-head h3 { font-size: 18px; font-weight: 700; color: var(--ink-900); margin: 0; }
.tc-bt-tier-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.tc-bt-tier-green .tc-bt-tier-badge   { background: var(--emerald-500); color: #fff; }
.tc-bt-tier-yellow .tc-bt-tier-badge  { background: var(--amber-500); color: #fff; }
.tc-bt-tier-red .tc-bt-tier-badge     { background: var(--rose-500); color: #fff; }

.tc-bt-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 12px;
  color: var(--ink-500);
  font-variant-numeric: tabular-nums;
}
.tc-bt-stats strong { color: var(--ink-900); font-size: 14px; }
.tc-bt-hazard { color: var(--rose-500); font-weight: 600; }
.tc-bt-summary { font-size: 13px; color: var(--ink-700); margin: 0; font-style: italic; }
.tc-bt-reasons { list-style: none; padding: 0; margin: 4px 0 0; font-size: 13px; }
.tc-bt-reasons li {
  padding: 3px 0 3px 18px;
  position: relative;
  color: var(--ink-700);
}
.tc-bt-reasons li::before {
  content: "→";
  position: absolute;
  left: 4px;
  color: var(--ink-400);
}
.tc-bt-tier-green .tc-bt-reasons li::before { content: "✓"; color: var(--emerald-500); }
.tc-bt-tier-red .tc-bt-reasons li::before   { content: "✗"; color: var(--rose-500); }
.tc-bt-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--ink-100);
}
.tc-bt-link {
  font-size: 12px;
  color: var(--coral-500);
  font-weight: 600;
  text-decoration: none;
}
.tc-bt-link:hover { color: var(--coral-600); text-decoration: underline; }

/* ================================================================== */
/* Country hub bento grid + supporting styles                         */
/* ================================================================== */
.tc-page-country h1::after { background: linear-gradient(90deg, var(--coral-500), var(--emerald-500), var(--indigo-500)); }
.tc-country-flag { font-size: 36px; line-height: 1; }

.tc-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
@media (min-width: 720px) { .tc-bento-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1080px) { .tc-bento-grid { grid-template-columns: repeat(5, 1fr); } }

.tc-bento-fact {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.tc-bento-fact::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ink-200);
}
.tc-bento-fact:hover { transform: translateY(-2px); box-shadow: 0 6px 14px -6px rgba(15,22,42,.18); }
.tc-bento-currency::before { background: var(--emerald-500); }
.tc-bento-best::before     { background: var(--amber-500); }

.tc-bento-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-500);
  font-weight: 700;
}
.tc-bento-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-900);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.tc-bento-sub {
  font-size: 11px;
  color: var(--ink-500);
  line-height: 1.3;
}
.tc-bento-sub a { color: var(--coral-500); font-weight: 600; }

/* Cities grid in country page */
.tc-country-cities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
@media (min-width: 540px) { .tc-country-cities { grid-template-columns: 1fr 1fr; } }
@media (min-width: 880px) { .tc-country-cities { grid-template-columns: 1fr 1fr 1fr; } }
.tc-country-city-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  background: white;
  border: 1px solid var(--ink-100);
  border-left: 3px solid var(--coral-500);
  border-radius: 8px;
  text-decoration: none;
  transition: background-color .15s;
}
.tc-country-city-card:hover {
  background: var(--coral-50);
  text-decoration: none;
}
.tc-country-city-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
}
.tc-country-city-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tc-country-city-link {
  font-size: 11px;
  color: var(--coral-500);
  font-weight: 600;
  text-decoration: none;
}
.tc-country-city-link:hover { color: var(--coral-600); }
.tc-country-more { font-size: 13px; color: var(--ink-500); margin-top: 8px; }
.tc-country-city-count { font-size: 11px; color: var(--ink-400); margin-left: 6px; }

.tc-country-currency-pairs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

/* ================================================================== */
/* Newsletter capture                                                 */
/* ================================================================== */
.tc-newsletter {
  background: linear-gradient(135deg, var(--coral-50), var(--amber-50) 60%, #fff);
  border: 1px solid var(--coral-100);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin: 32px auto;
  max-width: var(--max-w);
}
.tc-newsletter-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 6px;
}
.tc-newsletter-sub {
  font-size: 14px;
  color: var(--ink-700);
  margin: 0 0 14px;
}
.tc-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}
.tc-newsletter-input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
}
.tc-newsletter-input:focus {
  outline: 2px solid var(--coral-400);
  outline-offset: 1px;
  border-color: var(--coral-400);
}
.tc-newsletter-btn {
  flex: 0 0 auto;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--coral-500), var(--coral-400));
  color: #fff;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.tc-newsletter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -6px rgba(234, 88, 12, 0.4);
}
.tc-newsletter-tos {
  font-size: 11px;
  color: var(--ink-400);
  margin-top: 10px;
}

/* ================================================================== */
/* Smart Trip Finder (/find/)                                         */
/* ================================================================== */
.tc-page-find h1::after { background: linear-gradient(90deg, var(--coral-500), var(--amber-500), var(--emerald-500), var(--sky-500)); }

.tc-find-controls { background: linear-gradient(135deg, var(--coral-50), var(--amber-50) 50%, #fff); border-color: var(--coral-100); }

.tc-find-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .tc-find-grid { grid-template-columns: 1fr 1fr; }
}

.tc-find-field { display: flex; flex-direction: column; gap: 6px; }
.tc-find-field label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tc-find-select {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--ink-200);
  border-radius: 10px;
  background: white;
  font-family: inherit;
}
.tc-find-select:focus { outline: 2px solid var(--coral-400); border-color: var(--coral-400); }

.tc-find-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tc-find-btn {
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid var(--ink-200);
  border-radius: 999px;
  background: white;
  color: var(--ink-700);
  cursor: pointer;
  transition: all .12s;
  font-family: inherit;
}
.tc-find-btn:hover { border-color: var(--coral-400); color: var(--coral-500); }
.tc-find-btn.tc-find-active {
  background: linear-gradient(135deg, var(--coral-500), var(--coral-400));
  border-color: var(--coral-500);
  color: white;
}

.tc-find-toggles {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 6px;
  border-top: 1px dashed var(--ink-200);
}
.tc-find-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  cursor: pointer;
}
.tc-find-toggle input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--coral-500);
  cursor: pointer;
}

.tc-find-results-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.tc-find-results-head h2 { margin: 0; }
.tc-find-meta { font-size: 12px; color: var(--ink-500); }

.tc-find-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 540px) { .tc-find-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 880px) { .tc-find-cards { grid-template-columns: 1fr 1fr 1fr; } }

.tc-find-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: white;
  border: 1px solid var(--ink-100);
  border-top: 3px solid var(--coral-500);
  border-radius: 12px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.tc-find-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(15,22,42,0.18);
  text-decoration: none;
}
.tc-find-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tc-find-card-flag { font-size: 28px; line-height: 1; }
.tc-find-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.2;
}
.tc-find-card-loc {
  font-size: 11px;
  color: var(--ink-500);
  margin-top: 2px;
}
.tc-find-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-size: 12px;
  color: var(--ink-500);
  font-variant-numeric: tabular-nums;
}
.tc-find-card-stats strong { color: var(--ink-900); }
.tc-find-card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 600;
}
.tc-find-beach-badge {
  padding: 2px 8px;
  background: var(--sky-50);
  color: var(--sky-500);
  border-radius: 999px;
}
.tc-find-haz {
  padding: 2px 8px;
  background: var(--rose-50);
  color: var(--rose-500);
  border-radius: 999px;
}
.tc-find-card-links {
  display: flex;
  gap: 12px;
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--ink-50);
  font-size: 11px;
  font-weight: 700;
  color: var(--coral-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tc-find-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--ink-500);
  font-style: italic;
}

/* ================================================================== */
/* Events pages — upgraded magazine-style styling                     */
/* ================================================================== */
.tc-page-events h1 {
  background: linear-gradient(135deg, var(--rose-500), var(--coral-500), var(--amber-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tc-page-events h1::after { background: linear-gradient(90deg, var(--rose-500), var(--amber-500), var(--emerald-500), var(--indigo-500)); }

/* ----- Per-event meta row ----- */
.tc-event-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
}
.tc-event-cat, .tc-event-pop {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tc-event-cat-rose    { background: linear-gradient(135deg, var(--rose-50), #ffe4e6);    color: var(--rose-500); border: 1px solid #fecdd3; }
.tc-event-cat-emerald { background: linear-gradient(135deg, var(--emerald-50), #d1fae5); color: var(--emerald-500); border: 1px solid #a7f3d0; }
.tc-event-cat-amber   { background: linear-gradient(135deg, var(--amber-50), #fef3c7);   color: #b45309; border: 1px solid #fde68a; }
.tc-event-cat-sky     { background: linear-gradient(135deg, var(--sky-50), #e0f2fe);     color: var(--sky-500); border: 1px solid #bae6fd; }
.tc-event-cat-indigo  { background: linear-gradient(135deg, var(--indigo-50), #e0e7ff);  color: var(--indigo-500); border: 1px solid #c7d2fe; }

.tc-event-pop-mainstream { background: var(--ink-100); color: var(--ink-700); }
.tc-event-pop-rising     { background: linear-gradient(135deg, #fef3c7, var(--amber-50)); color: #b45309; border: 1px solid #fde68a; }
.tc-event-pop-hidden     {
  background: linear-gradient(135deg, var(--coral-500), var(--rose-500));
  color: white;
  box-shadow: 0 2px 8px -2px rgba(234, 88, 12, 0.4);
}

.tc-event-loc, .tc-event-when {
  font-size: 13px;
  color: var(--ink-700);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ----- Climate context box ----- */
.tc-event-climate {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--sky-50), #fff 70%, var(--indigo-50));
  border-left: 4px solid var(--sky-500);
  border-radius: 14px;
  margin-top: 16px;
  box-shadow: 0 2px 6px -2px rgba(2, 132, 199, 0.15);
}
.tc-event-climate-icon { font-size: 32px; line-height: 1; }
.tc-event-climate-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--sky-500);
  letter-spacing: 0.06em;
}
.tc-event-climate-stats {
  font-size: 15px;
  color: var(--ink-900);
  margin-top: 4px;
  font-weight: 500;
}
.tc-event-climate-stats strong { color: var(--sky-500); font-weight: 700; }
.tc-event-climate-link {
  margin-top: 8px;
  font-size: 13px;
}
.tc-event-climate-link a {
  color: var(--coral-500);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--coral-300);
}
.tc-event-climate-link a:hover { color: var(--coral-600); border-bottom-color: var(--coral-600); }

/* ----- Alternatives ("less crowded") ----- */
.tc-event-alts {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.tc-event-alts li {
  padding: 12px 14px 12px 36px;
  margin: 8px 0;
  background: linear-gradient(135deg, var(--emerald-50), #fff 60%);
  border-left: 4px solid var(--emerald-500);
  border-radius: 10px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-700);
}
.tc-event-alts li::before {
  content: "→";
  position: absolute;
  left: 14px;
  top: 12px;
  color: var(--emerald-500);
  font-weight: 700;
  font-size: 16px;
}

/* ----- Pair-with chips ----- */
.tc-event-pairs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.tc-event-pair {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: white;
  border: 1.5px solid var(--ink-200);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  text-decoration: none;
  transition: all .15s;
}
.tc-event-pair:hover {
  border-color: var(--coral-500);
  color: var(--coral-500);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px -2px rgba(234, 88, 12, 0.2);
}

/* ============================================================ */
/* Event cards in by-month listings + hub                       */
/* ============================================================ */
.tc-events-section { border-top-width: 4px; }
.tc-events-rose    { border-top-color: var(--rose-500); }
.tc-events-emerald { border-top-color: var(--emerald-500); }
.tc-events-amber   { border-top-color: var(--amber-500); }
.tc-events-sky     { border-top-color: var(--sky-500); }
.tc-events-indigo  { border-top-color: var(--indigo-500); }
.tc-events-section h2 { font-size: 20px; margin-bottom: 18px; }

.tc-events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 540px) { .tc-events-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 880px) { .tc-events-grid { grid-template-columns: 1fr 1fr 1fr; } }

.tc-event-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: white;
  border: 1px solid var(--ink-100);
  border-top: 4px solid var(--ink-300);
  border-radius: 14px;
  text-decoration: none;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  position: relative;
  overflow: hidden;
}
.tc-event-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, currentColor 0%, transparent 70%);
  opacity: 0.05;
  pointer-events: none;
}
.tc-event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -12px rgba(15,22,42,0.22);
  text-decoration: none;
}
.tc-event-card-rose    { border-top-color: var(--rose-500);    color: var(--rose-500); }
.tc-event-card-emerald { border-top-color: var(--emerald-500); color: var(--emerald-500); }
.tc-event-card-amber   { border-top-color: var(--amber-500);   color: var(--amber-500); }
.tc-event-card-sky     { border-top-color: var(--sky-500);     color: var(--sky-500); }
.tc-event-card-indigo  { border-top-color: var(--indigo-500);  color: var(--indigo-500); }

.tc-event-card-head { display: flex; align-items: center; gap: 10px; }
.tc-event-card-flag { font-size: 28px; line-height: 1; flex: 0 0 auto; }
.tc-event-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.tc-event-card-loc {
  font-size: 11px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.tc-event-card-why {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
  flex: 1;
}
.tc-event-card-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

/* ============================================================ */
/* Browse-by-month grid — seasonal colors                       */
/* ============================================================ */
.tc-events-month-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}
@media (min-width: 540px) { .tc-events-month-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .tc-events-month-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1080px) { .tc-events-month-grid { grid-template-columns: repeat(6, 1fr); } }

.tc-events-month-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 22px 10px 18px;
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  text-decoration: none;
  text-align: center;
  transition: transform .15s, box-shadow .18s, border-color .15s;
  position: relative;
  overflow: hidden;
  min-height: 120px;
}
.tc-events-month-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--month-tint, var(--ink-50)) 0%, transparent 60%);
  opacity: 0.85;
  pointer-events: none;
}
.tc-events-month-card > * { position: relative; z-index: 1; }

.tc-events-month-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -10px rgba(15,22,42,0.22);
  border-color: transparent;
  text-decoration: none;
}

/* Seasonal palette per month — cards inherit a colored tint via custom property */
.tc-events-month-card:nth-child(1)  { --month-tint: #dbeafe; --month-color: #2563eb; }  /* Jan icy blue */
.tc-events-month-card:nth-child(2)  { --month-tint: #ccfbf1; --month-color: #0d9488; }  /* Feb soft teal */
.tc-events-month-card:nth-child(3)  { --month-tint: #d1fae5; --month-color: #059669; }  /* Mar spring green */
.tc-events-month-card:nth-child(4)  { --month-tint: #fce7f3; --month-color: #db2777; }  /* Apr cherry blossom */
.tc-events-month-card:nth-child(5)  { --month-tint: #ede9fe; --month-color: #7c3aed; }  /* May lavender */
.tc-events-month-card:nth-child(6)  { --month-tint: #fef3c7; --month-color: #d97706; }  /* Jun summer amber */
.tc-events-month-card:nth-child(7)  { --month-tint: #fed7aa; --month-color: #ea580c; }  /* Jul orange */
.tc-events-month-card:nth-child(8)  { --month-tint: #fee2e2; --month-color: #dc2626; }  /* Aug red */
.tc-events-month-card:nth-child(9)  { --month-tint: #fef3c7; --month-color: #c2410c; }  /* Sep harvest amber */
.tc-events-month-card:nth-child(10) { --month-tint: #ffedd5; --month-color: #c2410c; }  /* Oct pumpkin */
.tc-events-month-card:nth-child(11) { --month-tint: #fef3c7; --month-color: #92400e; }  /* Nov golden brown */
.tc-events-month-card:nth-child(12) { --month-tint: #fecaca; --month-color: #b91c1c; }  /* Dec festive red */

.tc-events-month-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--month-color, var(--coral-500));
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.tc-events-month-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.1;
}
.tc-events-month-count {
  font-size: 10px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ============================================================ */
/* Hub: featured "Hidden gems" magazine cards                   */
/* ============================================================ */
.tc-events-feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}
@media (min-width: 540px) { .tc-events-feat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 880px) { .tc-events-feat-grid { grid-template-columns: 1fr 1fr 1fr; } }

.tc-event-feat-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  background: linear-gradient(135deg, var(--coral-500), var(--rose-500) 70%, #be185d);
  border-radius: 16px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  color: white;
  transition: transform .18s, box-shadow .18s;
  min-height: 220px;
}
.tc-event-feat-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.tc-event-feat-card::after {
  content: "✦";
  position: absolute;
  bottom: -20px; left: -10px;
  font-size: 120px;
  opacity: 0.1;
  pointer-events: none;
  line-height: 1;
}
.tc-event-feat-card > * { position: relative; z-index: 1; }
.tc-event-feat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -12px rgba(234, 88, 12, 0.5);
  text-decoration: none;
}

.tc-event-feat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tc-event-feat-flag { font-size: 32px; line-height: 1; }
.tc-event-feat-pop {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
}
.tc-event-feat-card h3 {
  margin: 4px 0 0;
  font-size: 19px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.tc-event-feat-loc {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.tc-event-feat-why {
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  line-height: 1.5;
  flex: 1;
  margin-top: 4px;
}

/* Mobile tweaks */
@media (max-width: 540px) {
  .tc-events-month-card { min-height: 100px; padding: 16px 8px 14px; }
  .tc-events-month-num { font-size: 24px; }
  .tc-event-feat-card { min-height: 180px; padding: 18px; }
  .tc-event-feat-card h3 { font-size: 17px; }
}

/* ================================================================== */
/* Coolcation v2 polish — more color, more punch                      */
/* ================================================================== */

/* Subtle frost overlay on the whole page */
body:has(.tc-page-coolcation) {
  background:
    radial-gradient(circle at 0% 0%, rgba(2, 132, 199, 0.06), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(79, 70, 229, 0.05), transparent 50%),
    var(--ink-50);
}

/* Hero: hot benchmarks — flame gradient + temperature thermometer feel */
.tc-cool-hero {
  margin-top: 14px;
  padding: 20px 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(220, 38, 38, 0.12), transparent 60%),
    linear-gradient(135deg, #fef2f2 0%, #ffedd5 50%, #fffbeb 100%);
  border: 1px solid #fecaca;
  border-left: 5px solid #dc2626;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.tc-cool-hero::before {
  content: "🌡";
  position: absolute;
  top: 8px; right: 12px;
  font-size: 40px;
  opacity: 0.18;
  transform: rotate(15deg);
  pointer-events: none;
}
.tc-cool-hero-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b91c1c;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tc-cool-hero-label::before {
  content: "🔥";
  font-size: 14px;
}
.tc-cool-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tc-cool-hot-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: white;
  border: 1.5px solid #fecaca;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-700);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(220, 38, 38, 0.08);
}
.tc-cool-hot-pill strong {
  color: #b91c1c;
  font-weight: 800;
  margin-left: 2px;
  font-size: 14px;
}

/* Tier section banners — gradient strip at top + section accents */
.tc-cool-tier {
  border-top-width: 5px !important;
  position: relative;
  overflow: hidden;
}
.tc-cool-tier::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.08;
  transform: translate(60px, -100px);
}
.tc-cool-tier-1 {
  border-top-color: #0284c7 !important;
  background: linear-gradient(180deg, #f0f9ff 0%, #fff 40%) !important;
}
.tc-cool-tier-1::before { background: radial-gradient(circle, var(--sky-500), transparent 70%); }
.tc-cool-tier-2 {
  border-top-color: #4f46e5 !important;
  background: linear-gradient(180deg, #eef2ff 0%, #fff 40%) !important;
}
.tc-cool-tier-2::before { background: radial-gradient(circle, var(--indigo-500), transparent 70%); }
.tc-cool-tier-3 {
  border-top-color: #0d9488 !important;
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 40%) !important;
}
.tc-cool-tier-3::before { background: radial-gradient(circle, var(--teal-500), transparent 70%); }
.tc-cool-tier-4 {
  border-top-color: #059669 !important;
  background: linear-gradient(180deg, #ecfdf5 0%, #fff 40%) !important;
}
.tc-cool-tier-4::before { background: radial-gradient(circle, var(--emerald-500), transparent 70%); }

.tc-cool-tier h2 {
  font-size: 22px !important;
  margin-bottom: 6px !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
}
.tc-cool-tier-1 h2 { color: #0369a1; }
.tc-cool-tier-2 h2 { color: #4338ca; }
.tc-cool-tier-3 h2 { color: #0f766e; }
.tc-cool-tier-4 h2 { color: #047857; }

.tc-cool-tier-desc {
  font-size: 14px !important;
  color: var(--ink-700) !important;
  font-style: italic;
  margin-bottom: 18px !important;
  padding: 10px 14px;
  background: rgba(255,255,255,0.6);
  border-radius: 8px;
  border-left: 3px solid currentColor;
  opacity: 0.95;
}
.tc-cool-tier-1 .tc-cool-tier-desc { color: #075985 !important; }
.tc-cool-tier-2 .tc-cool-tier-desc { color: #3730a3 !important; }
.tc-cool-tier-3 .tc-cool-tier-desc { color: #115e59 !important; }
.tc-cool-tier-4 .tc-cool-tier-desc { color: #065f46 !important; }

/* Destination cards: big temp circle, more dramatic */
.tc-cool-card {
  padding: 18px !important;
  border-top-width: 5px !important;
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 100%) !important;
  position: relative;
  overflow: hidden;
}
.tc-cool-card::before {
  content: "❄";
  position: absolute;
  top: 6px; right: 8px;
  font-size: 40px !important;
  opacity: 0.10 !important;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}
.tc-cool-card > * { position: relative; z-index: 1; }
.tc-cool-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, var(--tile-tint, transparent) 0%, transparent 50%);
  opacity: 0.4;
  pointer-events: none;
}
.tc-cool-card-sky     { --tile-tint: rgba(2, 132, 199, 0.10); }
.tc-cool-card-indigo  { --tile-tint: rgba(79, 70, 229, 0.10); }
.tc-cool-card-teal    { --tile-tint: rgba(13, 148, 136, 0.10); }
.tc-cool-card-emerald { --tile-tint: rgba(5, 150, 105, 0.10); }

.tc-cool-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 18px 36px -10px rgba(2, 132, 199, 0.30) !important;
}

.tc-cool-card-head {
  margin-bottom: 4px;
}
.tc-cool-card-flag { font-size: 32px !important; }
.tc-cool-card-head h3 {
  font-size: 17px !important;
  letter-spacing: -0.01em;
}
.tc-cool-card-loc {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
}

/* The big temperature display — bento-block style */
.tc-cool-card-temps {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between;
  padding: 12px 14px !important;
  border-top: none !important;
  border-bottom: none !important;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.05), rgba(2, 132, 199, 0.02));
  border-radius: 10px;
  margin: 4px 0;
}
.tc-cool-card-sky     .tc-cool-card-temps { background: linear-gradient(135deg, rgba(2, 132, 199, 0.10), rgba(2, 132, 199, 0.03)); }
.tc-cool-card-indigo  .tc-cool-card-temps { background: linear-gradient(135deg, rgba(79, 70, 229, 0.10), rgba(79, 70, 229, 0.03)); }
.tc-cool-card-teal    .tc-cool-card-temps { background: linear-gradient(135deg, rgba(13, 148, 136, 0.10), rgba(13, 148, 136, 0.03)); }
.tc-cool-card-emerald .tc-cool-card-temps { background: linear-gradient(135deg, rgba(5, 150, 105, 0.10), rgba(5, 150, 105, 0.03)); }

.tc-cool-card-temp-main { display: flex; align-items: baseline; gap: 5px; }
.tc-cool-card-num {
  font-size: 40px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: -0.03em !important;
  font-variant-numeric: tabular-nums !important;
}
.tc-cool-card-unit {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  color: var(--ink-500);
}
.tc-cool-card-temp-diff {
  font-size: 13px !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, var(--emerald-500), #10b981) !important;
  color: white !important;
  padding: 5px 12px !important;
  border-radius: 999px !important;
  box-shadow: 0 2px 6px -2px rgba(5, 150, 105, 0.4);
  font-variant-numeric: tabular-nums;
}

.tc-cool-card-stats {
  display: flex !important;
  gap: 14px !important;
  font-size: 12px !important;
  color: var(--ink-700) !important;
  font-weight: 500;
  padding: 4px 0;
}
.tc-cool-card-stats span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tc-cool-card-stats span:first-child::before { content: "🌙"; font-size: 11px; }
.tc-cool-card-stats span:last-child::before  { content: "🌧"; font-size: 11px; }

.tc-cool-card-links {
  display: flex !important;
  gap: 14px !important;
  padding-top: 8px !important;
  border-top: 1px dashed var(--ink-100) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tc-cool-card-link {
  color: var(--coral-500) !important;
  text-decoration: none;
  transition: color .12s;
}
.tc-cool-card-link:hover { color: var(--coral-600) !important; }

/* Hub: month grid — bring in seasonal/heat-tier colors */
.tc-cool-month-grid {
  gap: 12px !important;
  margin-top: 14px !important;
}
.tc-cool-month-card {
  min-height: 130px !important;
  padding: 22px 12px 18px !important;
  border-width: 1.5px !important;
  border-radius: 16px !important;
  position: relative;
  overflow: hidden;
  background: white !important;
}
.tc-cool-month-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--month-tint, var(--sky-50)) 0%, transparent 70%);
  opacity: 0.95;
  z-index: 0;
}
.tc-cool-month-card > * { position: relative; z-index: 1; }

/* Cool months get cool-tone tints; peak heat months get warm-tone */
.tc-cool-month-grid > a:nth-child(1)  { --month-tint: #dbeafe; --month-color: #2563eb; }  /* Jan icy blue */
.tc-cool-month-grid > a:nth-child(2)  { --month-tint: #e0e7ff; --month-color: #4f46e5; }  /* Feb indigo */
.tc-cool-month-grid > a:nth-child(3)  { --month-tint: #ccfbf1; --month-color: #0d9488; }  /* Mar teal */
.tc-cool-month-grid > a:nth-child(4)  { --month-tint: #d1fae5; --month-color: #059669; }  /* Apr emerald */
.tc-cool-month-grid > a:nth-child(5)  { --month-tint: #fef9c3; --month-color: #ca8a04; }  /* May yellow */
.tc-cool-month-grid > a:nth-child(6)  { --month-tint: #fed7aa; --month-color: #ea580c; }  /* Jun orange */
.tc-cool-month-grid > a:nth-child(7)  { --month-tint: #fee2e2; --month-color: #dc2626; }  /* Jul red */
.tc-cool-month-grid > a:nth-child(8)  { --month-tint: #fecaca; --month-color: #b91c1c; }  /* Aug deep red */
.tc-cool-month-grid > a:nth-child(9)  { --month-tint: #fed7aa; --month-color: #c2410c; }  /* Sep orange-brown */
.tc-cool-month-grid > a:nth-child(10) { --month-tint: #fef3c7; --month-color: #92400e; }  /* Oct amber */
.tc-cool-month-grid > a:nth-child(11) { --month-tint: #e0e7ff; --month-color: #4338ca; }  /* Nov indigo */
.tc-cool-month-grid > a:nth-child(12) { --month-tint: #dbeafe; --month-color: #1e40af; }  /* Dec deep blue */

.tc-cool-month-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 32px -10px rgba(2, 132, 199, 0.30) !important;
  border-color: var(--month-color, var(--sky-500)) !important;
}
.tc-cool-month-num {
  font-size: 32px !important;
  font-weight: 900 !important;
  color: var(--month-color, var(--sky-500)) !important;
  letter-spacing: -0.03em;
  line-height: 1;
}
.tc-cool-month-name {
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
}
.tc-cool-month-bench {
  font-size: 11px !important;
  color: var(--ink-500) !important;
  font-weight: 600;
  margin-top: 2px;
}
.tc-cool-month-tag {
  font-size: 9px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  background: linear-gradient(135deg, #dc2626, #ea580c) !important;
  color: white !important;
  padding: 3px 10px !important;
  border-radius: 999px !important;
  margin-top: 4px;
  box-shadow: 0 2px 6px -2px rgba(220, 38, 38, 0.45);
}

/* Headline h1 — extra cold gradient with a bigger reveal */
.tc-page-coolcation h1 {
  background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 30%, #06b6d4 60%, #4f46e5 100%) !important;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900 !important;
  letter-spacing: -0.025em;
}
.tc-page-coolcation h1::after {
  background: linear-gradient(90deg, #0284c7, #06b6d4, #4f46e5, #0d9488) !important;
  height: 6px !important;
  width: 100px !important;
}

/* Lead paragraph — a touch bigger and bolder on coolcation pages */
.tc-page-coolcation .tc-lead {
  font-size: 18px;
  line-height: 1.55;
}

/* Mobile polish */
@media (max-width: 540px) {
  .tc-cool-card-num { font-size: 32px !important; }
  .tc-cool-month-card { min-height: 110px !important; padding: 18px 8px 14px !important; }
  .tc-cool-month-num { font-size: 28px !important; }
  .tc-cool-hero { padding: 16px; }
  .tc-cool-hero::before { font-size: 30px; right: 6px; }
  .tc-cool-tier h2 { font-size: 19px !important; }
}

/* ================================================================== */
/* Coolcation — MISSING FOUNDATION (defines display: grid + flex)     */
/* ================================================================== */
.tc-cool-month-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
@media (min-width: 540px)  { .tc-cool-month-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } }
@media (min-width: 768px)  { .tc-cool-month-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } }
@media (min-width: 1080px) { .tc-cool-month-grid { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } }

.tc-cool-month-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  text-decoration: none !important;
  gap: 4px;
  border: 1.5px solid var(--ink-100);
  transition: transform .15s, box-shadow .18s, border-color .15s;
}
.tc-cool-month-card .tc-cool-month-num,
.tc-cool-month-card .tc-cool-month-name,
.tc-cool-month-card .tc-cool-month-bench,
.tc-cool-month-card .tc-cool-month-tag {
  display: block;
}
.tc-cool-month-card .tc-cool-month-tag {
  display: inline-block !important;
  align-self: center !important;
  width: auto !important;
  max-width: max-content !important;
}

/* Destination cards grid + cards */
.tc-cool-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px;
}
@media (min-width: 540px) { .tc-cool-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } }
@media (min-width: 880px) { .tc-cool-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } }

.tc-cool-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px;
  text-decoration: none !important;
  border: 1px solid var(--ink-100);
  border-top: 5px solid var(--ink-300);
  border-radius: 14px;
}
.tc-cool-card-head {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
}
.tc-cool-card-temps {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.tc-cool-card-temp-main {
  display: flex !important;
  align-items: baseline !important;
  gap: 5px;
}

/* Hot benchmark pills row */
.tc-cool-hero-pills {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px;
}
.tc-cool-hot-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px;
}

/* Temperature unit toggle button in nav */
.tc-nav-unit {
  display: inline-flex !important;
  align-items: center !important;
  padding: 6px 10px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  background: var(--amber-50) !important;
  color: #b45309 !important;
  border: 1.5px solid #fde68a !important;
  border-radius: 7px !important;
  cursor: pointer !important;
  font-family: inherit;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: all .12s;
}
.tc-nav-unit:hover {
  background: #fef3c7 !important;
  border-color: var(--amber-500) !important;
  transform: translateY(-1px);
}
.tc-nav-unit[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--amber-500), #ea580c) !important;
  color: white !important;
  border-color: transparent !important;
}

/* Newsletter form: honeypot (must be hidden but not display:none — bots ignore display:none) */
.tc-newsletter-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}
.tc-newsletter-msg {
  font-size: 13px;
  margin: 8px 0 0;
  min-height: 1.2em;
  font-weight: 500;
}
