.aero-weather-widget {
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 16px;
    padding: 16px;
    background: #fff;
}

.aero-weather-head {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.aero-weather-now {
    display: flex;
    gap: 8px;
    align-items: center;
}

.aero-weather-temp {
    font-weight: 700;
}

.aero-weather-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.aero-weather-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.aero-weather-day {
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 12px;
    padding: 10px;
}

.aero-weather-date {
    font-weight: 600;
    margin-bottom: 6px;
}

.aero-weather-desc {
    font-size: 13px;
    opacity: .85;
    margin: 6px 0;
}

.aero-weather-mm {
    display: flex;
    gap: 10px;
    font-weight: 600;
}

.aero-weather-min {
    opacity: .6;
}

@media (max-width: 1024px) {
    .aero-weather-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .aero-weather-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}