.container.weather-ica {
    width: 576px;
    height: 384px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-container.weather-ica {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    width: 100%;
    height: 100%;
}

.grid-item.weather {
    grid-column: 1 / 2;
}

.grid-item.ica {
    grid-column: 2 / 3;
}

.weather {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}

.ica {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    padding-right: 0.7rem;
}

.temperature-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.8rem;
}

.temp-icon {
    font-size: var(--font-temp);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.1rem;
    text-shadow: var(--text-shadow);
}

.weather-icon {
    width: 50px;
    height: 50px;
    margin-left: 0.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.temp-range {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin-top: .4rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-shadow: var(--text-shadow);
}

.max-temp,
.min-temp {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.max-temp {
    margin-right: 2rem;
}

.label {
    margin-right: 0.2rem;
    margin-bottom: .1rem;
    font-weight: 600;
}

.temperatureNumber {
    font-size: 1.8rem;
    font-weight: 600;
}

.hour {
    font-size: var(--font-hour);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: var(--text-shadow);
    min-height: 3.2rem;
    line-height: 3.2rem;
}

.title-container.ica {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    text-align: left;
    text-shadow: var(--text-shadow);
    min-height: 2.5rem;
    padding: 0;
}

.ica-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.station {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.station-name {
    font-size: var(--font-station-ica);
    text-shadow: var(--text-shadow);
    margin: 0.2rem 0;
}

.icon {
    width: 1.8rem;
    margin-left: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.weather-line {
    border-bottom: 1px solid var(--text-color);
    width: 100%;
    margin: var(--vertical-gap) 0;
}