/* Wetter */
/* --- FLEX LAYOUT FÜR ALLE GRÖSSEN --- */
.weather-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Boxen */
.weather-box, .weather-info {
    padding: 20px;
    border-radius: 16px;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 280px; /* WICHTIG FÜR HANDY */		
}

/* Aktuelles Wetter */
.weather-current {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 1.3em;
    text-align: left;
    color: #333;
}

.weather-current .icon {
    font-size: 2.8em;
    margin-bottom: 8px;
}

/* Wochenübersicht */
.weather-week {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 18px;
}

.weather-day {
    padding: 14px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: 0.25s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.weather-day:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* --- MOBILE OPTIMIERUNG --- */
@media (max-width: 600px) {
    .weather-row {
        flex-direction: column;
    }
}
