.meteo-wrapper {
    max-width: 1200px;
    margin: auto;
}

.meteo-cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.meteo-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.meteo-value {
    font-size: 32px;
    font-weight: bold;
}

.meteo-chart-container {
    margin-top: 40px;
}