:root {
  color-scheme: light;
  --bg: #f7f9fb;
  --surface: #ffffff;
  --surface-soft: #f1f5f8;
  --text: #18202a;
  --muted: #657384;
  --line: #dce4eb;
  --teal: #0f9f9b;
  --teal-dark: #087674;
  --indigo: #3646a3;
  --amber: #c78017;
  --red: #c44545;
  --green: #18865a;
  --shadow: 0 18px 50px rgba(33, 45, 62, 0.1);
  --small-shadow: 0 10px 28px rgba(33, 45, 62, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(180deg, #ffffff 0, var(--bg) 36rem), var(--bg);
  color: var(--text);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
}

.brand,
.nav-links,
.hero-actions,
.panel-title-row,
.panel-heading,
.live-time,
.converter-form,
.facts-band,
.site-footer,
.admin-topbar,
.admin-user,
.row-actions,
.checkbox-line {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-size: 1rem;
  font-weight: 780;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--text);
  border-radius: 8px;
}

.brand-mark svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links {
  justify-content: center;
  gap: 6px;
}

.nav-links a,
.admin-link,
.site-footer a,
.admin-sidebar a {
  min-height: 36px;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover,
.admin-link:hover,
.site-footer a:hover,
.admin-sidebar a:hover,
.admin-sidebar a.active {
  color: var(--text);
  background: var(--surface-soft);
}

.site-notice {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 16px;
  padding: 12px 14px;
  border: 1px solid #f0d8ad;
  border-radius: 8px;
  color: #684608;
  background: #fff8eb;
  font-weight: 680;
}

.app-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 56px;
}

.today-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.date-hero,
.calendar-panel,
.tool-panel,
.meeting-panel,
.admin-panel,
.admin-card,
.auth-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.date-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 35%);
  gap: 22px;
  min-height: 382px;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
}

.section-label {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 790;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.date-hero h1 {
  max-width: 740px;
  margin: 0;
  color: var(--text);
  font-size: clamp(3.1rem, 7vw, 6.35rem);
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: 0;
}

.live-time {
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
}

.live-time time {
  color: var(--text);
  font-size: 1.38rem;
  font-variant-numeric: tabular-nums;
  font-weight: 790;
}

.icon-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(15, 159, 155, 0.11);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.primary-action,
.secondary-action,
.danger-action,
.format-row,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  font-weight: 760;
}

.primary-action,
.secondary-action,
.danger-action {
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.95rem;
}

.primary-action {
  color: #fff;
  background: var(--teal-dark);
  box-shadow: 0 12px 24px rgba(8, 118, 116, 0.18);
}

.primary-action:hover {
  background: #065f5e;
}

.secondary-action {
  color: var(--text);
  background: var(--surface-soft);
}

.secondary-action:hover {
  background: #e6edf3;
}

.danger-action {
  color: #fff;
  background: var(--red);
}

.danger-action:hover {
  background: #a83232;
}

.small {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.84rem;
}

.hero-art {
  align-self: center;
  margin: 0;
}

.hero-art img {
  display: block;
  width: min(100%, 340px);
  margin-left: auto;
  border-radius: 8px;
  box-shadow: var(--small-shadow);
}

.calendar-panel,
.tool-panel,
.meeting-panel,
.admin-panel {
  padding: 22px;
}

.panel-heading,
.panel-title-row {
  justify-content: space-between;
  gap: 16px;
}

.panel-heading span,
.panel-title-row h2,
.tool-panel h2,
.admin-panel h2 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.panel-heading strong,
.panel-title-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 730;
}

.mini-calendar {
  margin-top: 22px;
}

.weekday-row,
.month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.weekday-row span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  text-align: center;
}

.month-grid {
  margin-top: 10px;
}

.month-grid span {
  display: grid;
  place-items: center;
  min-height: 36px;
  border-radius: 7px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.month-grid .is-today {
  color: #fff;
  background: var(--indigo);
  box-shadow: 0 10px 20px rgba(54, 70, 163, 0.22);
}

.utility-grid,
.daily-grid,
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.date-link-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.date-link-card,
.update-card,
.news-card {
  display: grid;
  gap: 8px;
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--small-shadow);
}

.date-link-card span,
.update-card span,
.news-card span,
.celebration-card span,
.compact-list span,
.tested-models span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.date-link-card strong,
.update-card strong,
.news-card strong {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.28;
}

.date-link-card:hover,
.update-card:hover,
.news-card:hover {
  border-color: #bcd7d5;
  transform: translateY(-1px);
}

.converter-form {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.converter-form label,
.admin-form label,
.auth-card label {
  display: grid;
  gap: 8px;
}

.converter-form label {
  flex: 1 1 160px;
}

.converter-form span,
.admin-form label span,
.auth-card label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 11px;
  color: var(--text);
  background: #fff;
  font-size: 0.92rem;
  font-weight: 660;
}

textarea {
  min-height: 118px;
  padding: 11px;
  resize: vertical;
}

.conversion-result,
.map-readout {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #d3e8e7;
  border-radius: 8px;
  color: #073f3f;
  background: #eefaf9;
  font-size: 0.96rem;
  font-weight: 730;
}

.timezone-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  min-height: 252px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eaf1f6;
}

.tz-band {
  min-height: 252px;
  border-right: 1px solid rgba(24, 32, 42, 0.07);
  background: var(--band-color);
}

.tz-band:nth-child(4n) {
  box-shadow: inset 0 0 0 999px rgba(255, 255, 255, 0.1);
}

.city-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--marker);
  box-shadow: 0 8px 18px rgba(24, 32, 42, 0.25);
}

.city-marker:hover,
.city-marker.active {
  transform: scale(1.22);
}

.meeting-panel {
  margin-bottom: 18px;
}

.updates-panel,
.history-panel,
.news-panel,
.content-hero,
.policy-panel {
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.updates-grid,
.news-grid,
.celebration-grid,
.model-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.content-hero {
  padding: clamp(28px, 5vw, 52px);
}

.content-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1;
}

.content-hero p:not(.section-label) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.policy-panel {
  display: grid;
  gap: 20px;
}

.policy-panel article {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.policy-panel article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-panel h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.policy-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.update-card small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 710;
}

.meeting-board {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.meeting-row {
  display: grid;
  grid-template-columns: 116px repeat(24, minmax(34px, 1fr));
  gap: 4px;
  min-width: 960px;
  align-items: center;
}

.meeting-city {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 780;
}

.hour-cell {
  min-height: 34px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #17202b;
  font-size: 0.72rem;
  font-weight: 740;
}

.hour-cell.sleep {
  background: #dce4ef;
}

.hour-cell.edge {
  background: #f7dfae;
}

.hour-cell.work {
  background: #bfe8dd;
}

.facts-band {
  justify-content: space-between;
  gap: 24px;
  margin: 18px 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #17202b;
  color: #fff;
  box-shadow: var(--shadow);
}

.facts-band .section-label {
  color: #7dd9d5;
}

.facts-band h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.facts-band p {
  max-width: 560px;
  color: #c9d2dc;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(84px, 1fr));
  gap: 10px;
  width: min(100%, 560px);
}

.fact-item {
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.fact-item span {
  color: #b7c1cd;
  font-size: 0.76rem;
  font-weight: 740;
}

.fact-item strong {
  color: #fff;
  font-size: 1.45rem;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--muted);
  font-weight: 760;
}

.info-list dd {
  margin: 0;
  color: var(--text);
  font-weight: 720;
}

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

.celebration-card {
  display: grid;
  gap: 8px;
  min-height: 86px;
  padding: 15px;
  border: 1px solid #d3e8e7;
  border-radius: 8px;
  background: #eefaf9;
}

.celebration-card strong {
  color: #073f3f;
  line-height: 1.3;
}

.editorial-panel p,
.news-panel p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
}

.editorial-panel blockquote {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0;
  background: #fff8eb;
  color: #684608;
  font-weight: 740;
}

.timeline-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item time {
  display: inline-flex;
  justify-content: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #e8f0ff;
  color: var(--indigo);
  font-weight: 820;
}

.timeline-item p {
  margin: 3px 0 0;
  color: var(--text);
  line-height: 1.55;
  font-weight: 650;
}

.compact-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.compact-list a {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.compact-list strong {
  color: var(--text);
  line-height: 1.4;
}

.site-footer {
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-page {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
  background: var(--bg);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.admin-sidebar nav {
  display: grid;
  gap: 6px;
  margin-top: 28px;
}

.admin-sidebar a {
  display: flex;
  align-items: center;
}

.admin-main {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.admin-topbar {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-topbar h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.admin-user {
  gap: 10px;
  color: var(--muted);
  font-weight: 720;
}

.flash {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #073f3f;
  background: #eefaf9;
  border: 1px solid #d3e8e7;
}

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

.admin-card {
  padding: 20px;
}

.admin-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.admin-card strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
}

.admin-card p,
.admin-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.admin-panel {
  margin-bottom: 16px;
}

.admin-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.admin-form.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.provider-model-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.fallback-chain {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.fallback-chain span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid #d3e8e7;
  border-radius: 8px;
  color: #073f3f;
  background: #eefaf9;
  font-size: 0.82rem;
  font-weight: 790;
}

.fallback-chain span + span::before {
  content: "->";
  margin-right: 8px;
  color: var(--muted);
}

.form-help {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-help code {
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--surface-soft);
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.84rem;
}

.edit-context {
  display: grid;
  gap: 5px;
  margin-top: 16px;
  padding: 13px 14px;
  border: 1px solid #d3e8e7;
  border-radius: 8px;
  background: #eefaf9;
}

.edit-context strong {
  color: #073f3f;
}

.edit-context span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.inline-delete-form {
  margin-top: 12px;
}

.readonly-field {
  display: grid;
  gap: 8px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.readonly-field span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.readonly-field strong {
  color: var(--text);
  font-size: 0.92rem;
}

.checkbox-line {
  gap: 9px;
}

.checkbox-line input {
  width: auto;
  min-height: auto;
}

.admin-table {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  overflow-x: auto;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.8fr 1fr 0.7fr 1fr;
  gap: 12px;
  align-items: center;
  min-width: 860px;
  padding: 12px;
  border-radius: 8px;
}

.pages-table .table-head,
.pages-table .table-row {
  grid-template-columns: 0.8fr 2fr 0.7fr 1fr 0.5fr;
}

.ai-key-table .table-head,
.ai-key-table .table-row {
  grid-template-columns: 0.9fr 1fr 1fr 1.6fr 0.6fr 1fr;
}

.table-head {
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 0.78rem;
  font-weight: 790;
  text-transform: uppercase;
}

.table-row {
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 650;
}

.row-actions {
  gap: 10px;
}

.row-actions form {
  margin: 0;
}

.row-action-link,
.row-danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 8px;
  padding: 0 10px;
  font-size: 0.84rem;
}

.row-action-link,
.row-actions a {
  color: var(--indigo);
  background: #edf1ff;
}

.row-danger-button {
  color: #8f2525;
  background: #fff0f0;
}

.row-actions button,
.row-actions a {
  border: 0;
  font-weight: 760;
}

.health-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.health-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.health-row.ok {
  border-color: #bce5cf;
}

.health-row.warning {
  border-color: #f0d8ad;
}

.health-row.error {
  border-color: #efb7b7;
}

.model-columns h3,
.audit-card h3 {
  margin: 0;
  font-size: 1rem;
}

.model-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.model-list li {
  color: var(--text);
  font-weight: 680;
}

.audit-list,
.tested-models {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.audit-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.audit-card.ok {
  border-color: #bce5cf;
}

.audit-card.warning {
  border-color: #f0d8ad;
}

.tested-models div {
  display: grid;
  gap: 5px;
  padding: 10px;
  border-radius: 8px;
  background: var(--surface-soft);
}

.auth-card {
  width: min(460px, calc(100% - 32px));
  margin: 8vh auto;
  padding: 24px;
}

.auth-card form {
  display: grid;
  gap: 14px;
}

.auth-card h1,
.auth-card h2 {
  margin: 0;
}

:focus-visible {
  outline: 3px solid rgba(15, 159, 155, 0.32);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .site-header,
  .today-grid,
  .utility-grid,
  .daily-grid,
  .content-grid,
  .updates-grid,
  .news-grid,
  .model-columns,
  .admin-grid,
  .admin-form.compact,
  .provider-model-form,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: 14px;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .date-hero {
    grid-template-columns: 1fr;
  }

  .hero-art img {
    width: min(100%, 360px);
    margin: 0;
  }

  .facts-band,
  .site-footer,
  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .facts-grid {
    width: 100%;
  }

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

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

  .admin-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header,
  .app-shell,
  .site-footer,
  .admin-main {
    width: min(100% - 24px, 1180px);
  }

  .date-hero,
  .calendar-panel,
  .tool-panel,
  .meeting-panel,
  .updates-panel,
  .history-panel,
  .news-panel,
  .content-hero,
  .policy-panel,
  .facts-band,
  .admin-panel {
    padding: 18px;
  }

  .date-hero h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  .live-time,
  .converter-form {
    align-items: flex-start;
    flex-direction: column;
  }

  .converter-form label,
  .primary-action,
  .secondary-action,
  .danger-action {
    width: 100%;
  }

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

  .info-list div,
  .health-row,
  .date-link-band,
  .celebration-grid,
  .timeline-item,
  .compact-list a {
    grid-template-columns: 1fr;
  }
}
