.dwd-weather{
    width:100%;
    box-sizing:border-box;
    background:#fff;
    border:1px solid #e6e9ee;
    border-radius:14px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    overflow:hidden;
    color:#172033;
    font-family:Tahoma,Arial,sans-serif;
}
.dwd-weather *{box-sizing:border-box}
.dwd-weather-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px 12px;
    background:linear-gradient(135deg,#eef7ff,#f9fbff);
}
.dwd-weather-title{font-size:20px;font-weight:700;line-height:1.5}
.dwd-weather-subtitle{font-size:12px;color:#738096;margin-top:2px}
.dwd-weather-now-icon{font-size:42px;line-height:1}
.dwd-weather-current{
    display:flex;
    align-items:center;
    gap:20px;
    padding:10px 20px 20px;
    background:linear-gradient(135deg,#eef7ff,#f9fbff);
}
.dwd-temp{font-size:54px;font-weight:800;line-height:1}
.dwd-temp span{font-size:30px}
.dwd-current-details{display:flex;flex-direction:column;gap:5px;font-size:12px;color:#647084}
.dwd-current-details strong{font-size:15px;color:#1c2a40}
.dwd-weather-days{
    display:grid;
    grid-template-columns:repeat(8,minmax(105px,1fr));
    overflow-x:auto;
    border-top:1px solid #e7ebf1;
}
.dwd-day{
    min-width:105px;
    text-align:center;
    padding:13px 8px 15px;
    border-left:1px solid #edf0f4;
    transition:.2s;
}
.dwd-day:last-child{border-left:0}
.dwd-day.is-today{background:#f7fbff}
.dwd-day-name{font-size:13px;font-weight:700}
.dwd-day-date{font-size:10px;color:#8a95a6;margin-top:3px}
.dwd-day-icon{font-size:30px;margin:10px 0 5px}
.dwd-day-status{font-size:11px;min-height:30px;color:#566276}
.dwd-day-temp{display:flex;justify-content:center;gap:9px;margin-top:9px}
.dwd-day-temp b{font-size:14px}
.dwd-day-temp span{font-size:12px;color:#8993a2}
.dwd-day-rain,.dwd-day-wind{font-size:10px;color:#6e7888;margin-top:7px}
.dwd-weather-footer{
    display:flex;
    justify-content:space-between;
    gap:10px;
    flex-wrap:wrap;
    padding:10px 14px;
    background:#fafbfc;
    border-top:1px solid #edf0f4;
    color:#8a93a1;
    font-size:9px;
}
.dwd-weather-footer a{color:#68758a;text-decoration:none}
.dwd-weather-footer a:hover{text-decoration:underline}
.dwd-weather-error{padding:20px;text-align:center;color:#8a3340}
@media(max-width:900px){
    .dwd-weather-days{grid-template-columns:repeat(8,105px)}
}
@media(max-width:480px){
    .dwd-weather-head{padding:15px}
    .dwd-weather-current{padding:8px 15px 17px;gap:14px}
    .dwd-temp{font-size:46px}
    .dwd-weather-now-icon{font-size:36px}
}
