*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --tm-box-border: #d7e2ee;
  --tm-box-radius: 12px;
  --tm-box-radius-lg: 14px;
  --tm-box-radius-xl: 18px;
}

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(180deg, #f6fbff 0%, #fbfeff 38%, #fdffff 100%);
  color: #0f172a;
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

body::before {
  left: 0;
  right: 0;
  top: 0;
  height: 420px;
  background:
    radial-gradient(circle at 16% -10%, rgba(56, 189, 248, 0.12), transparent 32%),
    radial-gradient(circle at 84% 4%, rgba(34, 211, 238, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(186, 230, 253, 0.34) 0%, rgba(186, 230, 253, 0.18) 28%, rgba(186, 230, 253, 0.07) 58%, transparent 100%);
  filter: blur(20px);
}

body::after {
  top: -70px;
  right: -110px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at center, rgba(103, 232, 249, 0.1), transparent 74%);
  filter: blur(22px);
}

.tm-header,
.tm-mobile-nav,
.tm-container,
.tm-footer {
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.tm-header {
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid var(--tm-box-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(15,23,42,0.06);
}

.tm-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tm-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tm-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tm-search-country {
  min-height: 42px;
  padding: 11px 32px 11px 14px;
  border: 1px solid var(--tm-box-border);
  border-radius: 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(248,250,252,0.97) 100%);
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
  cursor: pointer;
  max-width: 160px;
}

.tm-search-country:focus {
  border-color: #7dd3fc;
  box-shadow: 0 0 0 4px rgba(56,189,248,0.12), 0 12px 28px rgba(15,23,42,0.06);
}

.tm-header-search {
  position: relative;
  width: min(420px, 42vw);
}

.tm-header-search input {
  width: 100%;
  min-height: 42px;
  padding: 11px 16px 11px 44px;
  border: 1px solid var(--tm-box-border);
  border-radius: 14px;
  font-size: 14px;
  outline: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(248,250,252,0.97) 100%);
  color: #0f172a;
  font-family: inherit;
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
}

.tm-header-search input:focus {
  border-color: #7dd3fc;
  box-shadow: 0 0 0 4px rgba(56,189,248,0.12), 0 12px 28px rgba(15,23,42,0.06);
}

.tm-header-search input:disabled {
  background: rgba(241,245,249,0.9);
  color: #94a3b8;
  cursor: not-allowed;
}

.tm-header-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(15,23,42,0.14);
  z-index: 260;
  max-height: 320px;
  overflow-y: auto;
}

.tm-header-suggestion-item {
  display: block;
  padding: 10px 16px;
  color: #0f172a;
  border-bottom: 1px solid #e2e8f0;
  text-decoration: none;
}

.tm-header-suggestion-item:hover {
  background: #eff6ff;
}

.tm-header-suggestion-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.tm-header-suggestion-meta {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.3;
}

.tm-header-suggestion-empty {
  padding: 11px 16px;
  color: #64748b;
  font-size: 14px;
}

.tm-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 10px;
}

.tm-logo-wave { font-size: 22px; line-height: 1; }

.tm-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #075985;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.tm-locale-dropdown {
  position: relative;
}

.tm-locale-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 56px;
  padding: 8px 12px;
  border: 1px solid var(--tm-box-border);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.96) 100%);
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
  color: #075985;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s;
}

.tm-locale-toggle:hover {
  border-color: #bfdbfe;
}

.tm-locale-caret {
  transition: transform 0.15s;
}

.tm-locale-dropdown.open .tm-locale-caret {
  transform: rotate(180deg);
}

.tm-locale-dropdown .tm-locale-switch {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
  padding: 8px;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(15,23,42,0.14);
  z-index: 260;
}

.tm-locale-dropdown.open .tm-locale-switch {
  display: flex;
}

.tm-locale-dropdown .tm-locale-link {
  justify-content: flex-start;
  width: 100%;
  border-radius: 8px;
}

.tm-mobile-locale-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tm-locale-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 8px 10px;
  border: 1px solid var(--tm-box-border);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.96) 100%);
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.tm-locale-link:hover {
  color: #075985;
  border-color: #bfdbfe;
}

.tm-locale-link.active {
  color: #075985;
  border-color: #93c5fd;
  background: linear-gradient(180deg, #eff6ff 0%, #f8fbff 100%);
}

.tm-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.tm-nav-item {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: #475569;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.tm-nav-item:hover { color: #075985; }
.tm-nav-item.active { color: #075985; font-weight: 600; border-bottom-color: #0ea5e9; }
.tm-nav-item-admin { color: #075985; font-weight: 600; }

.tm-burger {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 11px;
  font-size: 17px;
  cursor: pointer;
  color: #475569;
  align-self: center;
  margin-bottom: 10px;
}

/* Mobile nav */
.tm-mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--tm-box-border);
  padding: 8px 16px 12px;
}

.tm-mobile-locale-switch {
  padding: 6px 0 10px;
  margin-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}

.tm-mobile-nav .tm-nav-item {
  padding: 10px 12px;
  border-bottom: none;
  border-radius: 10px;
}
.tm-mobile-nav .tm-nav-item:hover { background: #f1f5f9; }
.tm-mobile-nav.open { display: flex; }

/* ── CONTAINER ── */
.tm-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 60px;
}

main.tm-container {
  flex: 1 0 auto;
}

/* ── BREADCRUMB ── */
.tm-breadcrumb {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}
.tm-breadcrumb a { color: #0369a1; }
.tm-breadcrumb a:hover { text-decoration: underline; }

.tm-section-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin: 6px 0 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dbe7f3;
  overflow-x: auto;
}

.tm-section-tab {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  color: #475569;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.tm-section-tab.active {
  color: #075985;
  background: rgba(239, 246, 255, 0.95);
  box-shadow: inset 0 -3px 0 #0ea5e9;
}

/* ── TYPOGRAPHY ── */
h1 {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}

.tm-section { margin-bottom: 36px; }

.tm-article + .tm-section {
  margin-top: 44px;
}

.tm-subtitle {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.tm-flag-emoji {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.tm-section-country-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #dfe9f3;
}

.tm-section-city-card {
  min-height: 156px;
  justify-content: center;
}

.tm-section-city-card .tm-city-name {
  font-size: 16px;
}

/* ── WIDGET ── */
.tm-widget {
  border: 1px solid var(--tm-box-border);
  border-radius: var(--tm-box-radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(243,250,255,0.97) 74%, rgba(245,252,249,0.95) 100%);
  box-shadow: 0 18px 44px rgba(14,116,144,0.09);
}

.tm-widget-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e7eef6;
}

.tm-sea {
  padding: 22px 26px 20px;
  border-right: 1px solid #e7eef6;
  background: linear-gradient(180deg, rgba(239,246,255,0.78) 0%, rgba(255,255,255,0.32) 100%);
}

.tm-air {
  padding: 22px 26px 20px;
  background: linear-gradient(180deg, rgba(248,250,252,0.82) 0%, rgba(255,255,255,0.4) 100%);
}

.tm-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  margin-bottom: 8px;
}

.tm-sea-temp { font-size: 58px; font-weight: 700; line-height: 0.95; color: #0284c7; }
.tm-sea-temp .tm-unit { font-size: 23px; font-weight: 600; color: #0369a1; }
.tm-air-temp { font-size: 46px; font-weight: 700; line-height: 0.95; color: #0f172a; }
.tm-air-temp .tm-unit { font-size: 21px; font-weight: 600; color: #475569; }
.tm-sub { font-size: 15px; color: #475569; margin-top: 8px; }
.tm-desc { font-size: 17px; font-weight: 600; color: #334155; margin-top: 8px; }

/* Stats grid */
.tm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #e7eef6;
}
.tm-grid:last-of-type { border-bottom: none; }

/* Morski grid – modrikast odtenek */
.tm-grid-sea { background: linear-gradient(180deg, #f0f7ff 0%, #f8fbff 100%); }

/* Vremenski grid – rahlo toplejši odtenek */
.tm-grid-weather { background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); }

/* ── DVA LOČENA BLOKA (morje + vreme) ── */
.tm-stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.tm-stat-card-block {
  border: 1px solid var(--tm-box-border);
  border-radius: var(--tm-box-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15,23,42,0.06);
}

.tm-stat-card-sea {
  background: linear-gradient(180deg, #f4fcff 0%, #f2fbf8 100%);
  border-color: #c9e8ec;
}

.tm-stat-card-weather {
  background: linear-gradient(180deg, #fffaf0 0%, #fffef6 100%);
  border-color: #eadfb5;
}

.tm-stat-card-header {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.46) 100%);
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tm-stat-card-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tm-stat-card-sea .tm-stat-card-title {
  color: #0369a1;
}

.tm-card-title-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.tm-stat-card-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.tm-stat-card-headcopy {
  flex: 1 1 auto;
  min-width: 0;
}

.tm-stat-card-temp {
  font-size: 54px;
  font-weight: 700;
  line-height: 0.95;
  color: #0284c7;
  margin-bottom: 8px;
}

.tm-stat-card-temp-air {
  color: #0f172a;
}

.tm-stat-card-unit {
  font-size: 21px;
  font-weight: 600;
  color: #475569;
}

.tm-stat-card-sea .tm-stat-card-unit {
  color: #0369a1;
}

.tm-stat-card-sub {
  font-size: 15px;
  color: #64748b;
}

.tm-stat-card-hero {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(255,255,255,0.72);
  box-shadow: inset 0 0 0 1px rgba(148,163,184,0.18);
}

.tm-stat-card-hero-sea {
  color: #0284c7;
}

.tm-stat-card-hero-weather {
  color: #f59e0b;
}

.tm-stat-card-hero-weather-moon {
  color: #6366f1;
}

.tm-stat-card-hero-weather-rain,
.tm-stat-card-hero-weather-storm,
.tm-stat-card-hero-weather-fog {
  color: #64748b;
}

.tm-stat-card-hero-weather-snow {
  color: #38bdf8;
}

.tm-stat-card-hero-svg {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

.tm-stat-card-footer {
  padding: 10px 18px;
  background: rgba(255,255,255,0.5);
  font-size: 13px;
  color: #475569;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.tm-col-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px 10px;
  gap: 0;
}

.tm-col-stats .tm-stat {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  border-right: none;
  position: relative;
}

/* Vertikalna crta med stolpcema – krajša, ne do roba */
.tm-col-stats .tm-stat:nth-child(odd)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: rgba(0,0,0,0.07);
}

/* Zadnja vrstica (zadnja 2 celici) nima spodnje črte */
.tm-col-stats .tm-stat:nth-last-child(-n+2) { border-bottom: none; }

@media (max-width: 640px) {
  .tm-stat-cards { grid-template-columns: 1fr; }
}

.tm-stat {
  padding: 18px 20px 17px;
  border-right: 1px solid #e7eef6;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tm-stat:last-child { border-right: none; }

.tm-stat-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tm-stat-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  opacity: 0.9;
}
.tm-stat-value { font-size: 19px; font-weight: 700; color: #0f172a; }
.tm-stat-sub { font-size: 13px; color: #64748b; }

.tm-widget-footer {
  padding: 12px 20px;
  background: rgba(241,245,249,0.78);
  font-size: 13px;
  color: #475569;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e7eef6;
}
.tm-live { color: #22c55e; font-weight: 600; }

/* ── NAPOVED 7 DNI ── */
.tm-forecast {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.tm-fc-day {
  border: 1px solid var(--tm-box-border);
  border-radius: var(--tm-box-radius);
  padding: 14px 10px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.96) 100%);
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
}
.tm-fc-today {
  border-color: #38bdf8;
  background: linear-gradient(180deg, #eff6ff 0%, #f8fbff 100%);
  box-shadow: 0 14px 30px rgba(14,165,233,0.10);
}

.tm-fc-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}
.tm-fc-today .tm-fc-name { color: #0369a1; }
.tm-fc-wave { font-size: 19px; font-weight: 700; color: #0f172a; }
.tm-fc-date { font-size: 12px; color: #64748b; }
.tm-fc-meta { font-size: 12px; color: #475569; display: flex; flex-direction: column; gap: 3px; }
.tm-fc-day-rich {
  text-align: left;
  align-items: stretch;
  gap: 10px;
  min-height: 232px;
}
.tm-fc-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.tm-fc-head-main {
  min-width: 0;
  width: 100%;
}
.tm-fc-icon {
  width: 26px;
  height: 26px;
  color: #f59e0b;
  flex: 0 0 auto;
}
.tm-fc-icon-svg {
  width: 26px;
  height: 26px;
}
.tm-fc-values {
  display: grid;
  gap: 10px;
}
.tm-fc-value-block {
  border-top: 1px solid #e2e8f0;
  padding-top: 10px;
}
.tm-fc-value-block:first-child {
  border-top: 0;
  padding-top: 0;
}
.tm-fc-value-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 5px;
}
.tm-fc-value-main {
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
}
.tm-fc-unit {
  font-size: 13px;
  font-weight: 700;
  vertical-align: super;
  margin-left: 2px;
}
.tm-fc-value-sub {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}
.tm-fc-weather-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #475569;
  min-width: 0;
}
.tm-fc-weather-line span:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tm-fc-weather-icon {
  width: 14px;
  height: 14px;
  color: #f59e0b;
  flex: 0 0 auto;
}
.tm-fc-meta-rich {
  border-top: 1px solid #e2e8f0;
  padding-top: 10px;
  display: grid;
  gap: 6px;
}
.tm-fc-meta-rich span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  align-items: center;
}
.tm-fc-meta-rich span > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tm-fc-meta-icon {
  width: 13px;
  height: 13px;
  color: #64748b;
  flex: 0 0 auto;
}
.tm-fc-meta-rich strong {
  color: #0f172a;
  font-weight: 700;
}

/* ── MESEČNA TABELA ── */
.tm-month-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.tm-month-table th {
  padding: 8px 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}
.tm-month-table td { padding: 10px 4px; text-align: center; font-weight: 500; color: #334155; }
.tm-month-table .tm-row-label {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}
.tc { display: inline-block; padding: 3px 6px; border-radius: 6px; font-size: 13px; font-weight: 600; }
.tc-1 { background: #ede9fe; color: #7c3aed; }
.tc-2 { background: #dbeafe; color: #1d4ed8; }
.tc-3 { background: #e0f2fe; color: #0369a1; }
.tc-4 { background: #ccfbf1; color: #0f766e; }
.tc-5 { background: #dcfce7; color: #15803d; }
.tc-6 { background: #fef9c3; color: #a16207; }
.tc-7 { background: #ffedd5; color: #c2410c; }
.tc-8 { background: #fee2e2; color: #b91c1c; }

/* ── QUICK FACTS ── */
.tm-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.tm-fact {
  border: 1px solid var(--tm-box-border);
  border-radius: var(--tm-box-radius);
  padding: 16px 18px;
  background: #fff;
}

.tm-fact-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 4px;
}

.tm-fact-value {
  font-size: 21px;
  font-weight: 700;
  color: #0284c7;
}

.tm-fact-sub {
  font-size: 13px;
  color: #64748b;
  margin-top: 3px;
}

/* ── SEO TEKST ── */
.tm-seo {
  border: 1px solid var(--tm-box-border);
  border-radius: var(--tm-box-radius);
  padding: 24px 28px;
  background: #f8fafc;
  line-height: 1.85;
  color: #475569;
  font-size: 16px;
}
.tm-seo p { margin-bottom: 14px; }
.tm-seo p:last-child { margin-bottom: 0; }
.tm-seo strong { color: #1e293b; }

.tm-radar-panel {
  margin-top: 24px;
  max-width: 860px;
  border: 1px solid var(--tm-box-border);
  border-radius: var(--tm-box-radius);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(243,250,255,.96));
  box-shadow: var(--tm-box-shadow);
  overflow: hidden;
}

.tm-radar-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(148,163,184,.22);
}

.tm-radar-head h2 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.2;
  color: #0f172a;
}

.tm-radar-head p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}

.tm-radar-intro {
  max-width: 680px;
  margin-bottom: 10px !important;
}

.tm-radar-source {
  flex: none;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(37,99,235,.18);
  border-radius: 999px;
  background: rgba(239,246,255,.9);
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.tm-radar-body {
  padding: 18px;
}

.tm-radar-country-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tm-radar-country-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--tm-box-border);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(243,250,255,0.98) 100%);
  box-shadow: 0 8px 18px rgba(14,116,144,0.06);
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.3;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s, background 0.15s;
}

.tm-radar-country-card:hover {
  border-color: #7dd3fc;
  background: linear-gradient(180deg, #ffffff 0%, #f1fbff 100%);
  box-shadow: 0 12px 24px rgba(14,165,233,0.12);
  transform: translateY(-1px);
}

.tm-radar-country-card.is-active {
  border-color: rgba(14,116,144,.35);
  background: #0f766e;
  color: #fff;
}

.tm-radar-country-card-icon {
  width: 18px;
  height: 18px;
  flex: none;
  color: #0ea5e9;
}

.tm-radar-country-card.is-active .tm-radar-country-card-icon {
  color: #fff;
}

.tm-radar-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 18px 0;
}

.tm-radar-tab {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(37,99,235,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #334155;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.tm-radar-tab.is-active {
  border-color: rgba(14,116,144,.32);
  background: #0f766e;
  color: #fff;
}

.tm-radar-frame {
  margin: 0;
  padding: 18px;
}

.tm-radar-frame img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(148,163,184,.24);
  border-radius: 8px;
  background: #fff;
}

.tm-radar-frame figcaption {
  margin-top: 10px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.tm-radar-frame figcaption strong {
  display: block;
  margin-bottom: 2px;
  color: #0f172a;
}

.tm-radar-note {
  margin: 0 18px 18px;
  padding: 14px 16px;
  border: 1px solid rgba(251,191,36,.38);
  border-radius: 8px;
  background: rgba(254,249,195,.42);
  color: #713f12;
  font-size: 14px;
  line-height: 1.55;
}

/* ── BLIŽNJA MESTA ── */
.tm-nearby { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }

.tm-nearby-card {
  border: 1px solid var(--tm-box-border);
  border-radius: var(--tm-box-radius);
  padding: 14px 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: border-color 0.15s;
}
.tm-nearby-card:hover { border-color: #0284c7; background: #f0f9ff; }
.tm-nearby-name { font-size: 15px; font-weight: 600; color: #1e293b; }
.tm-nearby-country { font-size: 12px; color: #64748b; font-weight: 500; }
.tm-nearby-temp { font-size: 21px; font-weight: 700; color: #0284c7; margin-top: 4px; }
.tm-nearby-wave { font-size: 12px; color: #64748b; }

.tm-related-card {
  min-height: 0;
  justify-content: flex-start;
}

.tm-related-card-compact {
  min-height: 0;
}

/* ── HOMEPAGE ── */
.tm-hero {
  padding: 22px 24px 24px;
  margin-bottom: 8px;
  border: 1px solid var(--tm-box-border);
  border-radius: var(--tm-box-radius-xl);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.06), transparent 36%),
    radial-gradient(circle at bottom right, rgba(251, 191, 36, 0.07), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(245,251,255,0.95) 54%, rgba(250,248,242,0.92) 100%);
  box-shadow: 0 20px 52px rgba(14,116,144,0.08);
}

.tm-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin-bottom: 14px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.95);
  color: #075985;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tm-hero-meta {
  color: #334155;
  font-size: 15px;
  font-weight: 500;
  margin-top: -8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.tm-hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tm-home-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.tm-home-icon-sm {
  width: 15px;
  height: 15px;
  color: #0284c7;
}

.tm-home-icon-title {
  width: 17px;
  height: 17px;
  color: #0284c7;
}

.tm-home-icon-search {
  width: 18px;
  height: 18px;
  color: #64748b;
}

.tm-home-icon-inline {
  width: 14px;
  height: 14px;
  color: #64748b;
}

.tm-search { max-width: 420px; margin-bottom: 36px; }
.tm-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.tm-search input {
  width: 100%;
  padding: 13px 16px 13px 46px;
  border: 1px solid var(--tm-box-border);
  border-radius: var(--tm-box-radius);
  font-size: 15px;
  outline: none;
  background: rgba(255,255,255,0.95);
  color: #0f172a;
  font-family: inherit;
  box-shadow: 0 12px 28px rgba(14,116,144,0.08);
}
.tm-search input::placeholder { color: #64748b; }
.tm-search input:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56,189,248,0.14), 0 14px 32px rgba(15,23,42,0.08);
}

.tm-search-hint {
  margin-top: 8px;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
}

.tm-home-hero {
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.tm-home-hero::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -50px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(125, 211, 252, 0.28), transparent 68%);
  pointer-events: none;
}

.tm-home-subtitle,
.tm-landing-subtitle {
  max-width: 760px;
  margin-bottom: 12px;
}

.tm-home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.tm-home-hero-main {
  position: relative;
  z-index: 1;
}

.tm-home-hero-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.tm-home-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(186, 230, 253, 0.8);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(240,249,255,0.88) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.tm-home-hero-stat strong {
  font-size: 34px;
  line-height: 1;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.tm-home-hero-stat span {
  color: #475569;
  font-size: 13px;
}

.tm-home-hero-stat-label {
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0369a1 !important;
}

.tm-home-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tm-home-quicklink {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.28);
  background: rgba(255,255,255,0.96);
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(14,116,144,0.08);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.tm-home-quicklink:hover {
  transform: translateY(-1px);
  border-color: rgba(56,189,248,0.35);
  background: #f8fbff;
  box-shadow: 0 14px 28px rgba(14,116,144,0.12);
}

.tm-home-quicklink-sea {
  background: rgba(239, 246, 255, 0.98);
  color: #0c4a6e;
}

.tm-home-quicklink-city {
  background: rgba(255, 248, 235, 0.98);
  color: #9a3412;
}

.tm-home-quicklink-peak {
  background: rgba(240, 253, 244, 0.98);
  color: #166534;
}

.tm-home-quicklink-radar {
  background: rgba(254, 249, 195, 0.92);
  color: #854d0e;
}

.tm-home-sections {
  display: grid;
  gap: 18px;
  margin: 10px 0 34px;
}

.tm-home-feature {
  padding: 28px;
  border: 1px solid var(--tm-box-border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(247,251,255,0.97) 100%);
  box-shadow: 0 18px 42px rgba(14,116,144,0.08);
  position: relative;
  overflow: hidden;
}

.tm-home-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 999px;
  background: #93c5fd;
}

.tm-home-feature-city::before {
  background: linear-gradient(180deg, #93c5fd 0%, #60a5fa 100%);
}

.tm-home-feature-peak::before {
  background: linear-gradient(180deg, #86efac 0%, #34d399 100%);
}

.tm-home-feature-sea::before {
  background: linear-gradient(180deg, #7dd3fc 0%, #38bdf8 100%);
}

.tm-home-feature-head {
  padding-left: 6px;
  margin-bottom: 18px;
}

.tm-home-feature-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tm-home-feature-head h2 {
  border: none;
  padding: 0;
  margin: 0 0 10px;
  font-size: 24px;
}

.tm-home-feature-head p {
  max-width: 820px;
  color: #475569;
  font-size: 15px;
}

.tm-home-feature-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  margin-bottom: 16px;
}

.tm-home-feature-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid #dbe7f2;
  border-radius: 14px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.tm-home-feature-link:hover {
  transform: translateY(-1px);
  border-color: #bfdbfe;
  box-shadow: 0 14px 28px rgba(14,116,144,0.08);
}

.tm-home-feature-link-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #3b82f6;
}

.tm-home-feature-icon-svg {
  width: 18px;
  height: 18px;
}

.tm-home-feature-link-text {
  min-width: 0;
  flex: 1 1 auto;
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
}

.tm-home-feature-link-arrow {
  flex: 0 0 auto;
  color: #94a3b8;
  font-size: 18px;
  line-height: 1;
}

.tm-home-feature-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.16);
}

.tm-home-feature-cta-city {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.tm-home-feature-cta-peak {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.tm-home-feature-cta-sea {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

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

.tm-home-utility-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--tm-box-border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.97) 100%);
  box-shadow: 0 12px 28px rgba(15,23,42,0.05);
}

.tm-home-utility-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(224, 242, 254, 0.95);
  color: #0284c7;
  flex: 0 0 auto;
}

.tm-home-utility-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.tm-home-utility-card p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}

/* ── Europe-first homepage additions (2026-07-14, glej AGENTS.md) ── */

.tm-home-hero-compact {
  padding-bottom: 4px;
}

.tm-home-hero-compact .tm-home-hero-main h1 {
  margin-bottom: 8px;
}

.tm-home-utility-card {
  position: relative;
}

.tm-home-utility-card-body {
  flex: 1 1 auto;
  min-width: 0;
}

.tm-home-utility-arrow {
  align-self: center;
  flex: 0 0 auto;
}

/* Kompaktnejsi location grid - 4 stolpci na desktopu namesto velikih
   2-column vrstic, da lahko homepage nosi ~20/12-16/16 curated linkov brez
   pretirane visine (glej task tocka 6/10). */
.tm-home-feature-links-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 12px;
}

.tm-home-feature-link-compact {
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 12px;
  gap: 8px;
}

.tm-home-feature-link-compact .tm-home-feature-link-icon {
  width: 22px;
  height: 22px;
}

.tm-home-feature-link-compact .tm-home-feature-icon-svg {
  width: 15px;
  height: 15px;
}

.tm-home-feature-link-compact .tm-home-feature-link-text {
  font-size: 13.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tm-home-feature-link-compact .tm-home-feature-link-arrow {
  font-size: 15px;
}

/* Section card padding nekoliko manjsi, ker nosi vec vsebine (task tocka 10). */
.tm-home-feature {
  padding: 22px 24px;
}

.tm-home-feature-head {
  margin-bottom: 14px;
}

.tm-home-news {
  margin-top: 4px;
  padding: 22px 24px;
  border: 1px solid var(--tm-box-border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(247,251,255,0.97) 100%);
  box-shadow: 0 18px 42px rgba(14,116,144,0.08);
}

.tm-home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.tm-home-news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dbe7f2;
  border-radius: 14px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.tm-home-news-card:hover {
  transform: translateY(-1px);
  border-color: #bfdbfe;
  box-shadow: 0 14px 28px rgba(14,116,144,0.08);
}

.tm-home-news-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
}

.tm-home-news-date {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tm-home-news-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.tm-home-news-card p {
  margin: 0;
  color: #475569;
  font-size: 13.5px;
  line-height: 1.5;
}

.tm-home-feature-cta-news {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.tm-home-panel {
  margin: 8px 0 34px;
  padding: 24px;
  border: 1px solid var(--tm-box-border);
  border-radius: var(--tm-box-radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,251,255,0.96) 100%);
  box-shadow: 0 20px 46px rgba(14,116,144,0.08);
}

.tm-home-panel-head {
  margin-bottom: 18px;
}

.tm-home-panel-head h2 {
  border: none;
  padding: 0;
  margin: 4px 0 6px;
  font-size: 24px;
}

.tm-home-panel-head p {
  color: #475569;
  max-width: 760px;
}

.tm-home-panel-kicker {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #eff6ff 0%, #fff7ed 100%);
  color: #075985;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tm-home-primary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

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

.tm-home-hub-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 34px;
}

.tm-home-hub-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--tm-box-border);
  border-radius: var(--tm-box-radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(241,249,255,0.96) 100%);
  box-shadow: 0 16px 36px rgba(14,116,144,0.08);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  position: relative;
  overflow: hidden;
}

.tm-home-hub-card:hover {
  transform: translateY(-4px);
  border-color: #7dd3fc;
  box-shadow: 0 24px 48px rgba(14,165,233,0.14);
}

.tm-home-hub-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #38bdf8 0%, #f59e0b 42%, #22c55e 100%);
  opacity: 0.9;
}

.tm-home-hub-card-primary {
  min-height: 238px;
  background:
    radial-gradient(circle at top right, rgba(125, 211, 252, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(241,249,255,0.96) 100%);
}

.tm-home-hub-card-secondary {
  min-height: 200px;
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(249,250,251,0.97) 100%);
}

.tm-home-hub-card h2 {
  border: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
}

.tm-home-hub-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}

.tm-home-hub-topline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.tm-home-hub-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(224, 242, 254, 0.9);
  color: #0284c7;
}

.tm-home-hub-icon-svg {
  width: 22px;
  height: 22px;
}

.tm-home-hub-card-sm {
  min-height: 220px;
}

.tm-landing-hero {
  padding: 8px 0 12px;
}

.tm-landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin-bottom: 14px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.95);
  color: #075985;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tm-region-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #475569;
  margin-bottom: 14px;
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tm-region-title a { color: #64748b; }
.tm-region-title a:hover { color: #0284c7; }

.tm-cities-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }

.tm-city-card {
  border: 1px solid var(--tm-box-border);
  border-radius: var(--tm-box-radius);
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(243,250,255,0.98) 76%, rgba(244,252,249,0.95) 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 14px 30px rgba(14,116,144,0.07);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s, background 0.15s;
  position: relative;
  overflow: hidden;
}
.tm-city-card:hover {
  border-color: #7dd3fc;
  background: linear-gradient(180deg, #ffffff 0%, #f1fbff 74%, #f2fcf8 100%);
  box-shadow: 0 20px 42px rgba(14,165,233,0.12), 0 10px 24px rgba(250,204,21,0.08);
  transform: translateY(-2px);
}
.tm-city-name { font-size: 15px; font-weight: 700; color: #0f172a; }
.tm-city-country {
  font-size: 12px;
  color: #475569;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.tm-city-temp {
  font-size: 24px;
  font-weight: 700;
  color: #0284c7;
  margin-top: 5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.tm-city-temp-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  opacity: 0.9;
}
.tm-city-wave {
  font-size: 12px;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ── COUNTRY HUB seed kartice (mesta/hribi) - kompaktni stil poenoten s
   homepage tm-home-feature-link-compact (2026-07-15, glej AGENTS.md) ── */
.tm-country-seed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 12px;
}

.tm-country-seed-card {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #dbe7f2;
  border-radius: 12px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.tm-country-seed-card:hover {
  transform: translateY(-1px);
  border-color: #bfdbfe;
  box-shadow: 0 14px 28px rgba(14,116,144,0.08);
}

.tm-country-seed-text {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.tm-country-seed-name {
  color: #0f172a;
  font-size: 13.5px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tm-country-seed-region {
  color: #64748b;
  font-size: 11.5px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tm-country-seed-arrow {
  flex: 0 0 auto;
  color: #94a3b8;
  font-size: 15px;
  line-height: 1;
}

.tm-country-seed-subhead {
  margin: 18px 0 10px;
  padding: 0;
  border: none;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.tm-country-seed-subhead:first-of-type {
  margin-top: 2px;
}

/* ── FOOTER ── */
.tm-footer {
  border-top: 1px solid #e2e8f0;
  background: #fff;
  margin-top: auto;
}
.tm-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #475569;
}

.tm-footer-link {
  color: #334155;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.tm-footer-link:hover {
  color: #075985;
  text-decoration-thickness: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .tm-cities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 641px) {
  .tm-flag-emoji { display: none; }
  .tm-home-desktop-hide { display: none; }
}

@media (max-width: 640px) {
  .tm-header-inner {
    position: relative;
    padding: 14px 16px 0;
  }
  .tm-header-top {
    align-items: center;
    flex-wrap: wrap;
    padding-right: 72px;
    gap: 12px;
  }
  .tm-header-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }
  .tm-logo {
    padding-bottom: 0;
  }
  .tm-search-country {
    order: 1;
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }
  .tm-locale-dropdown {
    order: 2;
    flex: 0 0 auto;
  }
  .tm-header-search {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    margin-top: 4px;
    margin-bottom: 10px;
  }
  .tm-nav { display: none; }
  .tm-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 14px;
    right: 16px;
    margin: 0;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    font-size: 28px;
    line-height: 0.72;
    color: #475569;
    align-self: auto;
    margin-bottom: 0;
  }
  .tm-burger:hover,
  .tm-burger:active {
    background: rgba(239, 246, 255, 0.9);
    color: #075985;
  }
  .tm-cities-grid { grid-template-columns: repeat(2, 1fr); }
  .tm-search { margin-bottom: 22px; }
  .tm-region-title {
    margin-top: 20px;
    margin-bottom: 12px;
  }
  .tm-nearby { grid-template-columns: repeat(2, 1fr); }
  .tm-widget-top { grid-template-columns: 1fr; }
  .tm-sea { border-right: none; border-bottom: 1px solid #f1f5f9; }
  .tm-grid { grid-template-columns: repeat(2, 1fr); }
  .tm-sea-temp { font-size: 50px; }
  .tm-air-temp { font-size: 40px; }
  .tm-forecast { grid-template-columns: 1fr; overflow-x: visible; }
  .tm-fc-day-rich { min-height: 0; }
  .tm-fc-day {
    padding: 12px 12px 11px;
    gap: 8px;
  }
  .tm-fc-day-rich {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(110px, 0.95fr);
    gap: 8px 12px;
    align-items: start;
  }
  .tm-fc-head {
    gap: 6px;
    grid-column: 1 / -1;
  }
  .tm-fc-name {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
  }
  .tm-fc-weather-line,
  .tm-fc-date,
  .tm-fc-value-sub,
  .tm-fc-meta-rich span {
    font-size: 12px;
  }
  .tm-fc-values {
    display: contents;
  }
  .tm-fc-value-block {
    border-top: 0;
    padding-top: 0;
  }
  .tm-fc-value-block:first-child {
    grid-column: 1;
  }
  .tm-fc-value-block:last-child {
    grid-column: 2;
  }
  .tm-fc-value-main {
    font-size: 22px;
    font-weight: 700;
  }
  .tm-fc-unit {
    font-size: 11px;
  }
  .tm-fc-value-label {
    font-size: 10px;
    margin-bottom: 4px;
  }
  .tm-fc-meta-rich {
    display: grid;
    grid-column: 3;
    grid-row: 2;
    gap: 6px;
    padding-top: 8px;
    border-top: 0;
  }
  .tm-fc-meta-rich span {
    width: auto;
    justify-content: space-between;
    font-size: 11px;
  }
  .tm-fc-meta-icon {
    width: 12px;
    height: 12px;
  }
  .tm-facts { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 24px; }
  .tm-footer-inner { flex-direction: column; gap: 4px; }
}

/* -- NEWS -- */
.tm-news-hero {
  padding: 8px 0 18px;
}

.tm-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tm-news-card {
  border: 1px solid var(--tm-box-border);
  border-radius: var(--tm-box-radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
  box-shadow: 0 14px 34px rgba(15,23,42,0.05);
}

.tm-news-card-link {
  display: block;
  height: 100%;
}

.tm-news-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dbeafe;
}

.tm-news-card-image img,
.tm-article-cover img,
.tm-admin-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tm-news-card-body {
  padding: 18px 18px 20px;
}

.tm-news-card-date,
.tm-news-mini-date {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
}

.tm-news-card h2 {
  border: none;
  padding: 0;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.tm-news-card p {
  color: #475569;
  font-size: 15px;
  line-height: 1.75;
}

.tm-news-card-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #0369a1;
}

.tm-news-empty {
  max-width: 640px;
  border: 1px solid var(--tm-box-border);
  border-radius: var(--tm-box-radius-lg);
  padding: 28px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 14px 34px rgba(15,23,42,0.04);
}

.tm-news-empty h2 {
  border: none;
  padding: 0;
  margin-bottom: 8px;
}

.tm-article {
  max-width: 840px;
}

.tm-article-shell {
  max-width: 840px;
}

.tm-article-header {
  margin-bottom: 22px;
}

.tm-article-excerpt {
  margin-top: 14px;
  font-size: 19px;
  line-height: 1.7;
  color: #334155;
  max-width: 720px;
}

.tm-article-cover {
  margin: 0 0 28px;
  border-radius: var(--tm-box-radius-xl);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(15,23,42,0.08);
  border: 1px solid #d7e2ee;
}

.tm-article-body {
  width: 100%;
  max-width: 840px;
  border: 1px solid var(--tm-box-border);
  border-radius: var(--tm-box-radius-xl);
  padding: 28px 30px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 16px 40px rgba(15,23,42,0.05);
  font-size: 17px;
  line-height: 1.8;
  color: #334155;
}

.tm-article-body > * + * {
  margin-top: 14px;
}

.tm-article-body h2,
.tm-article-body h3 {
  border: none;
  padding: 0;
  margin-bottom: 0;
  color: #0f172a;
}

.tm-article-body h2 {
  font-size: 28px;
  margin-top: 26px;
}

.tm-article-body h3 {
  font-size: 22px;
  margin-top: 22px;
}

.tm-article-body ul,
.tm-article-body ol {
  padding-left: 22px;
}

.tm-article-body a {
  color: #0369a1;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.tm-article-body blockquote {
  border-left: 3px solid #7dd3fc;
  padding-left: 16px;
  color: #475569;
  font-style: italic;
}

/* -- ARTICLE BODY: editorial blocks (H2/H3 rhythm + reusable info blocks) -- */

.tm-article-body .section-heading {
  margin-top: 40px !important;
  margin-bottom: 0;
}

.tm-article-body .section-eyebrow {
  display: block;
  margin-bottom: 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #075985;
}

.tm-article-body .section-heading h2 {
  margin-top: 0 !important;
}

.tm-article-body .subheading {
  position: relative;
  margin-top: 34px !important;
  margin-bottom: 4px;
  padding: 12px 18px 12px 22px;
  border: 1px solid var(--tm-box-border);
  border-radius: 4px var(--tm-box-radius-lg) var(--tm-box-radius-lg) 4px;
  background: linear-gradient(100deg, #e0f2fe 0%, #ecfeff 100%);
  overflow: hidden;
}

.tm-article-body .subheading::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #0284c7;
}

.tm-article-body .subheading h3 {
  margin-top: 0 !important;
  font-weight: 700;
}

.tm-article-body .glance {
  margin-top: 28px !important;
  margin-bottom: 28px;
  padding: 20px 22px;
  border: 1px solid var(--tm-box-border);
  border-radius: var(--tm-box-radius-xl);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
}

.tm-article-body .glance-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #075985;
}

.tm-article-body .glance-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0284c7;
}

.tm-article-body .glance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  margin: 0;
  padding: 0;
}

.tm-article-body .glance-item {
  display: flex;
  gap: 8px;
  padding: 9px 0 0;
  margin-top: 9px !important;
  border-top: 1px solid var(--tm-box-border);
  font-size: 15px;
}

.tm-article-body .glance-item:nth-child(1),
.tm-article-body .glance-item:nth-child(2) {
  border-top: none;
  padding-top: 0;
  margin-top: 0 !important;
}

.tm-article-body .glance-item dt {
  flex: 0 0 auto;
  font-weight: 700;
  color: #0f172a;
}

.tm-article-body .glance-item dt::after { content: ":"; }

.tm-article-body .glance-item dd {
  margin: 0;
  color: #334155;
}

.tm-article-body .note-block {
  margin-top: 28px !important;
  margin-bottom: 28px;
  padding: 16px 20px;
  border: 1px solid var(--tm-box-border);
  border-left: 3px solid #0284c7;
  border-radius: 0 var(--tm-box-radius-lg) var(--tm-box-radius-lg) 0;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
  font-size: 15px;
}

.tm-article-body .note-block strong {
  display: block;
  margin-bottom: 4px;
  color: #0f172a;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tm-article-body .note-block p {
  margin: 0 !important;
  color: #334155;
}

.tm-article-body .weather-block {
  margin-top: 28px !important;
  margin-bottom: 28px;
  border: 1px solid var(--tm-box-border);
  border-left: 3px solid #f59e0b;
  border-radius: 0 var(--tm-box-radius-xl) var(--tm-box-radius-xl) 0;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
  overflow: hidden;
}

.tm-article-body .weather-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px 14px;
}

.tm-article-body .weather-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--tm-box-border);
  font-size: 22px;
}

.tm-article-body .weather-place-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #075985;
  margin: 0 !important;
}

.tm-article-body .weather-place-name {
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  margin: 2px 0 0 !important;
}

.tm-article-body .weather-figures {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-left: auto;
  text-align: right;
}

.tm-article-body .weather-temp {
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}

.tm-article-body .weather-cond {
  font-size: 13px;
  color: #64748b;
}

.tm-article-body .weather-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--tm-box-border);
}

.tm-article-body .weather-stat {
  padding: 11px 20px;
  border-left: 1px solid var(--tm-box-border);
}

.tm-article-body .weather-stat:first-child { border-left: none; }

.tm-article-body .weather-stat small {
  display: block;
  margin-bottom: 3px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.tm-article-body .weather-stat strong {
  font-size: 15px;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}

.tm-article-body .weather-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding: 13px 20px;
  border-top: 1px solid var(--tm-box-border);
  font-size: 13.5px;
}

.tm-article-body .weather-links a {
  color: #0284c7;
  font-weight: 700;
}

.tm-article-body .related-block {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  margin-top: 28px !important;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid var(--tm-box-border);
  border-radius: var(--tm-box-radius-xl);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
  align-items: center;
}

.tm-article-body .related-thumb {
  width: 112px;
  height: 86px;
  border-radius: var(--tm-box-radius-lg);
  background:
    radial-gradient(circle at 24% 20%, rgba(56,189,248,0.55), transparent 46%),
    radial-gradient(circle at 78% 65%, rgba(2,132,199,0.5), transparent 50%),
    linear-gradient(160deg, #0ea5e9, #075985);
}

.tm-article-body .related-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #075985;
  margin: 0 0 5px !important;
}

.tm-article-body .related-block h4 {
  margin: 0 0 5px !important;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.tm-article-body .related-block p {
  margin: 0 0 8px !important;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.tm-article-body .related-link {
  font-size: 14px;
  font-weight: 700;
  color: #0284c7;
}

.tm-article-body .pull-quote {
  margin-top: 36px !important;
  margin-bottom: 8px;
  padding: 2px 0 2px 20px;
  border-left: 3px solid #0284c7;
}

.tm-article-body .pull-quote p {
  margin: 0 !important;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #0f172a;
}

@media (max-width: 600px) {
  .tm-article-body .glance-list { grid-template-columns: 1fr; }
  .tm-article-body .glance-item:nth-child(2) { border-top: 1px solid var(--tm-box-border); padding-top: 9px; margin-top: 9px !important; }
  .tm-article-body .weather-top { flex-wrap: wrap; }
  .tm-article-body .weather-figures { margin-left: 0; text-align: left; }
  .tm-article-body .weather-stats { grid-template-columns: 1fr; }
  .tm-article-body .weather-stat { border-left: none; border-top: 1px solid var(--tm-box-border); }
  .tm-article-body .weather-stat:first-child { border-top: none; }
  .tm-article-body .related-block { grid-template-columns: 1fr; }
  .tm-article-body .related-thumb { width: 100%; height: 110px; }
}

/* == SKYLAND-ARTICLE: namespaced editorial system for individual news articles ==
   Vsa pravila omejena na .skyland-article, da ne vplivajo na ostale strani/novice.
   Uporablja obstojeci Skyland sistemski sans-serif font (ne Georgia/serif),
   ker stran nikjer drugje serifa ne uporablja - dosledno z obstojecim jezikom. */

.skyland-article {
  --sky-heading: #0c4a6e;
  --sky-text: #334155;
  --sky-muted: #64748b;
  --sky-accent: #16a34a;
  --sky-accent-dark: #15803d;
  --sky-soft: #f0fdf4;
  --sky-soft-blue: #f0f9ff;
  --sky-border: var(--tm-box-border);
  --sky-card: #ffffff;

  max-width: 840px;
  color: var(--sky-text);
  line-height: 1.75;
}

.skyland-article p {
  margin: 0 0 22px;
  font-size: 17px;
}

.skyland-article p:last-child { margin-bottom: 0; }

.skyland-article a {
  color: var(--sky-heading);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.skyland-article h1,
.skyland-article h2,
.skyland-article h3 {
  color: var(--sky-heading);
  font-weight: 800;
}

.skyland-article-header { margin-bottom: 8px; }

.skyland-article-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--sky-soft);
  color: var(--sky-accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skyland-lead {
  max-width: 720px;
}

.skyland-section-heading {
  margin: 48px 0 18px;
}

.skyland-section-heading h2 {
  margin: 0;
  padding: 0;
  border: none;
  font-size: clamp(26px, 4.5vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.skyland-subheading {
  position: relative;
  margin: 28px 0 16px;
  padding: 12px 18px 12px 22px;
  overflow: hidden;
  border: 1px solid var(--sky-border);
  border-radius: 4px var(--tm-box-radius-lg) var(--tm-box-radius-lg) 4px;
  background: linear-gradient(90deg, var(--sky-soft) 0%, var(--sky-soft-blue) 100%);
}

.skyland-subheading::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--sky-accent);
  content: "";
}

.skyland-subheading h3 {
  margin: 0;
  padding: 0;
  border: none;
  font-size: clamp(19px, 3vw, 22px);
  line-height: 1.25;
}

.skyland-glance {
  position: relative;
  margin: 28px 0;
  padding: 14px 20px 14px 24px;
  overflow: hidden;
  border: 1px solid var(--sky-border);
  border-radius: 4px var(--tm-box-radius-lg) var(--tm-box-radius-lg) 4px;
  background: linear-gradient(90deg, var(--sky-soft-blue) 0%, #ffffff 100%);
  font-size: 15px;
}

.skyland-glance::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--sky-heading);
  content: "";
}

.skyland-card-inner { padding: 0; }

.skyland-block-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--sky-accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skyland-glance p {
  margin: 0;
  color: var(--sky-text);
}

.skyland-note {
  position: relative;
  margin: 28px 0;
  padding: 14px 20px 14px 24px;
  overflow: hidden;
  border: 1px solid var(--sky-border);
  border-radius: 4px var(--tm-box-radius-lg) var(--tm-box-radius-lg) 4px;
  background: linear-gradient(90deg, var(--sky-soft) 0%, #ffffff 100%);
  font-size: 15px;
}

.skyland-note::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--sky-accent);
  content: "";
}

.skyland-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--sky-heading);
}

.skyland-note p:last-child { margin-bottom: 0; }

.skyland-radar-cta {
  position: relative;
  margin: 30px 0;
  padding: 20px 22px;
  overflow: hidden;
  border: 1px solid #bae6fd;
  border-radius: var(--tm-box-radius-lg);
  background: linear-gradient(135deg, #f0f9ff 0%, #ecfeff 100%);
}

.skyland-radar-cta::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #0ea5e9;
  content: "";
}

.skyland-radar-cta strong {
  display: block;
  margin-bottom: 6px;
  color: var(--sky-heading);
  font-size: 18px;
}

.skyland-radar-cta p {
  margin: 0 0 15px;
  color: var(--sky-text);
}

.skyland-radar-cta a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  background: #0284c7;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.skyland-radar-cta a:hover {
  background: #0369a1;
  color: #fff;
}

.skyland-faq { margin-top: 40px; }

.skyland-faq details {
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--sky-border);
  border-radius: 11px;
  background: var(--sky-card);
}

.skyland-faq summary {
  cursor: pointer;
  padding: 15px 17px;
  color: var(--sky-heading);
  font-weight: 700;
  list-style: none;
}

.skyland-faq summary::-webkit-details-marker { display: none; }

.skyland-faq-answer { padding: 0 17px 17px; }

.skyland-faq-answer p:last-child { margin-bottom: 0; }

.skyland-compare-table-wrap {
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid var(--sky-border);
  border-radius: var(--tm-box-radius-lg);
  background: var(--sky-card);
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
}

.skyland-compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
}

.skyland-compare-table th,
.skyland-compare-table td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--sky-border);
}

.skyland-compare-table th {
  background: var(--sky-soft-blue);
  color: var(--sky-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.skyland-compare-table td:first-child {
  font-weight: 700;
  color: var(--sky-heading);
  white-space: nowrap;
}

.skyland-compare-table tr:last-child td { border-bottom: none; }

.skyland-compare-table a { font-weight: 700; white-space: nowrap; }

.skyland-inline-image {
  margin: 32px 0;
  overflow: hidden;
  border: 1px solid var(--sky-border);
  border-radius: var(--tm-box-radius-lg);
  background: var(--sky-card);
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
}

.skyland-inline-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.skyland-inline-image .skyland-image-caption {
  margin: 0;
  padding: 10px 15px;
  color: var(--sky-muted);
  font-size: 13px;
  line-height: 1.5;
}

.skyland-article .tm-article-cover-caption {
  margin: 0;
  padding: 10px 15px;
  color: var(--sky-muted);
  font-size: 13px;
  line-height: 1.5;
  border-top: 1px solid var(--sky-border);
  background: var(--sky-card);
}

@media (max-width: 560px) {
  .skyland-article p { font-size: 16px; }
  .skyland-section-heading { margin-top: 36px; }
  .skyland-subheading { padding: 11px 15px 11px 19px; }
}

.tm-news-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tm-article-related {
  max-width: 840px;
}

.tm-news-mini-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d6e1ec;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
}

.tm-news-mini-image {
  display: block;
  aspect-ratio: 16 / 10;
  background: #dbeafe;
}

.tm-news-mini-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tm-news-mini-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
}

.tm-news-mini-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  color: #0f172a;
}

/* -- ADMIN -- */
.tm-admin-shell {
  max-width: 980px;
}

.tm-admin-card {
  border: 1px solid #d6e1ec;
  border-radius: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
  margin-bottom: 14px;
}

.tm-admin-auth-card {
  max-width: 560px;
}

.tm-admin-kicker {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  margin-bottom: 12px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: rgba(239,246,255,0.95);
  color: #075985;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tm-admin-form,
.tm-admin-editor-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.tm-admin-grid-sidebar {
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.8fr);
  align-items: start;
}

.tm-admin-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tm-admin-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #475569;
}

.tm-admin-input,
.tm-admin-textarea,
.tm-admin-sidecard select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 11px 13px;
  background: #fff;
  color: #0f172a;
  font: inherit;
  box-shadow: 0 4px 12px rgba(15,23,42,0.025);
}

.tm-admin-textarea {
  resize: vertical;
  min-height: 96px;
}

.tm-admin-input:focus,
.tm-admin-textarea:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 4px rgba(14,165,233,0.10);
}

.tm-admin-help {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

.tm-admin-settings-icon {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.tm-admin-settings-icon-preview {
  width: 88px;
  height: 88px;
  border: 1px solid #d6e1ec;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.tm-admin-settings-icon-preview img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.tm-admin-settings-icon-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tm-admin-settings-preview {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
  font-size: 12px;
  color: #64748b;
}

.tm-admin-settings-preview strong {
  color: #0f172a;
}

.tm-admin-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.tm-admin-toolbar-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tm-admin-inline-form {
  display: inline-flex;
}

.tm-admin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #0284c7;
  border-radius: 10px;
  background: #0284c7;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s, background 0.12s;
  box-shadow: 0 8px 18px rgba(2,132,199,0.14);
}

.tm-admin-button:hover {
  background: #0369a1;
  transform: translateY(-1px);
}

.tm-admin-button-light {
  background: #fff;
  color: #075985;
  border-color: #bae6fd;
  box-shadow: none;
}

.tm-admin-alert {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}

.tm-admin-alert-success {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.tm-admin-alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.tm-admin-empty {
  padding: 10px 4px;
}

.tm-admin-empty h2,
.tm-admin-section-head h2 {
  border: none;
  padding: 0;
  margin-bottom: 6px;
}

.tm-admin-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tm-admin-post-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
}

.tm-admin-post-row h2 {
  border: none;
  padding: 0;
  margin-bottom: 6px;
}

.tm-admin-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.tm-admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tm-admin-badge-published {
  background: #dcfce7;
  color: #166534;
}

.tm-admin-badge-draft {
  background: #e2e8f0;
  color: #334155;
}

.tm-admin-post-slug {
  font-size: 12px;
  color: #64748b;
}

.tm-admin-post-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 76px;
}

.tm-admin-text-link {
  border: none;
  background: none;
  color: #0369a1;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.tm-admin-text-link-danger {
  color: #b91c1c;
}

.tm-admin-sidecard {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

.tm-admin-image-preview {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d6e1ec;
  aspect-ratio: 16 / 10;
  background: #e0f2fe;
}

.tm-admin-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #334155;
}

.tm-quill-editor {
  min-height: 340px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  background: #fff;
}

.tm-quill-editor .ql-toolbar.ql-snow {
  border: none;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.tm-quill-editor .ql-container.ql-snow {
  border: none;
  font: inherit;
  min-height: 280px;
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
}

.tm-quill-editor .ql-editor {
  min-height: 280px;
}

.tm-admin-editor-switcher {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 10px;
  padding: 4px;
  border: 1px solid #d6e1ec;
  border-radius: 10px;
  background: #f8fafc;
}

.tm-admin-editor-tab {
  border: none;
  background: transparent;
  color: #475569;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.tm-admin-editor-tab.active {
  background: #ffffff;
  color: #075985;
  box-shadow: 0 6px 14px rgba(15,23,42,0.05);
}

.tm-admin-editor-panel-hidden {
  display: none;
}

.tm-admin-lang-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  padding: 4px;
  border: 1px solid #d6e1ec;
  border-radius: 10px;
  background: #f8fafc;
}

.tm-admin-lang-tab {
  border: none;
  background: transparent;
  color: #475569;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.tm-admin-lang-tab.active {
  background: #ffffff;
  color: #075985;
  box-shadow: 0 6px 14px rgba(15,23,42,0.05);
}

.tm-admin-lang-tab.has-content:not(.active)::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-radius: 50%;
  background: #22c55e;
  vertical-align: middle;
}

.tm-admin-lang-tab-badge {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  margin-left: 4px;
}

.tm-admin-lang-panel-hidden {
  display: none;
}

.tm-admin-codearea {
  width: 100%;
  min-height: 360px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 14px 16px;
  background: #0f172a;
  color: #e2e8f0;
  font: 13px/1.65 Consolas, Monaco, 'Courier New', monospace;
  resize: vertical;
}

.tm-admin-codearea:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(14,165,233,0.12);
}

.tm-admin-section-head {
  margin-bottom: 12px;
}

.tm-admin-section-head p {
  font-size: 13px;
  color: #64748b;
}

.tm-admin-submitbar {
  display: flex;
  justify-content: flex-start;
}

.tm-admin-body {
  background:
    linear-gradient(90deg, #0f172a 0 240px, rgba(15,23,42,0) 240px),
    linear-gradient(180deg, #f6fbff 0%, #eef5fb 100%);
}

.tm-admin-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
}

.tm-admin-sidebar {
  background: #0f172a;
  color: #e2e8f0;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 100vh;
}

.tm-admin-sidebar-brand a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.tm-admin-sidebar-nav,
.tm-admin-sidebar-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tm-admin-sidebar-link {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  background: transparent;
}

.tm-admin-sidebar-link:hover,
.tm-admin-sidebar-link.active {
  background: rgba(56, 189, 248, 0.12);
  color: #fff;
  border-color: rgba(125, 211, 252, 0.28);
}

.tm-admin-sidebar-button {
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.tm-admin-sidebar-logout {
  width: 100%;
}

.tm-admin-main {
  padding: 22px;
}

.tm-admin-main-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.tm-admin-main-head h1 {
  margin-bottom: 4px;
}

.tm-admin-user {
  color: #64748b;
  font-weight: 700;
  font-size: 13px;
}

.tm-admin-dashboard-grid {
  display: grid;
  gap: 14px;
}

.tm-admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.tm-admin-stat-card {
  border: 1px solid #dbeafe;
  border-radius: 12px;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tm-admin-stat-card strong {
  font-size: 24px;
  line-height: 1;
  color: #0f172a;
}

.tm-admin-stat-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #075985;
}

.tm-admin-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tm-admin-quick-link {
  text-decoration: none;
  color: #075985;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

.tm-admin-list-compact .tm-admin-post-row {
  padding: 13px 14px;
}

.tm-admin-toolbar-actions-page {
  margin-bottom: 14px;
}

.tm-admin-inline-upload {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.tm-admin-upload-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tm-admin-media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.tm-admin-media-card {
  border: 1px solid #dbe4ee;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tm-admin-media-thumb {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: 152px;
  background: #e2e8f0;
}

.tm-admin-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tm-admin-media-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #64748b;
  font-size: 12px;
}

.tm-admin-media-body strong {
  color: #0f172a;
  font-size: 13px;
  line-height: 1.35;
  word-break: break-word;
}

.tm-admin-media-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tm-admin-file-rename {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.tm-admin-file-ext {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  color: #475569;
  font-weight: 700;
  font-size: 13px;
}

.tm-admin-media-actions {
  display: flex;
  justify-content: flex-start;
}

.tm-admin-search-results {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.tm-admin-search-card {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #dbe4ee;
  border-radius: 12px;
  background: #fff;
}

.tm-admin-search-card-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #64748b;
  font-size: 12px;
}

.tm-admin-search-card-main strong {
  color: #0f172a;
  font-size: 14px;
}

.tm-admin-menu-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tm-admin-menu-head,
.tm-admin-menu-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) minmax(0, 1.2fr) 130px;
  gap: 10px;
  align-items: center;
}

.tm-admin-menu-head {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.tm-admin-menu-row {
  padding: 6px 0;
  border-radius: 12px;
}

.tm-admin-menu-row.is-dragging {
  opacity: 0.55;
}

.tm-admin-menu-row.is-drop-target {
  background: rgba(14, 165, 233, 0.06);
}

.tm-admin-drag-handle {
  width: 40px;
  min-height: 42px;
  border: 1px dashed #bfd5ea;
  border-radius: 10px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  color: #64748b;
  font-size: 20px;
  line-height: 1;
  cursor: grab;
}

.tm-admin-drag-handle:active {
  cursor: grabbing;
}

.tm-admin-check-inline {
  justify-content: flex-start;
}

@media (max-width: 980px) {
  .tm-home-hero-grid {
    grid-template-columns: 1fr;
  }

  .tm-home-hero-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tm-home-primary-grid,
  .tm-home-secondary-grid,
  .tm-home-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tm-news-grid,
  .tm-news-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tm-home-feature-links-compact,
  .tm-home-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tm-country-seed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tm-admin-grid-sidebar {
    grid-template-columns: 1fr;
  }

  .tm-admin-app {
    grid-template-columns: 1fr;
  }

  .tm-admin-sidebar {
    position: static;
    min-height: auto;
  }

  .tm-admin-body {
    background: linear-gradient(180deg, #f6fbff 0%, #eef5fb 100%);
  }

  .tm-admin-stat-grid,
  .tm-admin-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1280px) {
  .tm-admin-media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .tm-header-search input {
    min-height: 48px;
    font-size: 16px;
  }

  .tm-home-panel {
    padding: 18px;
  }

  .tm-home-feature {
    padding: 22px 18px;
  }

  .tm-home-feature-links,
  .tm-home-feature-links-compact,
  .tm-home-utility-grid {
    grid-template-columns: 1fr;
  }

  .tm-home-news-grid {
    grid-template-columns: 1fr;
  }

  .tm-country-seed-grid {
    grid-template-columns: 1fr;
  }

  .tm-home-feature-head h2 {
    font-size: 22px;
  }

  .tm-home-hero-side {
    grid-template-columns: 1fr;
  }

  .tm-home-primary-grid,
  .tm-home-secondary-grid,
  .tm-home-hub-grid {
    grid-template-columns: 1fr;
  }

  .tm-news-grid,
  .tm-news-mini-grid,
  .tm-admin-grid {
    grid-template-columns: 1fr;
  }

  .tm-admin-toolbar,
  .tm-admin-post-row,
  .tm-admin-search-card {
    flex-direction: column;
  }

  .tm-admin-main {
    padding: 14px;
  }

  .tm-admin-settings-icon {
    grid-template-columns: 1fr;
  }

  .tm-admin-main-head,
  .tm-admin-menu-head,
  .tm-admin-menu-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .tm-admin-stat-grid,
  .tm-admin-media-grid {
    grid-template-columns: 1fr;
  }

  .tm-admin-post-actions {
    align-items: flex-start;
    min-width: 0;
  }

  .tm-article-body {
    padding: 22px 18px;
    font-size: 16px;
  }

  .tm-radar-panel {
    margin-left: -2px;
    margin-right: -2px;
    border-radius: 10px;
  }

  .tm-radar-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .tm-radar-head h2 {
    font-size: 19px;
  }

  .tm-radar-source {
    justify-self: start;
    min-height: 32px;
  }

  .tm-radar-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px 12px 0;
  }

  .tm-radar-tab {
    width: 100%;
    padding: 0 10px;
  }

  .tm-radar-body {
    padding: 12px;
  }


  .tm-radar-frame {
    padding: 12px;
  }

  .tm-radar-frame img {
    width: 100%;
    max-width: 100%;
  }

  .tm-radar-frame figcaption {
    min-width: 0;
    max-width: 100%;
  }

  .tm-radar-note {
    margin: 0 12px 14px;
  }

}
