/* 天氣(分館首頁) */
.weather_side {
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 1.5px;
}
.weather-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    letter-spacing: 1.5px;
}

.weather_icon img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.weather_temper {
    font-size: 50px;
    font-weight: 700;
    color: white;
}

.weather-temperature-container {
    display: flex;
}
.weather-unit {
    margin-top: 10px;
    font-size: 20px;
}

@media (max-width: 1579px) {
    .weather_icon {
        font-size: 60px;
    }

    .weather_temper {
        font-size: 40px;
    }
}

@media (max-width: 420px) {
    .weather_icon {
        font-size: 48px;
    }
    .weather_temper {
        font-size: 35px;
    }

    .weather-unit {
        font-size: 15px;
    }
}
