:root {
  color-scheme: dark;
  --background: #080c12;
  --panel: #151c27;
  --surface: #0d1118;
  --chart-surface: #0d1118;
  --control: #121a25;
  --control-hover: #18263a;
  --card: #10151e;
  --chart-grid: #293141;
  --chart-muted: #8d98aa;
  --chart-text: #e7edf7;
  --chart-day-band: rgba(88, 166, 255, .1);
  --chart-night-band: rgba(0, 0, 0, .68);
  --chart-night-cutout: #080c12;
  --chart-hour-grid: rgba(154, 164, 178, .1);
  --chart-day-separator: rgba(154, 164, 178, .72);
  --chart-axis-background: rgba(13, 17, 24, .86);
  --chart-temperature-label-outline: rgba(5, 9, 15, .92);
  --chart-wind: #0f151e;
  --chart-wind-flow: #9bc7d7;
  --line: #2c3748;
  --text: #e7edf7;
  --muted: #8d98aa;
  --blue: #58a6ff;
  --cyan: #56d7e5;
  --green: #45cf88;
  --orange: #f28e3e;
  --red: #ff4d5f;
}

:root[data-theme="light"] {
  color-scheme: light;
  --background: #edf3f9;
  --panel: #ffffff;
  --surface: #f5f8fc;
  --chart-surface: #f7faff;
  --control: #f7faff;
  --control-hover: #e7f0fb;
  --card: #f8fbff;
  --line: #cbd7e5;
  --text: #172234;
  --muted: #617086;
  --blue: #176fc1;
  --chart-grid: #cbd7e5;
  --chart-muted: #5c6d83;
  --chart-text: #172234;
  --chart-day-band: rgba(255, 195, 54, .08);
  --chart-night-band: rgba(56, 77, 108, .14);
  --chart-night-cutout: #d9e1eb;
  --chart-hour-grid: rgba(70, 91, 120, .14);
  --chart-day-separator: rgba(70, 91, 120, .58);
  --chart-axis-background: rgba(247, 250, 255, .9);
  --chart-temperature-label-outline: rgba(31, 48, 70, .68);
  --chart-wind: #eef4fa;
  --chart-wind-flow: #486d80;
}

* { box-sizing: border-box; }
html { background: var(--background); }
body { margin: 0; background: var(--background); color: var(--text); font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
button, input, select { font: inherit; }
button { color: inherit; }
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 3px; font-size: clamp(28px, 5vw, 40px); letter-spacing: -.04em; }
h2 { margin-bottom: 2px; font-size: 18px; }

.shell { width: min(1440px, calc(100% - 32px)); margin: 16px auto 48px; }
.topbar, .section-heading, .dialog-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar { margin-bottom: 12px; }
.topbar-actions { display: flex; align-items: center; gap: 7px; }
.location-heading { position: relative; }
.location-title-row { position: relative; display: flex; align-items: center; gap: 8px; }
.location-edit-button { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid transparent; border-radius: 50%; background: transparent; color: var(--muted); font-size: 20px; cursor: pointer; }
.location-edit-button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.location-edit-button:hover, .location-edit-button[aria-expanded="true"] { border-color: var(--line); background: var(--control); color: var(--text); }
.location-menu { position: absolute; z-index: 30; top: calc(100% + 8px); left: 0; width: min(340px, calc(100vw - 32px)); padding: 7px; border: 1px solid var(--line); border-radius: 9px; background: var(--panel); box-shadow: 0 14px 38px rgba(0, 0, 0, .38); }
.location-menu-list { display: grid; gap: 4px; }
.location-menu button { width: 100%; border: 0; border-radius: 6px; padding: 9px 10px; background: transparent; color: var(--text); text-align: left; cursor: pointer; }
.location-menu button:hover { background: var(--control-hover); }
.location-menu-location[aria-current="true"]::before { content: "✓"; display: inline-block; width: 20px; color: var(--blue); }
.location-menu-location:not([aria-current="true"])::before { content: ""; display: inline-block; width: 20px; }
.location-menu-edit { margin-top: 6px; border-top: 1px solid var(--line) !important; border-radius: 0 0 6px 6px !important; color: var(--muted) !important; font-weight: 750; }
.eyebrow { margin-bottom: 5px; color: var(--blue); font: 800 10px/1 ui-monospace, monospace; letter-spacing: .12em; }
.muted { margin-bottom: 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.settings-button, .theme-button, .language-control, .secondary-button, .primary-button, .icon-button, .location-search-row button {
  border: 1px solid var(--line); border-radius: 7px; padding: 8px 11px; background: var(--control); color: var(--text); font-weight: 750; cursor: pointer;
}
.settings-button:hover, .theme-button:hover, .language-control:hover, .secondary-button:hover, .primary-button:hover, .icon-button:hover, .location-search-row button:hover { border-color: var(--blue); }
.theme-button { display: inline-flex; align-items: center; gap: 6px; }
.settings-button { display: inline-flex; align-items: center; gap: 6px; }
.settings-button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.language-control { display: inline-flex; align-items: center; gap: 4px; padding: 4px 7px; }
.language-control select { border: 0; background: transparent; color: var(--text); font-weight: 800; cursor: pointer; }
.primary-button { border-color: var(--blue); background: var(--control); }
.icon-button { width: 34px; height: 34px; padding: 0; font-size: 22px; }

.panel, .metric-card { border: 1px solid var(--line); border-radius: 10px; background: var(--panel); }
.panel { margin-top: 10px; padding: 14px; }
.current-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; }
.metric-card { min-height: 104px; padding: 14px; }
.metric-label { color: var(--muted); font: 800 10px/1 ui-monospace, monospace; letter-spacing: .08em; text-transform: uppercase; }
.metric-value { margin-top: 15px; font: 800 26px/1 ui-monospace, monospace; }
.metric-detail { margin-top: 8px; color: var(--muted); font-size: 11px; }
.weather-symbol { margin-right: 8px; font-family: sans-serif; }
.error-card .metric-value { color: var(--orange); }

.web-promotion { min-height: 76px; margin-top: 10px; overflow: hidden; border: 1px solid var(--promotion-accent, var(--line)); border-radius: 10px; background: var(--promotion-background, var(--panel)); }
.web-promotion-link { display: grid; grid-template-columns: 54px minmax(0, 1fr) auto; align-items: center; gap: 14px; min-height: 76px; padding: 10px 14px; color: var(--text); text-decoration: none; }
.web-promotion-logo { width: 54px; height: 54px; border-radius: 11px; filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .2)); }
.web-promotion-copy { display: grid; gap: 4px; min-width: 0; }
.web-promotion-label { color: var(--promotion-accent, var(--orange)); font: 800 8px/1 ui-monospace, monospace; letter-spacing: .12em; }
.web-promotion-title { font-size: 17px; line-height: 1.1; }
.web-promotion-description { color: var(--muted); font-size: 12px; line-height: 1.35; }
.web-promotion-action { padding: 9px 13px; border: 1px solid color-mix(in srgb, var(--promotion-accent, var(--orange)) 65%, var(--line)); border-radius: 7px; color: var(--promotion-accent, var(--orange)); font-size: 11px; font-weight: 800; white-space: nowrap; }
.web-promotion-link:hover .web-promotion-action { background: color-mix(in srgb, var(--promotion-accent, var(--orange)) 12%, transparent); }
.web-promotion-image-link { display: block; }
.web-promotion-image { display: block; width: 100%; max-height: 180px; object-fit: cover; }

.forecast-heading-tools { display: grid; justify-items: end; gap: 6px; }
.forecast-zoom-controls { display: inline-grid; grid-template-columns: 28px 48px 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); }
.forecast-zoom-controls button { min-height: 25px; border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--muted); font: 800 10px/1 ui-monospace, monospace; cursor: pointer; }
.forecast-zoom-controls button:last-child { border-right: 0; }
.forecast-zoom-controls button:hover { background: var(--control-hover); color: var(--text); }
.forecast-zoom-controls button:disabled { opacity: .28; cursor: not-allowed; }

.forecast-timeline-scroll { margin-top: 10px; overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: var(--chart-surface); overscroll-behavior-inline: contain; scroll-snap-type: x proximity; scrollbar-color: #3b4a60 var(--chart-surface); }
.forecast-chart-y-axes { position: sticky; z-index: 4; left: 0; width: 100%; height: 0; color: var(--muted); font: 700 8px/1 ui-monospace, monospace; pointer-events: none; }
.forecast-chart-y-axis span { position: absolute; top: var(--axis-position); padding: 2px 3px; background: var(--chart-axis-background); white-space: nowrap; transform: translateY(-50%); }
.forecast-chart-y-axis-temperature span { right: 0; }
.forecast-chart-y-axis-temperature .hot { color: #ff263f; }
.forecast-chart-y-axis-temperature .zero { color: #2358c7; }
.forecast-chart-y-axis-temperature .deep-frost { color: #fff; }
:root[data-theme="light"] .forecast-chart-y-axis-temperature .deep-frost { color: #526277; }
.forecast-timeline { position: relative; --forecast-slot-width: 18px; width: max(100%, calc(var(--forecast-slots, 40) * var(--forecast-slot-width) + 116px)); }
.forecast-track { display: grid; grid-template-columns: 52px minmax(0, 1fr); }
.forecast-track + .forecast-track { border-top: 1px solid var(--chart-grid); }
.forecast-track-title { display: grid; min-width: 0; place-items: center; border-right: 1px solid var(--chart-day-separator); background: var(--chart-wind); color: var(--chart-text); }
.forecast-track-title svg { display: block; overflow: visible; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.forecast-sky-symbols { width: 28px; height: 78px; stroke-width: 1.7; }
.forecast-symbol-sun { color: #f0b72d; }
.forecast-symbol-cloud { color: #aeb9c8; fill: color-mix(in srgb, #aeb9c8 16%, transparent); }
.forecast-symbol-rain { color: #58a6ff; fill: color-mix(in srgb, #58a6ff 22%, transparent); }
.forecast-temperature-symbol { display: grid; place-items: center; }
.forecast-temperature-symbol svg { width: 26px; height: 110px; }
.forecast-temperature-symbol .forecast-thermometer-outline { stroke: currentColor; stroke-width: 1.8; }
.forecast-temperature-symbol .forecast-thermometer-scale { stroke: url("#forecastTemperatureScale"); stroke-width: 6; }
.forecast-temperature-symbol .forecast-thermometer-bulb { fill: #fff; stroke: #fff; stroke-width: 1; }
.forecast-wind-symbol { width: 38px; height: 38px; color: var(--chart-wind-flow); stroke-width: 2.2; filter: drop-shadow(0 0 4px color-mix(in srgb, var(--chart-wind-flow) 38%, transparent)); }
.forecast-weather-canvas { display: block; width: 100%; height: 100px; border-bottom: 1px solid var(--chart-grid); background: var(--chart-surface); touch-action: pan-x pan-y; }
#forecastChart { display: block; width: 100%; height: 140px; background: var(--chart-surface); touch-action: pan-x pan-y; }
.forecast-wind-visual { position: relative; height: var(--forecast-wind-height, 46px); overflow: hidden; border-top: 1px solid var(--chart-grid); background: var(--chart-wind); }
.forecast-wind-canvas { display: block; width: 100%; height: 100%; }
.forecast-wind-strip { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(var(--forecast-slots, 40), minmax(0, 1fr)); padding-right: 34px; background: color-mix(in srgb, var(--chart-wind) 30%, transparent); }
.forecast-wind-hour { display: grid; min-width: 0; grid-template-rows: var(--forecast-wind-arrow-row, 24px) var(--forecast-wind-speed-row, 11px); place-items: center; padding: 4px 1px 3px; border-right: 1px solid rgba(154, 164, 178, .1); }
.forecast-wind-hour.new-day { scroll-snap-align: start; }
.forecast-wind-arrow { display: inline-block; font-size: var(--forecast-wind-arrow-size, 19px); font-weight: 900; line-height: var(--forecast-wind-arrow-line, 22px); }
.forecast-wind-speed { color: var(--chart-muted); font: 700 var(--forecast-wind-speed-size, 8px)/1 ui-monospace, monospace; }
.forecast-day-dividers { position: absolute; z-index: 3; inset: 0 34px 0 52px; pointer-events: none; }
.forecast-day-dividers i { position: absolute; top: 0; bottom: 0; border-left: 2px solid var(--chart-day-separator); }

.forecast-guide h2 { margin-bottom: 16px; font-size: 22px; }
.legend-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.legend-card { min-height: 154px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); }
.legend-card strong { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.legend-card p { margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.legend-card p b { color: var(--text); font-weight: 750; }
.legend-preview { display: block; width: 100%; margin-top: 14px; overflow: hidden; border: 1px solid var(--line); border-radius: 7px; background: var(--chart-surface); }
.legend-temperature-preview { height: 110px; }
.legend-feels-preview { height: 110px; }
.legend-sky-preview { height: 100px; }
.legend-wind-preview { height: 68px; background: var(--chart-wind); }
.legend-symbols p .legend-weather-icon { display: inline-block; min-width: 32px; color: #2d94df; font-size: 28px; line-height: 1; text-align: center; vertical-align: -4px; }
.legend-symbols .hail-symbol { color: #9fdcff; text-shadow: 0 0 6px #58a6ff; }
.lightning-symbol { color: #e9a900; font-size: 34px; line-height: 1; text-shadow: 0 0 9px rgba(255, 211, 77, .72); }

.daily-grid { display: grid; grid-template-columns: repeat(10, minmax(150px, 1fr)); gap: 8px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.forecast-day { min-width: 150px; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); }
.forecast-day-heading { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.forecast-day-symbol { font-size: 26px; }
.forecast-day-temperature { margin-top: 10px; font: 800 17px/1 ui-monospace, monospace; }
.forecast-day-detail { margin-top: 8px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.data-attribution { margin-top: 14px; color: var(--muted); font-size: 10px; text-align: center; }
.data-attribution a { color: inherit; }
.privacy-choices { border: 0; padding: 0; background: transparent; color: inherit; font-size: inherit; text-decoration: underline; cursor: pointer; }

.analytics-consent { position: fixed; z-index: 60; right: 16px; bottom: 16px; display: grid; width: min(520px, calc(100% - 32px)); grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 18px; padding: 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--panel); color: var(--text); box-shadow: 0 16px 48px rgba(0, 0, 0, .35); }
.analytics-consent strong { font-size: 13px; }
.analytics-consent p { margin: 6px 0 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.analytics-consent-actions { display: flex; gap: 7px; }

.settings-dialog { width: min(720px, calc(100% - 24px)); max-height: calc(100vh - 32px); padding: 0; overflow: auto; border: 1px solid var(--line); border-radius: 12px; background: var(--panel); color: var(--text); box-shadow: 0 24px 80px rgba(0, 0, 0, .65); }
.settings-dialog::backdrop { background: rgba(4, 7, 12, .8); backdrop-filter: blur(3px); }
.settings-content { padding: 18px; }
.settings-content fieldset { margin: 16px 0 0; border: 1px solid var(--line); border-radius: 8px; padding: 12px; }
.settings-content legend { padding: 0 6px; color: var(--muted); font-size: 11px; font-weight: 800; }
.selected-location { margin-bottom: 10px; font-weight: 800; }
.saved-locations { display: grid; gap: 5px; margin-bottom: 10px; }
.saved-location { display: grid; grid-template-columns: 1fr auto; gap: 5px; }
.saved-location-select, .saved-location-remove { border: 1px solid var(--line); border-radius: 7px; background: var(--surface); color: var(--text); cursor: pointer; }
.saved-location-select { padding: 8px 10px; text-align: left; }
.saved-location-select[aria-pressed="true"] { border-color: var(--blue); background: var(--control-hover); }
.saved-location-remove { width: 38px; color: var(--muted); font-size: 19px; }
.saved-location-remove:hover { border-color: var(--red); color: var(--red); }
.saved-location-remove:disabled { opacity: .35; cursor: not-allowed; }
.location-search-row { display: grid; grid-template-columns: 1fr auto auto; gap: 7px; }
.location-search-row input, .setting-row select, .embed-code-row textarea { min-width: 0; border: 1px solid var(--line); border-radius: 7px; padding: 9px 11px; background: var(--surface); color: var(--text); }
.location-results { display: grid; gap: 5px; margin-top: 8px; }
.location-status { min-height: 16px; margin: 7px 0 0; color: var(--green); font-size: 11px; }
.location-result { padding: 9px 11px; border: 1px solid var(--line); border-radius: 7px; background: var(--surface); color: var(--text); text-align: left; cursor: pointer; }
.location-result:hover, .location-result:focus-visible { border-color: var(--blue); background: var(--control-hover); }
.setting-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid rgba(141, 152, 170, .14); }
.setting-row:last-child { border-bottom: 0; }
.setting-row input { accent-color: var(--blue); }
.unit-switch { display: inline-flex; align-items: center; gap: 7px; font: 800 11px/1 ui-monospace, monospace; }
.unit-switch input { width: 34px; height: 18px; cursor: pointer; }
.temperature-scale-setting { padding: 12px 0 7px; }
.temperature-scale-heading { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.temperature-scale-heading small { color: var(--muted); }
.temperature-scale-slider { position: relative; height: 30px; margin: 0 9px; }
.temperature-scale-gradient { position: absolute; inset: 10px 0 auto; height: 9px; border: 1px solid var(--line); border-radius: 999px; background: linear-gradient(90deg, #fff 0 31%, #7f8996 31% 44.444%, #2358c7 44.444% 64%, #45cf88 64% 74%, #f28e3e 74% 80%, #ff263f 80% 100%); }
.temperature-scale-slider input { position: absolute; inset: 0; width: 100%; height: 30px; margin: 0; appearance: none; background: transparent; pointer-events: none; }
.temperature-scale-slider input::-webkit-slider-thumb { width: 15px; height: 22px; appearance: none; border: 2px solid var(--panel); border-radius: 5px; background: var(--thumb-color, var(--blue)); box-shadow: 0 0 0 1px var(--line), 0 2px 7px rgba(0, 0, 0, .35); cursor: grab; pointer-events: auto; }
.temperature-scale-slider input::-moz-range-thumb { width: 12px; height: 19px; border: 2px solid var(--panel); border-radius: 5px; background: var(--thumb-color, var(--blue)); box-shadow: 0 0 0 1px var(--line), 0 2px 7px rgba(0, 0, 0, .35); cursor: grab; pointer-events: auto; }
.temperature-scale-slider input:disabled::-webkit-slider-thumb { cursor: not-allowed; }
.temperature-scale-slider input:disabled::-moz-range-thumb { cursor: not-allowed; }
.temperature-scale-slider input[data-temperature-threshold="deepFrost"] { --thumb-color: #fff; }
.temperature-scale-slider input[data-temperature-threshold="freezing"] { --thumb-color: #2358c7; }
.temperature-scale-slider input[data-temperature-threshold="mild"] { --thumb-color: #45cf88; }
.temperature-scale-slider input[data-temperature-threshold="warm"] { --thumb-color: #f28e3e; }
.temperature-scale-slider input[data-temperature-threshold="hot"] { --thumb-color: #ff263f; }
.temperature-scale-values { position: relative; height: 25px; margin: 0 9px; color: var(--muted); font: 700 9px/1 ui-monospace, monospace; }
.temperature-scale-values span { position: absolute; left: var(--position); transform: translateX(-50%); white-space: nowrap; }
.settings-help { margin: 0 0 9px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.embed-code-row { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 7px; }
.embed-code-row textarea { width: 100%; resize: vertical; font: 700 10px/1.45 ui-monospace, monospace; }
.copy-status { min-height: 14px; margin: 6px 0 0; color: var(--green); font-size: 11px; }
.settings-error { min-height: 18px; margin: 10px 0 0; color: var(--red); font-size: 12px; }
.dialog-actions { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 14px; }
.settings-autosave { color: var(--muted); font-size: 11px; }

.chart-tooltip { position: fixed; z-index: 40; min-width: 190px; padding: 10px 12px; border: 1px solid rgba(88, 166, 255, .42); border-radius: 8px; background: rgba(12, 18, 27, .96); color: var(--text); box-shadow: 0 12px 35px rgba(0, 0, 0, .55); pointer-events: none; backdrop-filter: blur(8px); }
.chart-tooltip-title { margin-bottom: 7px; color: var(--text); font: 800 11px/1.2 ui-monospace, monospace; }
.chart-tooltip-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 4px; color: var(--muted); font-size: 11px; }
.chart-tooltip-row strong { color: var(--text); font: 750 11px/1 ui-monospace, monospace; white-space: nowrap; }
.chart-tooltip-label { display: flex; align-items: center; gap: 7px; }
.chart-tooltip-label i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; }

:root[data-theme="light"] .chart-tooltip { border-color: rgba(23, 111, 193, .35); background: rgba(255, 255, 255, .97); box-shadow: 0 12px 35px rgba(37, 57, 82, .2); }

[hidden] { display: none !important; }

body.embedded { background: transparent; }
body.embedded .shell { width: 100%; margin: 0; }
body.embedded .topbar, body.embedded .current-grid, body.embedded .daily-panel, body.embedded .web-promotion { display: none; }
body.embedded .forecast-panel { margin: 0; border-radius: 0; }
body.embedded .forecast-guide { margin: 0; border-top: 0; border-radius: 0; }
body.embedded .forecast-heading-tools .muted { display: none; }

@media (max-width: 760px) {
  .current-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .forecast-timeline { --forecast-slot-width: 33px; }
  .legend-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 540px) {
  .shell { width: min(100% - 20px, 1440px); margin-top: 10px; }
  .topbar { align-items: flex-start; }
  .settings-button, .theme-button { padding-inline: 9px; }
  .theme-button span:last-child, .settings-button span + * { display: none; }
  .analytics-consent { grid-template-columns: 1fr; }
  .analytics-consent-actions { justify-content: flex-end; }
  .panel { padding: 10px; }
  .section-heading { align-items: flex-start; }
  .location-search-row { grid-template-columns: 1fr 1fr; }
  .location-search-row input { grid-column: 1 / -1; }
  .legend-grid { grid-template-columns: 1fr; }
  .embed-code-row { grid-template-columns: 1fr; }
  .web-promotion-link { grid-template-columns: 44px minmax(0, 1fr); gap: 10px; padding: 9px 10px; }
  .web-promotion-logo { width: 44px; height: 44px; }
  .web-promotion-description { font-size: 10px; }
  .web-promotion-action { grid-column: 2; justify-self: start; padding: 0; border: 0; }
}
