.nw-weather {
    font-family: inherit;
    color: inherit;
}

.nw-weather__current {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nw-weather__icon svg {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.nw-weather__location {
    font-size: .85em;
    opacity: .75;
    margin-bottom: 2px;
}

.nw-weather__temp {
    font-size: 2.4em;
    font-weight: 700;
    line-height: 1;
}

.nw-weather__desc {
    font-size: .9em;
    margin-top: 4px;
    text-transform: capitalize;
}

.nw-weather__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 8px;
    font-size: .8em;
    opacity: .8;
}

.nw-weather__forecast {
    display: flex;
    gap: 4px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.2);
    flex-wrap: wrap;
}

.nw-weather__forecast-day {
    flex: 1;
    min-width: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.nw-weather__forecast-label {
    font-size: .75em;
    opacity: .8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.nw-weather__forecast-icon svg {
    width: 28px;
    height: 28px;
}

.nw-weather__forecast-temps {
    font-size: .8em;
    display: flex;
    gap: 4px;
}

.nw-weather__forecast-max {
    font-weight: 600;
}

.nw-weather__forecast-min {
    opacity: .65;
}

.nw-weather--error p {
    font-size: .85em;
    opacity: .7;
}
