.weather-widget-openmeteo {
    display: flex;
    margin: 0 0 20px;
    padding: 6px 12px;
    width: 100px;
    justify-content: center;
    align-items: center;
    gap: 8px;

    color: var(--color);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;

    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14), 0 0 2px rgba(0, 0, 0, 0.12);
}

.weather-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* SVG-иконка наследует размер контейнера */
.weather-icon svg {
    width: 100%;
    height: 100%;
}

.weather-temp {
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}