/* 天氣(集團頁面+layout ) */
.weather_group {
    position: absolute;
    bottom: 25px;
    left: 0;
}

.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_layout
    > .weather-info
    > .weather-temperature-container
    > .weather-temperature {
    font-size: 35px;
    font-weight: 700;
    color: white;
}

.weather_temper {
    font-size: 50px;
    font-weight: 700;
    color: white;
}

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

.weather_layout
    > .weather-info
    > .weather-temperature-container
    > .weater-layout {
    margin-top: 5px;
    font-size: 15px;
}

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

    .weather_temper {
        font-size: 40px;
    }
}
@media (max-width: 1360px) {
    .weather_layout {
        display: none;
    }
}

@media (max-width: 420px) {
    .weather_icon {
        font-size: 45px;
    }
    .weather_temper {
        font-size: 35px;
    }
    .weather-unit {
        font-size: 15px;
    }
}
