/* Weather Widget — Погода */
.cw-widget{
    background:linear-gradient(135deg,#1e40af 0%,#2563eb 50%,#3b82f6 100%);
    border-radius:12px;overflow:hidden;color:#fff;
    box-shadow:0 4px 16px rgba(37,99,235,0.3);
}

/* Текущая погода */
.cw-current{padding:20px;text-align:center}
.cw-current-top{display:flex;align-items:center;justify-content:center;gap:12px;margin-bottom:4px}
.cw-icon{font-size:48px;line-height:1}
.cw-temp{font-size:3.2rem;font-weight:800;line-height:1}
.cw-text{font-size:16px;font-weight:600;margin-bottom:2px}
.cw-feels{font-size:13px;opacity:0.75;margin-bottom:16px}

.cw-details{
    display:flex;justify-content:center;gap:20px;
    padding-top:14px;border-top:1px solid rgba(255,255,255,0.2);
}
.cw-detail{display:flex;align-items:center;gap:6px;font-size:13px;opacity:0.9}
.cw-detail .fa{font-size:12px;opacity:0.7}

/* Прогноз на неделю */
.cw-forecast{
    display:grid;grid-template-columns:repeat(7,1fr);
    background:rgba(0,0,0,0.15);
}
.cw-day{
    padding:12px 4px;text-align:center;
    border-right:1px solid rgba(255,255,255,0.1);
    font-size:12px;
}
.cw-day:last-child{border-right:none}
.cw-day-name{font-weight:600;margin-bottom:4px;opacity:0.85}
.cw-day-icon{font-size:20px;margin-bottom:4px}
.cw-day-temps{display:flex;justify-content:center;gap:6px}
.cw-day-max{font-weight:700}
.cw-day-min{opacity:0.6}
.cw-day-precip{margin-top:4px;font-size:11px;opacity:0.7;display:flex;align-items:center;justify-content:center;gap:3px}

/* Адаптив */
@media(max-width:480px){
    .cw-forecast{grid-template-columns:repeat(4,1fr)}
    .cw-day:nth-child(n+5){display:none}
    .cw-details{flex-wrap:wrap;gap:12px}
}
