:root{
  --bg:#0c0d0f;
  --panel:#111214;
  --text:#f5f6f7;
  --text-dim:#9aa3b2;
  --accent:#c7d2fe;
  --accent-2:#e0e7ff;
  --border:#2a2a2a;
  --line:#1e1e1e;
}

*{box-sizing:border-box}
html,body{min-height:100%}
html{
  scrollbar-gutter:stable both-edges;
  overflow-y:scroll;
}
body{
  margin:0;
  min-height:100dvh;
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  line-height:1.45;
  overflow-x:hidden;
}

.container{max-width:1100px;margin:0 auto;padding:1.25rem 1.5rem}
.sticky-header{
  margin:0 auto;
  padding:1rem 1.5rem;
}
.site-header{
  display:flex;
  flex-direction:column;
  gap:.65rem;
  padding-top:3.2rem;
}
.topbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:10001;
  background:linear-gradient(180deg, rgba(12,13,15,.96), rgba(12,13,15,.9));
  backdrop-filter:saturate(120%) blur(6px);
  border-bottom:1px solid var(--line);
}
.topbar-content{
  max-width:1100px;
  margin:0 auto;
  padding:.65rem 1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.ecosystem-nav{
  display:flex;
  align-items:center;
  gap:.55rem;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.ecosystem-nav a,
.ecosystem-nav .active{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
  font-size:.9rem;
  line-height:1;
  padding:.35rem .45rem;
  border-radius:.45rem;
  white-space:nowrap;
}
.ecosystem-nav a{
  color:var(--text-dim);
  text-decoration:none;
}
.ecosystem-nav a:hover{
  color:var(--text);
  background:rgba(255,255,255,.05);
}
.ecosystem-nav .active{
  color:#9ae6b4;
  background:rgba(72,187,120,.16);
  border:1px solid rgba(72,187,120,.35);
}
.header-controls{
  display:flex;
  gap:.5rem;
  align-items:center;
  margin-left:auto;
  flex:0 0 auto;
  position:relative;
  z-index:2;
}
.icon-btn{
  appearance:none;
  -webkit-appearance:none;
  min-height:36px;
  min-width:36px;
  border:1px solid var(--border);
  border-radius:999px;
  background:var(--panel);
  color:var(--text);
  display:grid;
  place-items:center;
  font-size:.95rem;
  cursor:pointer;
}
.icon-btn:focus-visible{
  outline:2px solid rgba(199,210,254,.7);
  outline-offset:2px;
}
.brand{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
  font-size:1.5rem;
  font-weight:800;
  color:var(--accent);
  text-decoration:none;
}
.brand:hover{color:var(--accent-2)}
.utility-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  margin-top:.2rem;
}
.search-wrap{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  flex:1;
  min-width:min(34rem,100%);
}
.pull-bar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:0;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:0 1rem;
  background:rgba(17,18,20,.9);
  color:var(--text-dim);
  font-size:.78rem;
  z-index:10002;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  transition:height .12s ease;
}
.pull-bar.active{height:40px}
.pull-bar.ready{color:var(--text)}
.theme-picker{position:relative}
.theme-toggle{
  appearance:none;
  -webkit-appearance:none;
  min-height:40px;
  min-width:40px;
  border:1px solid var(--border);
  border-radius:999px;
  background:var(--panel);
  color:var(--text);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.palette-icon{
  position:relative;
  width:18px;
  height:18px;
}
.palette-icon span{
  display:block;
  position:absolute;
  width:8px;
  height:8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
}
.palette-icon span:nth-child(1){left:0;top:2px;background:#7db5ff}
.palette-icon span:nth-child(2){right:0;top:0;background:#88a69a}
.palette-icon span:nth-child(3){left:1px;bottom:0;background:#cf9f6f}
.palette-icon span:nth-child(4){right:1px;bottom:2px;background:#9fb3c9}
.theme-popover{
  position:absolute;
  bottom:calc(100% + .45rem);
  right:0;
  top:auto;
  display:none;
  gap:.45rem;
  flex-wrap:wrap;
  width:190px;
  padding:.5rem;
  border:1px solid var(--border);
  border-radius:.8rem;
  background:var(--panel);
  z-index:30;
}
.theme-popover.open{display:flex}
.theme-swatch{
  width:34px;
  height:34px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.2);
  cursor:pointer;
}
.theme-swatch.active{border-color:var(--accent)}
.sw-dark{background:#0c0d0f}
.sw-mist{background:#edf2f5}
.sw-cedar{background:#1d2a2f}
.sw-sand{background:#efe5d7}
.search-row{display:flex;align-items:stretch;gap:.55rem;flex:1;justify-content:flex-end;position:relative}
.search-refresh-btn{
  min-width:40px;
  min-height:40px;
  flex:0 0 40px;
}
.search-row input{
  width:min(36rem,100%);
  background:var(--panel);
  color:var(--text);
  border:1px solid var(--border);
  border-radius:.6rem;
  padding:.5rem .9rem;
  min-height:34px;
  font-size:16px; /* Prevent iOS zoom-on-focus */
  outline:none;
}
.search-row .btn{
  min-height:34px;
}
.search-row input:focus{border-color:rgba(199,210,254,.65)}
.search-hint{
  margin:0 0 .28rem;
  color:var(--text-dim);
  font-size:.76rem;
  opacity:1;
  max-height:2.2rem;
  overflow:hidden;
  transition:opacity .35s ease, max-height .35s ease, margin-top .35s ease;
}
.search-hint.hidden{
  opacity:0;
  max-height:0;
  margin-top:0;
}
.btn{
  padding:.58rem .92rem;
  min-height:44px;
  border-radius:.6rem;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  color:var(--text);
  font-weight:700;
  cursor:pointer;
}
.btn:hover{background:linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.04))}
.typeahead{
  position:absolute;
  top:calc(100% + .35rem);
  right:0;
  width:min(36rem,100%);
  margin:0;
  padding:0;
  list-style:none;
  border:1px solid var(--border);
  border-radius:.6rem;
  background:var(--panel);
  overflow:hidden;
  display:none;
  z-index:20;
}
.typeahead.open{display:block}
.typeahead li{margin:0}
.typeahead button{
  width:100%;
  text-align:left;
  border:0;
  background:transparent;
  color:var(--text);
  padding:.6rem .75rem;
  border-bottom:1px solid var(--line);
  cursor:pointer;
}
.typeahead li:last-child button{border-bottom:0}
.typeahead button:hover,.typeahead button.active{background:var(--panel)}
.suggest-main{display:block;font-weight:700}
.suggest-sub{display:block;font-size:.84rem;color:var(--text-dim);margin-top:.14rem}

.card{
  margin-top:1rem;
  border:1px solid var(--border);
  border-radius:16px;
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
  padding:1rem;
}
.favorites-row{
  display:flex;
  align-items:center;
  gap:.5rem;
  flex-wrap:wrap;
}
.favorites-note{
  margin:0;
  font-size:.74rem;
  color:var(--text-dim);
}
.favorites-list{
  display:flex;
  align-items:center;
  gap:.45rem;
  flex-wrap:wrap;
}
.favorite-chip{
  display:flex;
  align-items:center;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.04);
  border-radius:999px;
}
.favorite-chip-main{
  border:0;
  background:transparent;
  color:var(--text);
  padding:.42rem .62rem .42rem .72rem;
  font-size:.88rem;
  cursor:pointer;
}
.favorite-chip-remove{
  border:0;
  border-left:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.02);
  color:var(--text-dim);
  padding:.42rem .52rem;
  font-size:.86rem;
  cursor:pointer;
}
.favorite-chip:hover{background:rgba(255,255,255,.08)}
.favorite-chip-remove:hover{color:#ffd5d5;background:rgba(255,120,120,.12)}
.favorite-chip.active{
  border-color:rgba(199,210,254,.6);
  background:rgba(199,210,254,.18);
  color:#eef3ff;
}
.favorite-add{
  min-height:38px;
  padding:.45rem .7rem;
  font-size:.86rem;
}
.btn:focus-visible,
.favorite-chip-main:focus-visible,
.favorite-chip-remove:focus-visible,
.typeahead button:focus-visible,
.day-tile:focus-visible,
.search-row input:focus-visible{
  outline:2px solid rgba(199,210,254,.8);
  outline-offset:2px;
}

.hero{text-align:center;padding:1.4rem 1rem 1.25rem}
.hero__emoji{line-height:1;margin-bottom:.45rem}
.hero__emoji img{
  width:118px;
  height:118px;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.45));
}
.hero__title{margin:0;font-size:clamp(1.4rem,2.5vw,2rem)}
.hero__tools{
  margin-top:.55rem;
  display:flex;
  justify-content:center;
  gap:.55rem;
  flex-wrap:wrap;
}
.hero__meta-row{
  margin-top:.45rem;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  flex-wrap:wrap;
}
.hero__meta{margin:0;color:var(--text-dim)}
.hero__extras{
  margin:.45rem 0 0;
  color:var(--text-dim);
  font-size:.9rem;
}
.at-glance-wrap{
  margin-top:.75rem;
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:.7rem;
}
.at-glance-title{
  margin:0 0 .45rem;
  text-align:left;
  font-size:.9rem;
}
.at-glance-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:.5rem;
}
.at-glance-item{
  border:1px solid rgba(255,255,255,.12);
  border-radius:11px;
  background:rgba(255,255,255,.03);
  padding:.45rem .5rem;
}
.at-glance-k{
  display:block;
  color:var(--text-dim);
  font-size:.7rem;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.at-glance-v{
  display:block;
  margin-top:.1rem;
  font-weight:700;
}
.refresh-btn{
  min-height:36px;
  padding:0 .65rem;
  display:inline-flex;
  align-items:center;
  gap:.35rem;
}
.refresh-icon{
  width:16px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.section-title{margin:0 0 .7rem;font-size:1rem;color:var(--text-dim);text-transform:uppercase;letter-spacing:.05em}
.hourly-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.7rem;
  margin-bottom:.28rem;
}
.hourly-toggle{
  min-height:34px;
  padding:.35rem .65rem;
  font-size:.8rem;
}
.hourly-summary{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.4rem;
  margin:.35rem 0 .55rem;
}
.hourly-summary-item{
  border:1px solid rgba(255,255,255,.1);
  border-radius:10px;
  background:rgba(255,255,255,.03);
  padding:.38rem .5rem;
}
.hourly-summary-k{
  font-size:.72rem;
  color:var(--text-dim);
  text-transform:uppercase;
  letter-spacing:.04em;
}
.hourly-summary-v{
  margin-top:.12rem;
  font-size:.86rem;
  font-weight:700;
}
.hourly-row{
  display:flex;
  gap:.55rem;
  overflow-x:auto;
  padding-bottom:.25rem;
}
.hourly-scroll-wrap{
  position:relative;
}
.hourly-scroll-hint{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  appearance:none;
  -webkit-appearance:none;
  font-size:.78rem;
  color:var(--text-dim);
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:999px;
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
  opacity:.9;
  transition:opacity .2s ease;
  cursor:pointer;
}
.hourly-scroll-hint.hidden{
  opacity:0;
  pointer-events:none;
}
.hourly-scroll-hint.left{left:-8px}
.hourly-scroll-hint.right{right:-8px}
.hourly-scroll-hint:focus-visible{
  outline:2px solid rgba(199,210,254,.8);
  outline-offset:2px;
}
.hourly-row.collapsed{display:none}
.hourly-row::-webkit-scrollbar{height:8px}
.hourly-row::-webkit-scrollbar-thumb{background:rgba(255,255,255,.2);border-radius:999px}
.hourly-item{
  min-width:84px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  background:rgba(255,255,255,.03);
  padding:.5rem .45rem;
  text-align:center;
}
.hourly-time{font-size:.78rem;color:var(--text-dim)}
.hourly-icon img{
  width:30px;
  height:30px;
  margin:.2rem auto;
  display:block;
}
.hourly-temp{font-weight:700;font-size:.92rem}
.hourly-rain{font-size:.75rem;color:var(--text-dim)}

.moon-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.7rem;
  margin-bottom:.28rem;
}
.moon-toggle{
  min-height:34px;
  padding:.35rem .65rem;
  font-size:.8rem;
}
.moon-row{
  display:flex;
  gap:.55rem;
  overflow-x:auto;
  padding-bottom:.25rem;
}
.moon-scroll-wrap{position:relative}
.moon-row.collapsed{display:none}
.moon-row::-webkit-scrollbar{height:8px}
.moon-row::-webkit-scrollbar-thumb{background:rgba(255,255,255,.2);border-radius:999px}
.moon-item{
  min-width:170px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  background:rgba(255,255,255,.03);
  padding:.55rem .55rem;
  text-align:left;
}
.moon-date{
  font-size:.83rem;
  font-weight:700;
  color:var(--accent);
  margin-bottom:.2rem;
}
.moon-art{
  width:52px;
  height:52px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.04);
  display:grid;
  place-items:center;
  font-size:1.45rem;
  margin:.12rem 0 .35rem;
}
.moon-k{font-size:.78rem;color:var(--text-dim);text-transform:uppercase;letter-spacing:.05em}
.moon-v{margin-top:.18rem;font-weight:800;font-size:1.02rem}
.moon-sub{margin-top:.15rem;font-size:.78rem;color:var(--text-dim)}
.moon-sub-strong{
  color:var(--text);
  font-size:.86rem;
  font-weight:700;
  margin-top:.08rem;
  margin-bottom:.12rem;
}

.extended-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.7rem;
  margin-bottom:.45rem;
}
.extended-toggle{
  min-height:34px;
  padding:.35rem .65rem;
  font-size:.8rem;
}
.extended-hint{
  margin:.15rem 0 .2rem;
  color:var(--text-dim);
  font-size:.84rem;
}
.extended-grid{
  margin-top:.25rem;
}
.extended-grid.collapsed{
  display:none;
}
.extended-day-tile{
  cursor:default;
}
.extended-day-tile:hover{
  transform:none;
}
.extended-empty{
  margin:.35rem 0 0;
  grid-column:1 / -1;
  color:var(--text-dim);
  font-size:.86rem;
}

.forecast-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:.65rem}
.day-tile{
  width:100%;
  appearance:none;
  text-align:left;
  color:inherit;
  font:inherit;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  background:rgba(255,255,255,.03);
  padding:.7rem;
  cursor:pointer;
  transition:border-color .18s ease, background .18s ease, transform .15s ease;
}
.day-tile:hover{
  border-color:rgba(255,255,255,.26);
  background:rgba(255,255,255,.06);
  transform:translateY(-1px);
}
.day-tile.active{
  border-color:rgba(199,210,254,.6);
  background:rgba(199,210,254,.12);
}
.day-name{font-weight:700;color:var(--accent)}
.day-date{
  margin-top:.05rem;
  font-size:.78rem;
  color:var(--text-dim);
}
.day-emoji{line-height:1.1;margin:.25rem 0 .3rem}
.day-emoji img{
  width:52px;
  height:52px;
  display:block;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.35));
}
.day-temp{font-size:1.05rem;font-weight:700}
.day-detail{font-size:.86rem;color:var(--text-dim);margin-top:.2rem}

.narrative p,#narrativeText p{margin:.45rem 0 0;color:var(--text);font-size:1.01rem}
.narrative-block{
  padding:.55rem .6rem;
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  background:rgba(255,255,255,.02);
  margin-top:.55rem;
}
.narrative-block h3{
  margin:0;
  font-size:.78rem;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:var(--text-dim);
}

.definitions .def-list{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  justify-content:center;
}
.definitions .def-panel{
  border:0;
}
.definitions .def-panel summary{
  cursor:pointer;
  list-style:none;
}
.definitions .def-panel summary::-webkit-details-marker{display:none}
.definitions .def-item{
  display:inline-flex;
  align-items:center;
  padding:.45rem .75rem;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,.02);
  color:var(--text);
  font-size:1.03rem;
  font-weight:600;
  text-decoration:none;
}
.definitions .def-item:hover{
  color:var(--accent);
  border-color:rgba(199,210,254,.4);
  text-decoration:none;
}

.fineprint{
  margin:1rem auto 2rem;
  max-width:1100px;
  border-top:1px solid var(--line);
  padding:1rem 1.5rem 0;
  text-align:center;
  color:var(--text-dim);
  font-size:.8rem;
  position:relative;
}
.fineprint-sources{
  display:block;
  max-width:820px;
  margin:0 auto .7rem;
  line-height:1.45;
}
.footer-about-row{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:.6rem;
  flex-wrap:wrap;
  margin-top:.25rem;
}
.footer-refresh{
  font-size:.78rem;
  padding:.3rem .5rem;
  border:1px solid var(--line);
  border-radius:.5rem;
  background:rgba(255,255,255,.04);
}
.footer-refresh:hover{color:var(--text);border-color:var(--border)}
.footer-ascii{
  margin-left:0;
  border:0;
  background:transparent;
  color:var(--text-dim);
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
  font-size:.72rem;
  letter-spacing:.04em;
  text-transform:lowercase;
  cursor:pointer;
}
.footer-ascii:hover{color:var(--text)}
.fineprint a{color:inherit;text-decoration:underline dotted}
.about-panel{
  margin:.65rem auto 0;
  max-width:560px;
  text-align:left;
  border:1px solid var(--line);
  border-radius:.6rem;
  background:rgba(255,255,255,.02);
  padding:.45rem .6rem;
}
.about-panel summary{
  cursor:pointer;
  font-weight:700;
  color:var(--text);
  list-style:none;
}
.about-panel summary::-webkit-details-marker{display:none}
.about-panel p{
  margin:.5rem 0 0;
  color:var(--text-dim);
  font-size:.76rem;
}
.footer-controls{
  display:flex;
  align-items:center;
  gap:.45rem;
  flex-wrap:wrap;
  justify-content:center;
  max-width:100%;
  margin-top:0;
}
.status-badge{
  border:1px solid var(--border);
  border-radius:999px;
  padding:.35rem .55rem;
  font-size:.72rem;
  line-height:1;
  background:var(--panel);
  color:var(--text-dim);
}
.status-ok{
  border-color:rgba(72,187,120,.45);
  color:#9ae6b4;
}
.status-degraded{
  border-color:rgba(245,158,11,.55);
  color:#fcd34d;
}
.unit-toggle{
  min-height:40px;
  min-width:54px;
  border:1px solid var(--border);
  border-radius:999px;
  background:var(--panel);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
}
.unit-toggle-top{
  min-height:36px;
  min-width:auto;
  padding:.35rem .65rem;
}
.unit-toggle:focus-visible{
  outline:2px solid rgba(199,210,254,.8);
  outline-offset:2px;
}
.icon-style-toggle{
  min-height:40px;
  border:1px solid var(--border);
  border-radius:999px;
  padding:.35rem .65rem;
  background:var(--panel);
  color:var(--text);
  font-size:.75rem;
  font-weight:700;
  cursor:pointer;
}
.icon-style-toggle-top{
  min-height:36px;
}
.search-refresh-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.2rem;
}
.refresh-text{
  display:none;
  font-size:.7rem;
}
.icon-style-toggle:focus-visible{
  outline:2px solid rgba(199,210,254,.8);
  outline-offset:2px;
}
.footer-theme-picker{
  position:relative;
}
body[data-icon-style="mono"] .hero__emoji img,
body[data-icon-style="mono"] .day-emoji img,
body[data-icon-style="mono"] .hourly-icon img{
  filter:grayscale(1) contrast(1.08) brightness(1.04) drop-shadow(0 8px 18px rgba(0,0,0,.35));
}
.visually-hidden{
  position:absolute!important;
  height:1px;width:1px;
  overflow:hidden;
  clip:rect(1px,1px,1px,1px);
  white-space:nowrap;
}
.skip-link{
  position:absolute;
  left:-9999px;
  top:0;
  z-index:1000;
  background:#fff;
  color:#000;
  border-radius:.4rem;
  padding:.45rem .65rem;
  text-decoration:none;
}
.skip-link:focus{
  left:.7rem;
  top:.6rem;
}

@media (prefers-reduced-motion: reduce){
  .day-tile{
    transition:none;
  }
}

@media (max-width:900px){
  .forecast-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:640px){
  .container{padding:1rem .9rem}
  .site-header{align-items:stretch;padding-top:3rem}
  .topbar-content{padding:.5rem .9rem}
  .header-controls{justify-content:flex-end;width:auto}
  .ecosystem-nav{
    width:100%;
    justify-content:flex-start;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    padding-bottom:.1rem;
    flex-wrap:nowrap;
  }
  .utility-row{align-items:stretch}
  .search-wrap{align-items:stretch;min-width:100%}
  .favorites-row{
    display:flex;
    width:100%;
  }
  .favorites-list{
    width:100%;
  }
  .favorites-note{
    width:100%;
    margin-top:0;
  }
  .theme-popover{
    right:0;
    left:auto;
    width:min(220px, 92vw);
  }
  .search-row{
    width:100%;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    align-items:center;
    gap:.45rem;
  }
  .search-refresh-btn{
    display:flex;
    min-width:100%;
    border-radius:.6rem;
  }
  .refresh-text{
    display:inline;
  }
  .search-row input{
    width:100%;
    min-height:46px;
    grid-column:1 / -1;
  }
  #searchBtn,
  #useMyLocationBtn{
    width:100%;
    min-width:0;
  }
  .at-glance-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .btn{
    width:auto;
    min-width:110px;
  }
  .theme-picker{
    justify-self:start;
  }
  .typeahead{position:static;width:100%;margin-top:.1rem}
  .favorite-add{width:auto}
  .forecast-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .extended-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .hero__emoji img{width:100px;height:100px}
  .day-tile{padding:.65rem}
  .hourly-summary{
    grid-template-columns:1fr;
  }
  #hourlyCard{padding-bottom:1.15rem}
  .footer-controls{
    position:static;
    margin:.35rem auto 0;
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
  }
}
