/* ============== Hava & Kar page-scoped styles ==============
 * Extracted from legacy/uludaginfocom-v1/hava-kar.html inline <style>
 * blocks (critical-css + body style). Loaded via apps/web/src/app/
 * layout.tsx so V1's exact CSS rules apply on /tr/hava-kar.
 *
 * Selectors live behind hava-kar specific class names (`.wd-hero`,
 * `.wd-current`, `.wd-7d`, `.wd-hourly`, `.wd-cams`, `.wd-sub`) so they
 * are page-scoped without any ancestor selector. Mobile + tablet
 * breakpoints kept verbatim from V1. *//* ============ Weather page hero ============ */
/* The standardized hero rule (styles.css) forces .crumbs to
   position:absolute !important (top:18px). The weather hero is a simple
   top-aligned stack, so the absolute crumbs landed on top of the h1.
   Restore normal flow so crumbs -> h1 -> lead stack cleanly. Loaded after
   styles.css, so this !important wins the source-order tiebreak. */

/* ============ Big current card ============ */
.wd-current-wrap {
  max-width: 1320px; margin: -52px auto 0; padding: 0 40px;
  position: relative; z-index: 5;
}
.wd-current {
  background: #fff; border: 2px solid var(--u-black); border-radius: 22px;
  overflow: hidden; box-shadow: 0 20px 40px -18px rgba(0,0,0,0.3);
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
}
.wd-current .now-blk {
  background: linear-gradient(180deg, #2C8BB4 0%, #1f6c8e 100%);
  color: #fff; padding: 36px 38px; position: relative; overflow: hidden;
}
.wd-current .now-blk::before {
  /* v2 figurative Snowflake watermark — Claude Design 2026-05-18 */
  content: ''; position: absolute; top: -10px; right: -30px;
  width: 220px; height: 220px; opacity: 0.12;
  background: url('/assets/icons/snowflake.svg') center/contain no-repeat;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.wd-current .now-blk .lbl {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 11px; letter-spacing: 0.22em; color: var(--u-yellow);
}
.wd-current .now-blk .big-t {
  font-family: 'Mark Pro'; font-weight: 900;
  font-size: 144px; line-height: 0.85; letter-spacing: -0.04em;
  margin-top: 6px;
}
.wd-current .now-blk .big-t sup { font-size: 36px; font-weight: 700; vertical-align: 30px; }
.wd-current .now-blk .cond {
  font-family: 'Mark Pro'; font-weight: 700; font-size: 18px;
  margin-top: 6px; color: rgba(255,255,255,0.92);
}
.wd-current .now-blk .sub-meta {
  margin-top: 16px;
  font-family: 'Gotham'; font-size: 13px; color: rgba(255,255,255,0.72);
  display: flex; flex-wrap: wrap; gap: 18px;
}
.wd-current .now-blk .sub-meta strong { color: #fff; font-family: 'Mark Pro'; font-weight: 900; }
.wd-current .now-blk .clock {
  margin-top: 16px;
  background: rgba(0,0,0,0.25); border: 1.5px solid rgba(255,255,255,0.2);
  padding: 8px 14px; border-radius: 999px;
  font-family: 'Mark Pro'; font-weight: 700; font-size: 12px; letter-spacing: 0.14em;
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase;
}
.wd-current .now-blk .clock .d { width: 7px; height: 7px; background: var(--u-yellow); border-radius: 50%; animation: pulse 1.5s infinite; }

.wd-current .snow-blk {
  background: #fff; color: var(--u-black);
  padding: 28px 30px; border-left: 1.5px dashed #DDDDD4;
  display: flex; flex-direction: column;
}
.wd-current .snow-blk .lbl {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 11px; letter-spacing: 0.22em; color: var(--u-muted);
}
.wd-current .snow-blk .big {
  font-family: 'Mark Pro'; font-weight: 900;
  font-size: 76px; line-height: 0.9; color: var(--u-fuchsia); letter-spacing: -0.03em;
  margin-top: 6px;
}
.wd-current .snow-blk .big sup { font-size: 22px; vertical-align: super; color: var(--u-fuchsia); font-weight: 700; }
.wd-current .snow-blk .delta {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 14px; color: var(--u-black); margin-top: 4px;
  display: inline-flex; align-items: center; gap: 6px;
}
.wd-current .snow-blk .delta .ar { color: #1B9E5A; }
.wd-current .snow-blk .quality {
  margin-top: auto;
  background: var(--u-snow); border: 1.5px solid #ECEAE0; border-radius: 12px;
  padding: 12px 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.wd-current .snow-blk .quality .lab {
  font-family: 'Mark Pro'; font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--u-muted);
}
.wd-current .snow-blk .quality .vv {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 14px; color: var(--u-black); letter-spacing: 0.06em;
}
.wd-current .snow-blk .quality .vv .star { color: var(--u-yellow); margin-right: 4px; }

.wd-current .meta-blk {
  background: var(--u-snow);
  border-left: 1.5px dashed #DDDDD4;
  padding: 22px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.wd-current .meta-blk .mi {
  background: #fff; border: 1.5px solid #ECEAE0;
  border-radius: 12px; padding: 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.wd-current .meta-blk .mi .ic {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--u-snow); color: var(--u-fuchsia);
  display: grid; place-items: center;
  border: 1.5px solid #DDDDD4;
  margin-bottom: 4px;
}
.wd-current .meta-blk .mi .ic svg { width: 16px; height: 16px; }
.wd-current .meta-blk .mi .k {
  font-family: 'Mark Pro'; font-weight: 500; font-size: 10px; letter-spacing: 0.16em;
  color: var(--u-muted); text-transform: uppercase;
}
.wd-current .meta-blk .mi .v {
  font-family: 'Mark Pro'; font-weight: 900; font-size: 18px; color: var(--u-black); letter-spacing: -0.01em;
}
.wd-current .meta-blk .mi .v small { font-size: 11px; font-weight: 700; color: var(--u-muted); margin-left: 2px; }

/* ============ Section heading ============ */
.wd-section { padding: 70px 0 0; background: var(--u-snow); }
.wd-section:last-of-type { padding-bottom: 140px; }
/* Always give the cams section bottom breathing room — the last <section> in body is .wd-sub */
.wd-section:has(+ .wd-sub) { padding-bottom: 120px; }
.wd-section .sh {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 24px; gap: 20px;
}
.wd-section .sh .eyebrow {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 11px; letter-spacing: 0.22em; color: var(--u-fuchsia);
  text-transform: uppercase;
}
.wd-section .sh h2 {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 56px; line-height: 0.95; color: var(--u-black);
  letter-spacing: -0.025em; text-transform: uppercase;
  margin: 10px 0 0;
}
.wd-section .sh h2 em { color: var(--u-fuchsia); font-style: italic; }
.wd-section .sh .right-meta {
  font-family: 'Mark Pro'; font-weight: 500; font-size: 11px;
  color: var(--u-muted); letter-spacing: 0.16em; text-transform: uppercase;
}
.wd-section .sh .right-meta strong { color: var(--u-black); }

/* ============ 7 day grid ============ */
.wd-7d {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px;
}
.wd-7d .day {
  background: #fff; border: 2px solid var(--u-black); border-radius: 16px;
  padding: 18px 16px; box-shadow: var(--u-shadow);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 200ms ease;
}
.wd-7d .day:hover { transform: translateY(-3px); }
.wd-7d .day.today { background: var(--u-yellow); }
.wd-7d .day .d {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 13px; letter-spacing: 0.18em;
  color: var(--u-slate); text-transform: uppercase;
}
.wd-7d .day.today .d { color: var(--u-black); }
.wd-7d .day .date {
  font-family: 'Gotham'; font-size: 11px; color: var(--u-muted);
}
.wd-7d .day .ic { font-size: 36px; margin: 6px 0; line-height: 1; }
.wd-7d .day .hi {
  font-family: 'Mark Pro'; font-weight: 900; font-size: 28px;
  color: var(--u-black); letter-spacing: -0.02em;
}
.wd-7d .day .hi small { font-size: 14px; font-weight: 700; vertical-align: super; }
.wd-7d .day .lo {
  font-family: 'Gotham'; font-size: 12.5px; color: var(--u-muted);
}
.wd-7d .day .snow-line {
  padding-top: 10px; border-top: 1.5px dashed #e5e7eb;
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 13px; color: var(--u-blue); letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 4px;
}
.wd-7d .day .snow-line.zero { color: var(--u-muted); font-weight: 500; font-style: normal; }
.wd-7d .day .wind-line {
  font-family: 'Gotham'; font-size: 11px; color: var(--u-slate);
}

/* ============ Hourly chart ============ */
.wd-hourly {
  background: #fff; border: 2px solid var(--u-black); border-radius: 18px;
  padding: 24px 24px; box-shadow: var(--u-shadow);
}
.wd-hourly .head-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.wd-hourly .legend {
  display: flex; gap: 14px;
  font-family: 'Mark Pro'; font-weight: 700; font-size: 11px;
  color: var(--u-muted); letter-spacing: 0.12em; text-transform: uppercase;
}
.wd-hourly .legend .it { display: inline-flex; align-items: center; gap: 5px; }
.wd-hourly .legend .dot { width: 10px; height: 10px; border-radius: 50%; }
.wd-hourly .legend .dot.temp { background: var(--u-fuchsia); }
.wd-hourly .legend .dot.feel { background: var(--u-blue); }
.wd-hourly .legend .dot.snow { background: var(--u-yellow); border: 2px solid var(--u-black); }
/* Bug Report 04.06 — meteogram serileri (yağış mavi bar, rüzgar mor çizgi). */
.wd-hourly .legend .dot.precip { background: #5AA9E6; }
.wd-hourly .legend .dot.wind { background: #7C5CD6; }

.wd-hourly .chart-box {
  position: relative; height: 320px;
}
.wd-hourly .chart-box svg { width: 100%; height: 100%; display: block; }

/* Bug Report 04.06 — yr.no tarzı meteogram: geniş SVG, desktop'ta genişliğe
   oturur; mobilde yatay kaydırmalı (24 saat okunaklı kalsın). */
.wd-hourly .chart-box.meteogram {
  height: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.wd-hourly .chart-box.meteogram svg { width: 100%; height: auto; }
@media (max-width: 768px) {
  .wd-hourly { padding: 16px 14px; }
  .wd-hourly .chart-box.meteogram svg { width: auto; height: 300px; }
}

/* ============ Wind + altitude ============ */
.wd-2col { display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px; }
.wd-altcard {
  background: #fff; border: 2px solid var(--u-black); border-radius: 18px;
  padding: 24px 26px; box-shadow: var(--u-shadow);
  display: flex; flex-direction: column; gap: 16px;
}
.wd-altcard .ttl-row {
  display: flex; justify-content: space-between; align-items: end;
}
.wd-altcard .ttl-row h3 {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 26px; color: var(--u-black);
}
.wd-altcard .alt-list { display: flex; flex-direction: column; gap: 10px; }
.wd-altcard .alt-row {
  display: grid; grid-template-columns: 86px 1fr 80px 78px; gap: 12px; align-items: center;
  padding: 14px 16px; background: var(--u-snow); border-radius: 12px;
  border: 1.5px solid #ECEAE0;
}
.wd-altcard .alt-row .h-tag {
  background: var(--u-black); color: var(--u-yellow);
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 12px; letter-spacing: 0.06em;
  padding: 5px 10px; border-radius: 8px; text-align: center;
}
.wd-altcard .alt-row .nm {
  font-family: 'Mark Pro'; font-weight: 700; font-size: 14px; color: var(--u-black);
}
.wd-altcard .alt-row .temp {
  font-family: 'Mark Pro'; font-weight: 900; font-size: 22px; color: var(--u-black); letter-spacing: -0.02em;
}
.wd-altcard .alt-row .wind {
  font-family: 'Mark Pro'; font-weight: 900; font-size: 14px; color: var(--u-fuchsia); text-align: right;
}
.wd-altcard .alt-row .wind small { font-weight: 700; font-size: 10px; color: var(--u-muted); margin-left: 2px; }

/* Snow Quality + Risk card */
.wd-quality-card {
  background: #0A1622; color: #fff;
  border: 2px solid var(--u-black); border-radius: 18px;
  padding: 24px 26px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--u-shadow);
}
.wd-quality-card h3 {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 22px; color: #fff;
}
.wd-quality-card .risk {
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.18);
  padding: 14px 16px; border-radius: 12px;
}
.wd-quality-card .risk .lab {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 10px; letter-spacing: 0.2em; color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}
.wd-quality-card .risk .lvl {
  font-family: 'Mark Pro'; font-weight: 900;
  font-size: 28px; margin-top: 4px; letter-spacing: -0.02em;
}
.wd-quality-card .risk .lvl .badge {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-style: italic; font-size: 14px; letter-spacing: 0.14em;
  margin-left: 8px; vertical-align: middle;
}
.wd-quality-card .risk .lvl .badge.l1 { background: #1B9E5A; }
.wd-quality-card .risk .lvl .badge.l2 { background: var(--u-yellow); color: var(--u-black); }
.wd-quality-card .risk .lvl .badge.l3 { background: #FF6B35; }
.wd-quality-card .risk .lvl .badge.l4 { background: var(--u-fuchsia); }
.wd-quality-card .risk .lvl .badge.l5 { background: #B91C1C; }
.wd-quality-card .risk .info {
  font-family: 'Gotham'; font-size: 13px; color: rgba(255,255,255,0.78);
  margin-top: 8px; line-height: 1.5;
}
.wd-quality-card .sub-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.wd-quality-card .sub-row .si {
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.18);
  padding: 12px 14px; border-radius: 12px;
}
.wd-quality-card .sub-row .si .k {
  font-family: 'Mark Pro'; font-weight: 500; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.wd-quality-card .sub-row .si .v {
  font-family: 'Mark Pro'; font-weight: 900; font-size: 22px;
  margin-top: 2px; color: var(--u-yellow); letter-spacing: -0.01em;
}

/* ============ Weekly snow chart ============ */
.wd-snow-chart {
  background: #fff; border: 2px solid var(--u-black); border-radius: 18px;
  padding: 24px 26px; box-shadow: var(--u-shadow);
}
.wd-snow-chart .ttl-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.wd-snow-chart .ttl-row .nums {
  display: flex; gap: 18px;
  font-family: 'Mark Pro'; font-weight: 700;
}
.wd-snow-chart .ttl-row .nums div .k {
  font-family: 'Mark Pro'; font-weight: 500; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--u-muted);
}
.wd-snow-chart .ttl-row .nums div .v {
  font-family: 'Mark Pro'; font-weight: 900; font-size: 24px; color: var(--u-black);
}
.wd-snow-chart .ttl-row .nums .acc .v { color: var(--u-fuchsia); }
.wd-snow-chart .chart svg { width: 100%; height: 180px; display: block; }

/* ============ Sun + UV strip ============ */
.wd-sun-strip {
  background: linear-gradient(90deg, #FFE08A 0%, #F5C42F 100%);
  border: 2px solid var(--u-black); border-radius: 18px;
  padding: 20px 24px; box-shadow: var(--u-shadow);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.wd-sun-strip .ss {
  display: flex; flex-direction: column; gap: 4px;
}
.wd-sun-strip .ss .ic {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 2px solid var(--u-black);
  display: grid; place-items: center;
  margin-bottom: 6px;
}
.wd-sun-strip .ss .k {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 11px; letter-spacing: 0.18em; color: var(--u-black);
  text-transform: uppercase;
}
.wd-sun-strip .ss .v {
  font-family: 'Mark Pro'; font-weight: 900; font-size: 26px; color: var(--u-black);
  letter-spacing: -0.02em;
}
.wd-sun-strip .ss .v small {
  font-size: 12px; font-weight: 700; color: var(--u-black); margin-left: 3px;
}
.wd-sun-strip .ss .v .uv-badge {
  display: inline-block; padding: 3px 8px; border-radius: 999px;
  background: var(--u-black); color: var(--u-yellow);
  font-style: italic; font-size: 12px; letter-spacing: 0.1em;
  margin-left: 8px; vertical-align: middle;
}

/* ============ Webcam strip ============ */
.wd-cams { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.wd-cam {
  position: relative; aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  border: 2px solid var(--u-black); border-radius: 14px;
  overflow: hidden; cursor: pointer;
  box-shadow: var(--u-shadow);
}
.wd-cam::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 50%, rgba(0,0,0,0.65) 100%);
}
.wd-cam .nm {
  position: absolute; bottom: 10px; left: 12px;
  color: #fff;
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 14px; letter-spacing: -0.01em; text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.wd-cam .live {
  position: absolute; top: 10px; left: 10px;
  background: var(--u-fuchsia); color: #fff;
  border: 1.5px solid #fff; padding: 3px 8px; border-radius: 999px;
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 9px; letter-spacing: 0.16em;
  display: inline-flex; align-items: center; gap: 4px;
}
.wd-cam .live .d { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: pulse 1.5s infinite; }

/* ============ Subscribe banner ============ */
.wd-sub {
  background: var(--u-black); color: #fff; padding: 70px 0; border-top: 3px solid var(--u-yellow);
}
.wd-sub .wrap-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: center;
}
.wd-sub h2 {
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 64px; line-height: 0.92; color: #fff;
  letter-spacing: -0.025em; text-transform: uppercase;
}
.wd-sub h2 em { color: var(--u-yellow); font-style: italic; }
.wd-sub p { color: rgba(255,255,255,0.7); margin-top: 14px; font-size: 16px; }
.wd-sub .form {
  background: var(--u-yellow); border: 2px solid var(--u-yellow);
  border-radius: 16px; padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.wd-sub .form input {
  background: #fff; color: var(--u-black);
  border: 2px solid var(--u-black); border-radius: 10px;
  padding: 12px 14px; font-family: 'Gotham'; font-size: 14px;
  outline: none; width: 100%;
}
.wd-sub .form button {
  background: var(--u-yellow); color: var(--u-black); border: 2px solid var(--u-yellow);
  padding: 13px 14px; border-radius: 10px; cursor: pointer;
  font-family: 'Mark Pro'; font-weight: 900; font-style: italic;
  font-size: 14px; letter-spacing: 0.14em;
}

/* =========================================================
 * Mobile + tablet cleanup (Burak 2026-05-18)
 * The desktop layout uses tight multi-column grids (3-col wd-current,
 * 2-col hero lead-row, 2-col wd-sub) that collapse messily on narrow
 * viewports. Below 769px everything stacks into a clean 1-column
 * scroll with appropriate type-scale + padding.
 * ========================================================= */
@media (max-width: 768px) {/* Hero — single column, smaller h1, comfortable padding */

  /* Current card overflow — stack 3 blocks */
  .wd-current-wrap { padding: 0 16px; margin-top: -32px; }
  .wd-current {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  .wd-current .now-blk { padding: 24px; }
  .wd-current .now-blk .big-t { font-size: 88px; }
  .wd-current .now-blk .big-t sup { font-size: 24px; vertical-align: 18px; }
  .wd-current .now-blk .cond { font-size: 14px; }
  .wd-current .now-blk .sub-meta { font-size: 12px; gap: 12px; }
  .wd-current .snow-blk {
    border-left: 0;
    border-top: 1.5px dashed #DDDDD4;
    padding: 22px 24px;
  }
  .wd-current .snow-blk .big { font-size: 52px; }
  .wd-current .meta-blk {
    border-left: 0;
    border-top: 1.5px dashed #DDDDD4;
    padding: 18px;
  }

  /* Section heads — stack title + CTA */
  .wd-section { padding: 44px 0 0; }
  .wd-section:last-of-type { padding-bottom: 70px; }
  .wd-section .sh {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .wd-section .sh h2 { font-size: 28px; line-height: 1.1; }

  /* Camera mini-grid — 2-up on tablet, 1-up on phone (below). */
  .wd-cams { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .wd-cam { aspect-ratio: 4/3; }

  /* Newsletter signup (wd-sub) */
  .wd-sub .wrap-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .wd-current .now-blk { padding: 20px; }
  .wd-current .now-blk .big-t { font-size: 72px; }
  .wd-current .now-blk .big-t sup { font-size: 18px; vertical-align: 14px; }
  .wd-current .snow-blk .big { font-size: 44px; }
  .wd-current .meta-blk { grid-template-columns: 1fr 1fr; gap: 8px; }
  .wd-section .sh h2 { font-size: 24px; }
  .wd-cams { grid-template-columns: 1fr; }
}

/* Burak 2026-05-18: 7-gun tahmin mobile — show ~3 cards then horizontal swipe. */
@media (max-width: 768px) {
  .wd-7d {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    /* BUGÜN kartına soldan birkaç px nefes (padding-left 16→24 + scroll-padding).
       Bug Report 04.06. */
    margin: 0 -16px;
    padding: 4px 16px 20px 24px;
    scroll-padding-left: 24px;
  }
  .wd-7d::-webkit-scrollbar { display: none; }
  .wd-7d .day {
    flex: 0 0 calc((100% - 24px) / 3);
    min-width: calc((100% - 24px) / 3);
    scroll-snap-align: start;
    padding: 18px 14px;
  }
}
@media (max-width: 480px) {
  .wd-7d .day {
    flex: 0 0 calc((100% - 24px) / 3);
    min-width: calc((100% - 24px) / 3);
    padding: 16px 12px;
  }
  .wd-7d .day .ic { font-size: 30px; }
  .wd-7d .day .hi { font-size: 24px; }
}
