div.weather2-item {
    border: none;
    margin: 0;
    text-align: left;
    background: transparent;
}

div.weather2-item p {
    line-height: 160%;
    font-size: 100%;
    color: rgb(var(--c-neutral-lightest));
}

.weather-data {
    text-align: center;
}

.weather-temp {
    color: rgb(var(--c-neutral-lightest));
    font-size: var(--f-size-l-5);
    white-space: nowrap;
    line-height: 120%;
}

.weather-spacer {
    background: rgb(var(--c-neutral-lightest));
    width: 3px;
    height: 100%;
    content: '';
    display: block;
}

.weather2-item {
    display: grid;
    grid-template-columns: 100px 3px 100px;
    grid-gap: var(--g-gap-s);
    color: rgb(var(--c-neutral-lightest));
    align-items: center;
}

.weather-icon {
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
}

div.weather-icon img {
    width: 100%;
    height: inherit;
    object-fit: contain;
    max-height: 45px;
}

.weather-icon span {
    margin-top: 1rem;
    line-height: 110%;
}

.weather .grid__main {
    display: block;
}

/* =============================================================================
   Media Queries
   ========================================================================== */


@media (min-width: 640px) {
    div.weather-icon img {
        max-height: 60px;
    }
}