/* ftcfly.com Flight Time Calculator */
:root {
  --bg: #0b1020;
  --bg-soft: #121a32;
  --card: #ffffff;
  --ink: #1a2238;
  --ink-soft: #5a6480;
  --line: #e3e7f0;
  --brand: #1768ff;
  --brand-dark: #0f4fcc;
  --accent: #00b3a4;
  --warn: #b25e00;
  --shadow: 0 10px 30px rgba(16, 28, 64, .10);
  --radius: 14px;
  --maxw: 880px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #f5f7fb;
  line-height: 1.6;
  overflow-wrap: break-word;
}
h1, h2, h3, .brand, .hero h1, .stat-value {
  font-family: 'Manrope', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
img, svg { max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }

/* Header / hero */
.site-header {
  background: radial-gradient(1200px 400px at 70% -10%, #1d3a7e 0%, var(--bg) 60%);
  color: #eaf0ff;
  padding: 18px 0 56px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 30px; width: auto; display: block; }
.nav-links { display: flex; flex-wrap: wrap; align-items: center; }
.nav-links a { color: #c7d4f5; margin-left: 18px; font-size: .92rem; }
.nav-links a:first-child { margin-left: 0; }
.hero { text-align: center; margin-top: 34px; }
.hero h1 { font-size: clamp(1.6rem, 4vw, 2.5rem); margin: 0 0 8px; color: #fff; line-height: 1.2; }
.hero p { margin: 0 auto; max-width: 560px; color: #b8c5e8; font-size: 1.02rem; }

/* Calculator card */
.calc-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  margin: -38px auto 0;
  position: relative;
  z-index: 5;
}
.field { position: relative; }
.field label { display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: var(--ink-soft); margin-bottom: 5px; }
.field input {
  width: 100%; padding: 13px 14px; font-size: 1rem; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 10px; background: #fbfcfe; transition: border-color .15s;
}
.field input:focus { outline: none; border-color: var(--brand); background: #fff; }

.row-with-swap { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 10px; }
.swap-btn {
  border: 1.5px solid var(--line); background: #fff; color: var(--brand);
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 3px; transition: .15s;
}
.swap-btn:hover { background: var(--brand); color: #fff; transform: rotate(180deg); }

.bottom-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: end; margin-top: 4px; }
.btn-primary {
  background: var(--brand); color: #fff; border: 0; border-radius: 10px;
  padding: 14px 26px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background .15s; white-space: nowrap;
}
.btn-primary:hover { background: var(--brand-dark); }
.btn-primary:disabled { background: #9bb4e6; cursor: not-allowed; }

/* Autocomplete dropdown */
.ac-list {
  list-style: none; margin: 4px 0 0; padding: 6px; position: absolute; left: 0; right: 0; z-index: 30;
  background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow);
  max-height: 290px; overflow-y: auto;
}
.ac-list li { display: grid; grid-template-columns: auto 1fr; column-gap: 10px; align-items: baseline;
  padding: 9px 10px; border-radius: 7px; cursor: pointer; }
.ac-list li:hover, .ac-list li.active { background: #eef4ff; }
.ac-list .iata { grid-row: span 2; font-weight: 800; color: var(--brand); font-size: .95rem;
  background: #eef4ff; padding: 3px 7px; border-radius: 6px; align-self: center; }
.ac-list .ac-main { font-weight: 600; }
.ac-list .ac-sub { grid-column: 2; font-size: .8rem; color: var(--ink-soft); }

.status { font-size: .8rem; color: var(--ink-soft); margin: 12px 2px 0; }
.error { background: #fde8e8; color: #b42318; border: 1px solid #f6c5c2; padding: 11px 14px;
  border-radius: 9px; margin-top: 14px; font-size: .92rem; }

/* Result */
.result { margin-top: 18px; border-top: 1px dashed var(--line); padding-top: 18px; }
.result-head .route { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 16px; }
.route .ep { display: flex; flex-direction: column; align-items: center; }
.route .ep b { font-size: 1.6rem; color: var(--ink); }
.route .ep small { color: var(--ink-soft); }
.route .arrow { color: var(--brand); font-size: 1.5rem; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.stat { background: #f6f9ff; border: 1px solid #e6eeff; border-radius: 11px; padding: 14px 16px; }
.stat-label { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
.stat-value { display: block; font-size: 1.7rem; font-weight: 800; color: var(--brand-dark); margin: 2px 0; }
.stat-sub { font-size: .82rem; color: var(--ink-soft); }
.arrival { margin-top: 14px; background: #f0fbf9; border: 1px solid #c9efe9; border-radius: 11px; padding: 6px 16px; }
.arr-row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid #ddf1ed; font-size: .95rem; }
.arr-row:last-child { border-bottom: 0; }
.arr-row span { color: var(--ink-soft); }
.day-diff { font-style: normal; font-size: .76rem; background: #00b3a4; color: #fff; padding: 1px 7px; border-radius: 20px; margin-left: 6px; }
.disclaimer { font-size: .82rem; color: var(--warn); background: #fff7ec; border: 1px solid #f3e0c2;
  border-radius: 9px; padding: 10px 13px; margin: 16px 0 0; }

/* Result head + haul badge */
.result-head { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.haul-badge { background: #eef4ff; color: var(--brand-dark); border: 1px solid #d3e2ff;
  font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 4px 12px; border-radius: 20px; }

/* Great-circle route map */
.route-map { width: 100%; height: auto; display: block; margin: 16px 0 4px; border-radius: 12px;
  border: 1px solid var(--line); overflow: hidden; }
.route-map .ocean { fill: #dbeafe; }
.route-map .land { fill: #c8d3e3; stroke: #b4c0d4; stroke-width: 0.4; stroke-linejoin: round; }
.route-map .gc-casing { fill: none; stroke: #fff; opacity: .85; stroke-linecap: round; stroke-linejoin: round; }
.route-map .gc-arc { fill: none; stroke: var(--brand); stroke-linecap: round; stroke-linejoin: round; }
.route-map .ep-dot circle { fill: #fff; stroke: var(--brand); }
.route-map .ep-dot .ep-core { fill: var(--brand); stroke: none; }
.route-map .ep-dot text { fill: var(--ink); font-weight: 800;
  paint-order: stroke; stroke: #fff; stroke-linejoin: round; }

/* Live dual clock */
.clocks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0; }
.clocks.one { grid-template-columns: 1fr; }
.clock { background: #0f1733; color: #eaf0ff; border-radius: 11px; padding: 10px 14px; text-align: center; }
.clock span { display: block; font-size: .72rem; color: #9fb0d8; text-transform: uppercase; letter-spacing: .05em; }
.clock b { font-size: 1.5rem; font-variant-numeric: tabular-nums; letter-spacing: .5px; }

/* Day/night row */
.arr-row.daynight { align-items: flex-start; }
.arr-row.daynight b { font-weight: 400; text-align: right; max-width: 62%; }

/* Time-zone line */
.tz-line { margin-top: 14px; background: #f6f9ff; border: 1px solid #e6eeff; border-radius: 11px;
  padding: 11px 15px; font-size: .95rem; }

/* Jet lag card */
.jetlag { margin-top: 14px; background: #fbf5ff; border: 1px solid #ecd9ff; border-radius: 12px; padding: 14px 16px; }
.jetlag.minimal { background: #f0fbf4; border-color: #c9eed5; padding: 12px 16px; font-size: .95rem; }
.jl-head { font-weight: 800; margin-bottom: 4px; }
.jetlag p { margin: 6px 0; font-size: .94rem; }
.jl-tip { color: #5a4a6e; }
.muted { color: var(--ink-soft); font-size: .85em; }

/* Return leg */
.returnleg { margin-top: 14px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 8px; background: #f6f9ff; border: 1px dashed #cdddff; border-radius: 11px; padding: 11px 15px; font-size: .92rem; }
.link-btn { background: none; border: 0; color: var(--brand); font-weight: 700; cursor: pointer; font-size: .92rem; padding: 0; }
.link-btn:hover { text-decoration: underline; }

/* Content sections */
main section { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin: 22px 0; }
main h2 { font-size: 1.4rem; margin: 0 0 14px; }
main h3 { font-size: 1.08rem; margin: 20px 0 6px; }
main p, main li { color: var(--ink); }
.lead { font-size: 1.05rem; color: var(--ink-soft); }
.steps { padding-left: 20px; }
.steps li { margin: 6px 0; }
.faq dt { font-weight: 700; margin-top: 16px; }
.faq dd { margin: 4px 0 0; color: var(--ink); }
.pop-routes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.pop-routes a { background: #eef4ff; border: 1px solid #d9e6ff; padding: 6px 12px; border-radius: 20px; font-size: .9rem; }

/* Inner-page header (About, Contact, legal) */
.site-header.compact { padding: 18px 0 64px; }
.page-head { text-align: center; margin-top: 30px; }
.page-head h1 { color: #fff; font-size: clamp(1.5rem, 4vw, 2.2rem); margin: 0 0 6px; line-height: 1.2; }
.page-head p { color: #b8c5e8; margin: 0 auto; max-width: 600px; font-size: 1.02rem; }

/* Prose / content pages */
.prose-card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 30px 34px; margin: -38px auto 0; position: relative; z-index: 5;
}
.prose { max-width: 70ch; }
.prose .lead { font-size: 1.08rem; color: var(--ink-soft); margin-top: 0; }
.prose h2 { font-size: 1.25rem; margin: 26px 0 8px; }
.prose p, .prose li { margin: 8px 0; }
.prose ul { padding-left: 22px; }
.prose li { margin: 6px 0; }
.contact-email { font-size: 1.15rem; font-weight: 700; }

/* Author box (About / article bylines) */
.author-box { display: flex; gap: 16px; align-items: flex-start; background: #f6f9ff;
  border: 1px solid #e6eeff; border-radius: 12px; padding: 16px 18px; margin: 16px 0; }
.author-box img, .author-box .avatar { width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.author-box .avatar { display: flex; align-items: center; justify-content: center;
  background: var(--brand); color: #fff; font-weight: 800; font-size: 1.5rem; }
.author-name { font-weight: 800; margin: 0; font-size: 1.05rem; }
.author-role { color: var(--brand-dark); font-weight: 600; margin: 2px 0 6px; font-size: .9rem; }
.author-bio { margin: 0; color: var(--ink); font-size: .96rem; }
.author-links { margin: 8px 0 0; }
.author-links a { margin-right: 12px; font-size: .9rem; }

/* ---- Blog & articles ---- */
.breadcrumb { font-size: .82rem; margin: 0 0 10px; color: var(--ink-soft); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: var(--ink-faint, #8893ad); }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

.article h1 { font-size: clamp(1.5rem, 4vw, 2.1rem); line-height: 1.25; margin: 6px 0 14px; }

.byline { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.byline-photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.byline-photo.avatar { display: flex; align-items: center; justify-content: center; background: var(--brand); color: #fff; font-weight: 800; }
.byline-name { display: block; font-weight: 700; }
.byline-name a { color: var(--ink); }
.byline-sub { display: block; font-size: .85rem; color: var(--ink-soft); }

.toc { background: #f6f9ff; border: 1px solid #e6eeff; border-radius: 12px; padding: 14px 18px; margin: 18px 0; }
.toc-title { font-weight: 700; margin: 0 0 6px; font-size: .9rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
.toc ul { margin: 0; padding-left: 18px; }
.toc li { margin: 4px 0; }

.table-wrap { overflow-x: auto; margin: 16px 0; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: .94rem; min-width: 460px; }
.cmp-table th, .cmp-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.cmp-table thead th { background: #f6f9ff; color: var(--ink); font-weight: 700; border-bottom: 2px solid #e6eeff; }
.cmp-table tbody tr:nth-child(even) { background: #fafbff; }
.cmp-table td:first-child { font-weight: 600; }

.cta-box { background: #eef4ff; border: 1px solid #d3e2ff; border-radius: 12px; padding: 18px 20px; margin: 22px 0; }
.cta-box p { margin: 0 0 12px; }
.cta-box .btn-primary { display: inline-block; text-decoration: none; }

/* Article callouts (use sparingly, vary post to post) */
.callout { border-radius: 12px; padding: 15px 18px; margin: 18px 0; border: 1px solid var(--line); }
.callout p { margin: 0; }
.callout-tldr { background: #0f1733; color: #e8eefc; border-color: #0f1733; }
.callout-tldr .k { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: #8fa6e0; margin-bottom: 4px; }
.callout-tldr strong { color: #fff; }
.callout-myth { background: #fff7ec; border-color: #f3e0c2; }
.callout-myth .k { font-weight: 800; color: var(--warn); }

.example-box { background: #f0fbf9; border: 1px solid #c9efe9; border-radius: 12px; padding: 16px 18px; margin: 18px 0; }
.example-box h3 { margin: 0 0 10px; font-size: 1.05rem; }
.example-box .ex-row { display: flex; justify-content: space-between; gap: 14px; padding: 8px 0; border-bottom: 1px solid #ddf1ed; }
.example-box .ex-row:last-child { border-bottom: 0; }
.example-box .ex-row span:first-child { color: var(--ink); }
.example-box .ex-row b { white-space: nowrap; }
.example-box .ex-note { font-size: .85rem; color: var(--ink-soft); margin: 10px 0 0; }

.post-figure { margin: 20px 0; }
.post-figure img { width: 100%; height: auto; display: block; border: 1px solid var(--line); border-radius: 12px; }
.post-figure figcaption { font-size: .85rem; color: var(--ink-soft); margin-top: 8px; line-height: 1.5; }

.checklist-box { background: #f6f9ff; border: 1px solid #e6eeff; border-radius: 12px; padding: 16px 20px 18px; margin: 18px 0; }
.checklist-box h3 { margin: 0 0 10px; font-size: 1.05rem; }
.checklist { list-style: none; padding-left: 0; margin: 0; }
.checklist li { position: relative; padding-left: 32px; margin: 10px 0; }
.checklist li::before { content: "\2713"; position: absolute; left: 0; top: 1px; color: #0f9d76; background: #e7f7f0;
  width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 800; }

/* When a prose card follows another block (e.g. an embedded tool) instead of overlapping the header */
.prose-card.below { margin-top: 22px; }

/* Route cards (route guides) */
.route-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0; }
.rcard { display: block; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px;
  text-decoration: none; color: var(--ink); transition: border-color .15s, box-shadow .15s; }
.rcard:hover { border-color: #c3d6ff; box-shadow: var(--shadow); text-decoration: none; }
.rcard .rc-route { display: block; font-weight: 800; font-size: 1.05rem; }
.rcard .rc-meta { display: block; color: var(--brand-dark); font-weight: 700; margin-top: 6px; }
.rcard .rc-sub { display: block; color: var(--ink-soft); font-size: .85rem; margin-top: 3px; }
@media (max-width: 560px) { .route-cards { grid-template-columns: 1fr; } }

/* Two-column comparison (e.g. east vs west) */
.compare-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 18px 0; }
.compare-col { border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; }
.compare-col h3 { margin: 0 0 8px; font-size: 1.02rem; }
.compare-col ul { margin: 0; padding-left: 18px; }
.compare-col li { margin: 6px 0; }
.compare-col.harder { background: #fdf4ef; border-color: #f1ddcc; }
.compare-col.easier { background: #eef6ff; border-color: #d3e4f5; }
@media (max-width: 560px) { .compare-cols { grid-template-columns: 1fr; } }

/* Quick key-facts box (answer-first guides) */
.keyfacts { background: #f6f9ff; border: 1px solid #e6eeff; border-radius: 12px; padding: 4px 18px; margin: 18px 0; }
.keyfacts > div { padding: 12px 0; border-bottom: 1px solid #e1ebfb; }
.keyfacts > div:last-child { border-bottom: 0; }
.keyfacts b { color: var(--brand-dark); }

/* Ranked list (listicles) */
.rank-list { list-style: none; padding: 0; margin: 18px 0; }
.rank-item { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; margin: 12px 0; }
.rank-num { width: 38px; height: 38px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem; }
.rank-item.top .rank-num { background: #e0a818; }
.rank-body h3 { margin: 0 0 2px; font-size: 1.1rem; }
.rank-meta { color: var(--brand-dark); font-weight: 700; font-size: .92rem; margin-bottom: 6px; }
.rank-body p { margin: 0; }

/* Round verdict (comparison posts) */
.round-verdict { display: inline-block; background: #eef4ff; border: 1px solid #d3e2ff; color: var(--brand-dark);
  font-weight: 700; font-size: .9rem; padding: 6px 13px; border-radius: 8px; margin: 4px 0 0; }

/* Rules reference (allowed / cabin only / checked only / limited / banned) */
.rules { margin: 18px 0; }
.rule-row { display: grid; grid-template-columns: 110px 1fr; gap: 14px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.rule-row:last-child { border-bottom: 0; }
.rule-row h3 { margin: 0 0 3px; font-size: 1rem; }
.rule-row p { margin: 0; }
.pill { display: inline-block; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  padding: 4px 9px; border-radius: 20px; white-space: nowrap; }
.pill.ok { background: #e7f7f0; color: #0f7a55; }
.pill.cabin { background: #eef4ff; color: var(--brand-dark); }
.pill.checked { background: #eef1f6; color: #4a5673; }
.pill.limited { background: #fff4e5; color: #9a5b00; }
.pill.banned { background: #fde7e7; color: #b42318; }
@media (max-width: 480px) { .rule-row { grid-template-columns: 1fr; gap: 4px; } }

.faq-dl dt { font-weight: 700; margin-top: 16px; }
.faq-dl dd { margin: 4px 0 0; }

.post-tag { display: inline-block; background: #eef4ff; color: var(--brand-dark); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; padding: 3px 10px; border-radius: 20px; }

/* Blog index list */
.post-list { display: grid; gap: 16px; }
.post-card { display: block; border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; text-decoration: none;
  color: var(--ink); transition: border-color .15s, box-shadow .15s; }
.post-card:hover { border-color: #c3d6ff; box-shadow: var(--shadow); text-decoration: none; }
.post-card-title { font-size: 1.2rem; margin: 10px 0 6px; }
.post-card-ex { color: var(--ink-soft); margin: 0 0 10px; }
.post-card-meta { font-size: .82rem; color: var(--ink-soft); }

/* Related posts */
.related { max-width: var(--maxw); margin: 22px auto 0; }
.related > h2 { font-size: 1.2rem; margin: 0 0 12px; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.related-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px;
  text-decoration: none; color: var(--ink); }
.related-card:hover { border-color: #c3d6ff; box-shadow: var(--shadow); text-decoration: none; }
.related-title { display: block; font-weight: 700; margin: 8px 0 6px; }
.related-ex { display: block; font-size: .88rem; color: var(--ink-soft); }
@media (max-width: 560px) { .related-grid { grid-template-columns: 1fr; } }

/* Footer */
.site-footer { background: var(--bg); color: #9fb0d8; padding: 30px 0; margin-top: 30px; font-size: .88rem; }
.site-footer a { color: #c7d4f5; }
.site-footer .foot-links { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 12px; }
.site-footer .attrib { color: #6e7ba3; font-size: .8rem; }

/* Tablets / small laptops */
@media (max-width: 600px) {
  .calc-card { padding: 18px; }
  main section, .prose-card { padding: 20px; }
  .nav-links a { margin-left: 13px; }
}

/* Phones */
@media (max-width: 480px) {
  .wrap { padding: 0 14px; }
  .site-header { padding: 16px 0 50px; }
  .hero { margin-top: 26px; }
  .row-with-swap { grid-template-columns: 1fr; gap: 8px; }
  .swap-btn { justify-self: center; transform: rotate(90deg); }
  .swap-btn:hover { transform: rotate(270deg); }
  .bottom-row { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-value { font-size: 1.45rem; }
  .route .ep b { font-size: 1.3rem; }
  .result-head .route { gap: 12px; }
  .clock b { font-size: 1.3rem; }
  /* stack arrival rows so long values aren't squeezed */
  .arr-row { flex-direction: column; gap: 2px; }
  .arr-row b, .arr-row.daynight b { text-align: left; max-width: 100%; }
  .arr-row .day-diff { margin-left: 0; }
  .returnleg { flex-direction: column; align-items: flex-start; }
  .pop-routes a { padding: 8px 14px; }
}

/* Small phones */
@media (max-width: 360px) {
  .clock b { font-size: 1.12rem; letter-spacing: 0; }
  .clock span { font-size: .66rem; }
  .hero p { font-size: .95rem; }
  .stat-value { font-size: 1.3rem; }
}
