/* Isolated weather component: do not change the news grid or the old map. */
.bc-weather { --wc-gold:#efd078; --wc-muted:#bfd2c9; container-type:inline-size; min-width:0; border:1px solid #326347; border-top:4px solid #ba9d40; background:radial-gradient(ellipse at 0 0,#215d43 0,transparent 65%),#0b3026; color:#fff; font-family:var(--sans,Arial,sans-serif); }
.bc-weather *, .bc-weather-dialog * { box-sizing:border-box; }
.bc-weather [hidden], .bc-weather-dialog [hidden] { display:none!important; }
.bc-weather-head { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:15px 18px 12px; border-bottom:1px solid #ffffff24; }
.bc-weather-eyebrow { display:block; margin-bottom:4px; color:var(--wc-gold); font-size:10px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.bc-weather .bc-weather-title { color:#fff; font:750 clamp(18px,2vw,23px)/1.1 var(--sans,Arial,sans-serif); margin:0; }
.bc-weather-controls { display:flex; gap:5px; flex:none; }
.bc-weather button { cursor:pointer; font:inherit; }
.bc-weather-controls button { width:32px; height:32px; padding:0; border:1px solid #ffffff45; border-radius:50%; color:#fff; background:#ffffff09; font-size:18px; }
.bc-weather-controls button[data-action="play"] { font-size:12px; }
.bc-weather button:hover { background-color:#ffffff18; }
.bc-weather button:focus-visible, .bc-weather select:focus-visible, .bc-weather a:focus-visible { outline:2px solid var(--wc-gold); outline-offset:3px; }
.bc-weather-filters { display:grid; grid-template-columns:minmax(110px,.8fr) minmax(140px,1.4fr); gap:10px; padding:12px 18px 0; }
.bc-weather-filters label { display:grid; gap:4px; color:var(--wc-muted); font-size:10px; letter-spacing:.07em; text-transform:uppercase; }
.bc-weather-filters select { width:100%; min-width:0; height:32px; padding:4px 25px 4px 9px; border:1px solid #ffffff35; border-radius:4px; background:#123f31; color:#fff; font:12px var(--sans,Arial,sans-serif); }
.bc-weather-filters option { background:#123f31; color:#fff; }
.bc-weather-body { min-height:230px; padding:13px 18px 10px; }
.bc-weather-overview { display:grid; grid-template-columns:minmax(160px,1fr) minmax(230px,1.25fr); gap:18px; align-items:center; min-height:109px; margin-bottom:13px; }
.bc-weather-place { display:flex; gap:10px; align-items:center; }
.bc-weather-place img { width:58px; height:58px; flex:none; }
.bc-weather .bc-weather-city-name { margin:0 0 3px; color:#fff; font:700 15px/1.2 var(--sans,Arial,sans-serif); }
.bc-weather-temperature { color:var(--wc-gold); font-size:42px; font-weight:750; letter-spacing:-.055em; line-height:1.05; }
.bc-weather-temperature small { font-size:20px; font-weight:400; letter-spacing:0; }
.bc-weather-condition { display:block; margin-top:5px; color:#fff; font-size:11px; line-height:1.4; }
.bc-weather-feels { display:block; color:var(--wc-muted); font-size:10px; margin-top:2px; }
.bc-weather-metrics { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px 10px; margin:0; }
.bc-weather-metrics div { min-width:0; }
.bc-weather-metrics dt { color:var(--wc-muted); font-size:10px; line-height:1.35; }
.bc-weather-metrics dd { margin:3px 0 0; color:#fff; font-size:13px; font-weight:650; white-space:nowrap; }
.bc-weather-days { display:grid; grid-auto-flow:column; grid-auto-columns:minmax(74px,1fr); gap:6px; overflow-x:auto; padding-bottom:4px; scrollbar-width:thin; scrollbar-color:#8baa99 transparent; }
.bc-weather-day { display:grid; justify-items:center; gap:3px; padding:8px 4px; color:#fff; background:#ffffff06; border:1px solid #ffffff28; border-radius:5px; min-width:0; }
.bc-weather-day:first-child { border-color:#d2b65d99; background:#ffffff0d; }
.bc-weather-day span { font-size:10px; }
.bc-weather-day img { width:29px; height:29px; }
.bc-weather-day strong { color:var(--wc-gold); font-size:12px; white-space:nowrap; }
.bc-weather-day strong small { color:var(--wc-muted); font-size:11px; font-weight:400; }
.bc-weather-day .bc-weather-rain { color:#b9dce7; font-size:9px; }
.bc-weather-foot { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:6px 12px; min-height:44px; border-top:1px solid #ffffff24; padding:9px 18px; font-size:9px; color:var(--wc-muted); }
.bc-weather-foot a { color:var(--wc-gold); text-decoration:none; }
.bc-weather-foot button, .bc-weather-message button { border:1px solid #ffffff50; border-radius:4px; background:transparent; color:var(--wc-gold); padding:5px 9px; font-size:10px; }
.bc-weather-message { display:grid; align-content:center; justify-items:center; gap:10px; min-height:216px; text-align:center; color:var(--wc-muted); font-size:13px; line-height:1.5; }
.bc-weather-message p { margin:0; }
.bc-weather-slide { animation:bcWeatherIn .32s ease both; }
.bc-weather-warning { color:#f0cc78; }
@keyframes bcWeatherIn { from { opacity:.35; transform:translateX(8px); } to { opacity:1; transform:none; } }
@container (max-width:580px) {
  .bc-weather-head { padding:12px; }
  .bc-weather-filters { padding:10px 12px 0; }
  .bc-weather-body { padding:12px; }
  .bc-weather-overview { grid-template-columns:1fr; gap:12px; }
  .bc-weather-place { gap:12px; }
  .bc-weather-place img { width:48px; height:48px; }
  .bc-weather-temperature { font-size:36px; }
  .bc-weather-metrics { grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; }
  .bc-weather-foot { padding:9px 12px; }
}
@container (max-width:350px) {
  .bc-weather .bc-weather-title { font-size:18px; }
  .bc-weather-controls button { width:29px; height:29px; }
  .bc-weather-head { gap:6px; }
  .bc-weather-filters { grid-template-columns:minmax(100px,.85fr) minmax(0,1fr); }
}
.bc-weather-dialog { --wc-gold:#efd078; --wc-muted:#bfd2c9; width:min(850px,calc(100% - 28px)); max-height:85dvh; margin:auto; padding:0; border:1px solid #c1a251; border-radius:8px; background:#0d3328; color:#fff; font:13px/1.5 var(--sans,Arial,sans-serif); overflow:auto; overscroll-behavior:contain; }
.bc-weather-dialog::backdrop { background:#051810b5; backdrop-filter:blur(3px); }
.bc-weather-dialog-head { display:flex; position:sticky; top:0; z-index:1; align-items:center; justify-content:space-between; padding:16px 20px; background:#0d3328; border-bottom:1px solid #ffffff25; }
.bc-weather-dialog h2 { color:#fff; font:700 20px/1.2 var(--sans,Arial,sans-serif); margin:0; }
.bc-weather-dialog h3 { margin:22px 0 10px; color:#efd078; font-size:14px; }
.bc-weather-dialog button { cursor:pointer; border:1px solid #ffffff45; border-radius:4px; padding:6px 12px; background:#ffffff08; color:#fff; font:inherit; }
.bc-weather-dialog button:focus-visible, .bc-weather-dialog a:focus-visible { outline:2px solid #efd078; outline-offset:2px; }
.bc-weather-dialog button[aria-pressed="true"] { border-color:#efd078; background:#efd07820; color:#efd078; }
.bc-weather-detail-content { padding:15px 20px 22px; }
.bc-weather-detail-tabs { display:flex; overflow:auto; gap:6px; padding-bottom:6px; }
.bc-weather-detail-tabs button { flex:none; }
.bc-weather-detail-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; margin:0; }
.bc-weather-detail-grid dt { color:#bfd2c9; font-size:11px; }
.bc-weather-detail-grid dd { margin:4px 0 0; font-size:14px; }
.bc-weather-hours { display:grid; grid-auto-flow:column; grid-auto-columns:100px; gap:7px; overflow:auto; padding-bottom:10px; scrollbar-width:thin; }
.bc-weather-hour { display:grid; justify-items:center; align-content:start; gap:4px; padding:12px 6px; background:#ffffff06; border:1px solid #ffffff25; border-radius:4px; text-align:center; }
.bc-weather-hour img { width:38px; height:38px; }
.bc-weather-hour span { color:#c7d9d0; font-size:10px; }
.bc-weather-hour strong { color:#efd078; font-size:16px; }
.bc-weather-alert { padding:12px; margin-top:10px; border:1px solid #efd07870; border-radius:4px; }
.bc-weather-alert p { white-space:pre-line; overflow-wrap:anywhere; }
.bc-weather-detail-note { font-size:11px; color:#bfd2c9; }
@media(max-width:600px) {
  .bc-weather-detail-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .bc-weather-dialog-head, .bc-weather-detail-content { padding:14px; }
}
@media(prefers-reduced-motion:reduce) { .bc-weather-slide { animation:none; } }
