/* ============ desktop widgets ============ */
.widgets { display: grid; grid-template-columns: repeat(2, 150px); gap: 16px; width: max-content; }
.widget {
  width: 150px; height: 150px; border-radius: 22px;
  background: rgba(28, 32, 45, .58);
  -webkit-backdrop-filter: blur(28px) saturate(1.6); backdrop-filter: blur(28px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 16px 40px -14px rgba(2, 6, 16, .6), inset 0 1px 0 rgba(255,255,255,.08);
  padding: 14px 15px;
  user-select: none; -webkit-user-select: none;
}
.wg-cal-month { font-size: 12px; font-weight: 700; letter-spacing: .08em; color: #ff6961; margin-bottom: 7px; }
.wg-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px 0;
  font-size: 9.5px; text-align: center; color: var(--frost-70);
  font-variant-numeric: tabular-nums;
}
.wg-cal-grid .dow { color: var(--frost-35); font-weight: 700; font-size: 8.5px; padding-bottom: 2px; }
.wg-cal-grid span { padding: 1.5px 0; border-radius: 50%; }
.wg-cal-grid .today { background: var(--accent); color: #fff; font-weight: 700; }
.wg-weather {
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(120, 180, 255, .35), transparent 60%),
    linear-gradient(165deg, #2c66c4 0%, #1c3f86 60%, #14295c);
  display: flex; flex-direction: column;
}
.wg-city { font-size: 13px; font-weight: 600; color: #fff; }
.wg-temp { font-family: var(--f-display); font-size: 34px; font-weight: 500; color: #fff; line-height: 1.15; }
.wg-cond-ic { width: 18px; height: 18px; color: #ffd479; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin: auto 0 3px; }
.wg-cond { font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,.92); }
.wg-hl { font-size: 11px; color: rgba(255,255,255,.65); font-variant-numeric: tabular-nums; }

/* the Notiva widget — the site's only call to action */
.wg-notiva { grid-column: 1 / -1; width: auto; display: flex; flex-direction: column; gap: 6px; }
.wg-nt-head { display: flex; align-items: center; gap: 8px; }
.wg-nt-icon {
  width: 24px; height: 24px; border-radius: 6.5px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, #6faaea, #3c7ed2 60%, #2f66b4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}
.wg-nt-icon svg { width: 15px; height: 15px; color: #fff; fill: currentColor; }
.wg-nt-name { font-size: 13.5px; font-weight: 700; }
.wg-nt-beta {
  font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--frost-50); border: 1px solid rgba(255,255,255,.18);
  padding: 1.5px 6px; border-radius: 99px;
}
.wg-nt-tag { font-size: 11.5px; color: var(--frost-50); }
.wg-nt-btns { display: flex; gap: 8px; margin-top: 3px; }
.wbtn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  flex: 1; height: 30px; border-radius: 8px;
  font-size: 12px; font-weight: 650; text-decoration: none;
  transition: filter .15s ease, background .15s ease, transform .12s ease;
}
.wbtn:active { transform: scale(.97); }
.wbtn svg { width: 13px; height: 13px; }
.wbtn-primary { background: var(--accent); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.25); }
.wbtn-primary:hover { filter: brightness(1.1); }
.wbtn-glass { background: rgba(255,255,255,.1); color: var(--frost); }
.wbtn-glass:hover { background: rgba(255,255,255,.17); }
.wbtn-glass svg { fill: currentColor; stroke: none; }
.wg-nt-hint {
  display: flex; align-items: center; gap: 6px; margin-top: auto;
  font-size: 10.5px; font-weight: 600; color: var(--accent);
}
.wg-nt-hint .try-arrow { width: 13px; height: 13px; }

