/* Weather sidebar widget — compact */
.sidebar-panel--weather {
    background: linear-gradient(180deg, #fffdf8 0%, #f8fafc 100%);
}

.weather-widget__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.weather-widget__item {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
    padding: 5px 0;
    border-bottom: 1px solid #ebe4d8;
    font-size: 13px;
    line-height: 1.2;
}

.weather-widget__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.weather-widget__icon {
    font-size: 15px;
    line-height: 1;
    text-align: center;
}

.weather-widget__city {
    font-weight: 800;
    color: #17120f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.weather-widget__temp {
    font-weight: 900;
    color: #9a3412;
    font-size: 13px;
    white-space: nowrap;
}
