/* birthday-natalia — "Aquarell garden" theme.
   A friendly, lovely invitation: soft lavender & sky-blue watercolour pastels
   on warm paper-white, an elegant serif for headings, painterly SVG washes.
   Clean and quiet — lots of whitespace, no heavy shadows, gentle gradients only
   (the watercolour kind). Mobile-first: base styles target a Pixel 8 (~412 CSS
   px); wider screens get progressive enhancement at the breakpoints near the
   bottom. Dependency-free: system fonts, no web-font fetch. */

:root {
  /* --- Paper & ink ---------------------------------------------------- */
  --bg: #faf8ff;            /* lavender-tinted paper white */
  --paper: #ffffff;
  --surface: #f4f1fc;       /* soft lavender wash */
  --surface-sky: #ecf5fc;   /* soft sky wash */
  --border: #e9e3f5;
  --border-soft: #f0ecf9;
  --text: #2c2838;          /* deep violet-charcoal */
  --text-muted: #6d6781;

  /* --- Pastel palette (lavender & sky-blue, a whisper of blush) -------- */
  --lavender: #c9b8ec;
  --lavender-deep: #7c63c0;
  --sky: #a9d2ef;
  --sky-deep: #4a93c9;
  --blush: #f4c7d9;
  --leaf: #bcd6b8;

  /* Primary accent = lavender; secondary = sky. Used for links, the active
     tab, focus rings, timeline dots. */
  --accent: #8c74cf;
  --accent-strong: #6f57b3;

  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 760px;
  --pad: 20px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
          Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
          "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  /* Painterly washes blooming from the corners — fixed so the page feels like
     it sits on one sheet of watercolour paper. Very low-key behind content. */
  background-image: url("../img/bg-wash.da00ab6f4eff.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  line-height: 1.6;
  font-size: 17px;
  /* Respect notches / rounded corners on a real phone. */
  padding: env(safe-area-inset-top) env(safe-area-inset-right)
           env(safe-area-inset-bottom) env(safe-area-inset-left);
}

/* --- Header ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px var(--pad);
  background: rgba(250, 248, 255, 0.82);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.005em;
}

.brand-mark {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  /* a tiny watercolour peony */
}

.brand-text {
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 54vw;
}

/* --- Language switcher -------------------------------------------------- */
.lang { display: inline-flex; align-items: center; gap: 6px; margin: 0; }
.lang-label {
  display: none;
  font-size: 13px;
  color: var(--text-muted);
}
.lang select {
  font: inherit;
  font-size: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  min-height: 38px;            /* comfortable tap target */
}
.lang select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

/* --- Tab menu ----------------------------------------------------------- */
.tabs {
  display: flex;
  gap: 6px;
  padding: 10px var(--pad);
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }

.tab {
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  white-space: nowrap;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.tab:hover { color: var(--accent-strong); background: var(--surface); }
.tab.is-active {
  color: #fff;
  /* a soft watercolour gradient — lavender melting into sky */
  background: linear-gradient(135deg, var(--lavender-deep), var(--sky-deep));
  box-shadow: 0 4px 14px -6px rgba(124, 99, 192, 0.7);
}
.tab.is-active:hover { color: #fff; }
.tab:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* --- Content ------------------------------------------------------------ */
.content {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px var(--pad) 56px;
}

/* --- Hero --------------------------------------------------------------- */
.hero { padding: 12px 0 8px; position: relative; }
.hero-flower {
  width: 92px;
  height: 92px;
  display: block;
  margin: 0 0 10px -6px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-strong);
  margin: 0 0 8px;
}
h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.lead {
  color: var(--text-muted);
  margin: 0;
  max-width: 48ch;
  font-size: 18px;
}

a { color: var(--accent-strong); }

/* --- Generic surface card (overview / gifts) --------------------------- */
.card {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px;
  margin-top: 18px;
}
.card h2 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 8px;
}
.card p { margin: 0; color: var(--text-muted); }

.note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

/* --- Saturday timeline -------------------------------------------------- */
.timeline {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.slot {
  position: relative;
  padding-left: 32px;
  padding-bottom: 30px;
}
/* the rail connecting one chapter to the next */
.slot::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: -6px;
  width: 2px;
  background: linear-gradient(var(--lavender), var(--sky));
  opacity: 0.55;
}
.slot:last-child { padding-bottom: 4px; }
.slot:last-child::before { display: none; }

.slot-dot {
  position: absolute;
  left: 2px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff 0 12%,
              var(--lavender) 22%, var(--sky) 90%);
  box-shadow: 0 0 0 4px var(--bg);
}

.slot-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px -22px rgba(80, 60, 130, 0.55);
}

.slot-figure {
  margin: 0;
  background: linear-gradient(160deg, var(--surface), var(--surface-sky));
  line-height: 0;
}
.slot-figure img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
}

.slot-body { padding: 16px 18px 18px; }
.slot-when {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
  color: var(--sky-deep);
  margin: 0 0 4px;
}
.slot-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.slot-text { margin: 0; color: var(--text-muted); font-size: 16px; }

.badge {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
}

/* --- Footer (the closing quote) ---------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border-soft);
  text-align: center;
  padding: 32px var(--pad) 40px;
  margin-top: 8px;
}
.footer-flower {
  width: 56px;
  height: 56px;
  display: block;
  margin: 0 auto 14px;
  opacity: 0.9;
}
.quote {
  max-width: 40ch;
  margin: 0 auto;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.45;
  font-style: italic;
  color: var(--text);
  margin: 0 0 10px;
}
.quote cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

/* --- Error pages -------------------------------------------------------- */
.error-page { text-align: center; }
.error-code {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--lavender-deep), var(--sky-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 24px 0 0;
}

/* --- Responsive enhancement -------------------------------------------- */
@media (min-width: 640px) {
  body { font-size: 18px; }
  .lang-label { display: inline; }
  .brand-text { max-width: none; }
  h1 { font-size: 42px; }
  .hero-flower { width: 104px; height: 104px; }

  /* image beside text once there's room */
  .slot-card { display: grid; grid-template-columns: 220px 1fr; }
  .slot-figure img { height: 100%; min-height: 168px; }
  .slot-body { padding: 20px 22px; align-self: center; }
}

@media (min-width: 900px) {
  :root { --pad: 28px; }
  .content { padding-top: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  body { background-attachment: scroll; }
}

/* --- Header tools: language + account ---------------------------------- */
.header-tools { display: inline-flex; align-items: center; gap: 10px; }
.account { display: inline-flex; align-items: center; gap: 8px; }
.account-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  max-width: 22vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-signin {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-strong);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 7px 14px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}
.account-signin:hover { background: var(--surface); }
.signout { margin: 0; }

/* --- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--lavender-deep), var(--sky-deep));
  border: none;
  border-radius: 999px;
  padding: 11px 22px;
  min-height: 44px;
  cursor: pointer;
  box-shadow: 0 6px 18px -8px rgba(124, 99, 192, 0.8);
}
.btn:hover { filter: brightness(1.04); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Larger call-to-action button (the Overview sign-in invite). */
.btn-lg { font-size: 19px; padding: 15px 38px; min-height: 54px; }

/* Centered invite card: heading, text and a big button stacked in the middle. */
.cta-card { text-align: center; }
.cta-card .btn { margin-top: 14px; }

.link-btn {
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-strong);
  background: none;
  border: none;
  padding: 4px 2px;
  cursor: pointer;
}
.link-btn:hover { text-decoration: underline; }
.link-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* --- Slot card as a link ----------------------------------------------- */
.slot-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.slot-card:hover {
  box-shadow: 0 16px 36px -22px rgba(80, 60, 130, 0.75);
  transform: translateY(-2px);
}
.slot-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.slot-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-strong);
}

/* --- Event detail page -------------------------------------------------- */
.backlink { margin: 4px 0 14px; font-size: 15px; }
.backlink a { text-decoration: none; font-weight: 600; }
.event-figure {
  margin: 0 0 18px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, var(--surface), var(--surface-sky));
  line-height: 0;
}
.event-figure img { width: 100%; height: auto; display: block; }

/* Detail body reads as flowing prose, not a box per statement. */
.event-body { margin-top: 10px; }
.event-body p { margin: 0 0 14px; color: var(--text); font-size: 17px; }
.event-body .note { color: var(--text-muted); }
.event-h {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 26px 0 8px;
}
.event-empty { color: var(--text-muted); }

/* A clear, tappable link to a Google Maps location. */
.maplink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent-strong);
  font-weight: 600;
  text-decoration: none;
}
.maplink:hover { background: var(--surface-sky); }
.maplink:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* The "please keep it a surprise" callout on the breakfast page. */
.surprise {
  background: linear-gradient(135deg, var(--surface), #fbeef4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 6px 0 18px;
}
.surprise-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent-strong);
  margin: 0 0 6px;
}
.surprise p { margin: 0; }
.surprise p + p { margin-top: 6px; }

/* --- Comments ----------------------------------------------------------- */
.comments { margin-top: 34px; }
.comments h2 {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
  margin: 0 0 14px;
}
.comment-list { list-style: none; margin: 0 0 18px; padding: 0; }
.comment {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 10px;
}
.comment-meta { margin: 0 0 4px; }
.comment-author { font-weight: 700; font-size: 14px; color: var(--accent-strong); }
.comment-body { margin: 0; color: var(--text); white-space: pre-wrap; }
.comment-empty { color: var(--text-muted); margin: 0 0 16px; }
.comment-signin { color: var(--text-muted); }

/* An admin's answer, nested inside the question it replies to. */
.comment-reply {
  margin: 10px 0 2px 18px;
  padding: 9px 12px;
  border-left: 3px solid var(--lavender);
  background: var(--surface-sky);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.reply-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}
.reply-box { margin-top: 8px; }
.reply-toggle { cursor: pointer; display: inline-block; }
.reply-box[open] .reply-toggle { margin-bottom: 8px; }
.reply-box textarea { width: 100%; }
.reply-box .btn-small { margin-top: 8px; }

/* Alert time (the breakfast start, so nobody misses it). */
.time-alert { color: #c0392b; font-weight: 700; }

/* --- Forms (sign-in, comment, companion) ------------------------------- */
.form { display: block; }
.field { margin-bottom: 16px; }
.field label,
.comment-form label,
.companion-form label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
}
input[type="text"],
input[type="tel"],
textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  min-height: 44px;
}
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}
textarea { resize: vertical; }
.field-help { margin: 6px 0 0; font-size: 13px; color: var(--text-muted); }
.field-error,
.form-errors { color: #b3346a; font-size: 14px; margin: 6px 0 0; }
.form-errors { list-style: none; padding: 0; }
.comment-form { margin-top: 8px; }
.comment-form button { margin-top: 10px; }

/* --- Companions (overview) --------------------------------------------- */
.companion-list { list-style: none; margin: 0 0 14px; padding: 0; }
.companion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-soft);
}
.companion-name { font-weight: 600; }
.companion form { margin: 0; }
.companion-add { display: flex; gap: 8px; align-items: stretch; }
.companion-add input { flex: 1 1 auto; }

/* --- Admin guest table -------------------------------------------------- */
.guestlist-total { color: var(--text) !important; margin: 0 0 12px; font-size: 16px; }
.btn-small { padding: 8px 16px; font-size: 14px; min-height: 38px; }

/* A single grid for the whole list so the Ticket/Swim/Canoe columns line up
   across the header, every guest, and every companion. Five logical cells per
   line: name · ticket · swim · canoe · right side (phone + Sunday action). The
   attribute columns auto-size to their header word, so they fit in any
   language. The last column is capped so a long button wraps instead of
   shoving the columns around. */
.guest-table {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto minmax(6.5em, 9.5em);
  align-items: start;
  column-gap: 10px;
  font-size: 14px;
}

/* full-width hairline under the header and between guests */
.gt-rule {
  grid-column: 1 / -1;
  height: 0;
  border-top: 1px solid var(--border-soft);
  margin: 9px 0;
}

.gt-head {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.gt-name {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 2px 0;
  overflow-wrap: anywhere;
}
.gt-comp {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 14px;
}
.gt-comp::before { content: "↳ "; color: var(--text-muted); }

/* an answer column: the Y/N/– pill, centred under its header */
.gt-col {
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 2px 0;
}
.gt-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75em;
  height: 1.75em;
  padding: 0 0.4em;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-muted);
}

/* right side: phone, then the Sunday button, both right-aligned */
.gt-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 6px;
}
.gt-side form { margin: 0; }
.gt-phone { font-size: 13px; color: var(--text-muted); white-space: nowrap; }
.gt-sunday { font-size: 13px; text-align: right; }
.ans-yes {
  background: linear-gradient(135deg, var(--leaf), #a9cda4);
  border-color: transparent;
  color: #214017;
}
.ans-no {
  background: linear-gradient(135deg, var(--blush), #efb0c7);
  border-color: transparent;
  color: #5c2238;
}
.ans-unknown { background: var(--surface); color: var(--text-muted); }

/* --- Admin activity log ------------------------------------------------- */
.activity-log { margin-top: 32px; }
.activity-log h2 { font-size: 18px; margin: 0 0 12px; }
.activity-list { list-style: none; margin: 0; padding: 0; }
.activity-item {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  border-top: 1px solid var(--border-soft);
  font-size: 14px;
}
.activity-when {
  flex: 0 0 auto;
  color: var(--text-muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.activity-text { color: var(--text); }
.activity-wolf_fail .activity-text { color: var(--text-muted); }

/* --- Day-planning question pills (overview) ----------------------------- */
.qa-card .qa-person {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.qa-card .qa-person:first-of-type { border-top: none; }
.qa-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--text) !important;
  margin: 0 0 10px;
}
.qa-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
}
.qa-q { font-size: 15px; color: var(--text-muted); flex: 1 1 auto; }
.choice {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 6px;
}
.choice-btn {
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  min-width: 56px;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-muted);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.choice-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.choice-yes.is-on {
  background: linear-gradient(135deg, var(--leaf), #a9cda4);
  border-color: transparent;
  color: #214017;
}
.choice-no.is-on {
  background: linear-gradient(135deg, var(--blush), #efb0c7);
  border-color: transparent;
  color: #5c2238;
}

/* --- Weather card (canoe page) ----------------------------------------- */
.weather {
  background: linear-gradient(135deg, var(--surface-sky), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 18px 0;
}
.weather-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.weather-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.weather-place { font-size: 14px; color: var(--text-muted); text-transform: capitalize; }
/* Hourly strip for the party Saturday; the slots stretch to fill the card. */
.weather-hours {
  display: flex;
  gap: 5px;
  margin-top: 12px;
}
.weather-hour {
  /* stretch the slots so the row fills the full width of the card */
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 8px 3px;
}
.weather-hour-time { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.weather-hour-icon { font-size: 22px; line-height: 1.5; }
.weather-hour-temp { font-size: 15px; font-weight: 700; }
.weather-hour-rain { font-size: 11px; color: var(--sky-deep); margin-top: 2px; white-space: nowrap; }
.weather-hour-mm { font-size: 11px; color: var(--text-muted); }
.weather-note { font-size: 13px; color: var(--text-muted); margin: 10px 0 0; }
.weather.is-loading .weather-hours { opacity: 0.5; }
