.meteo24-fullpage {
    min-height: 100vh;
    padding: clamp(24px, 5vw, 64px);
    box-sizing: border-box;
    background: linear-gradient(135deg, #eef7ff 0%, #ffffff 45%, #eef9f1 100%);
    color: #162033;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.meteo24 * {
    box-sizing: border-box;
}

.meteo24-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 32px;
}

.meteo24-kicker {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    color: #2b6f9f;
    font-size: 14px;
}

.meteo24 h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 72px);
    line-height: 1.02;
}

.meteo24 h2 {
    margin-top: 0;
    font-size: clamp(22px, 3vw, 34px);
}

.meteo24-place {
    margin: 12px 0 0;
    font-size: clamp(17px, 2vw, 24px);
    opacity: .78;
}

.meteo24-current {
    min-width: 190px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 50px rgba(23, 43, 77, .12);
    text-align: center;
}

.meteo24-temp {
    display: block;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 800;
    line-height: 1;
}

.meteo24-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, .85fr);
    gap: 24px;
}

.meteo24-card {
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(80, 120, 150, .16);
    border-radius: 30px;
    padding: clamp(20px, 3vw, 34px);
    box-shadow: 0 18px 50px rgba(23, 43, 77, .11);
}

.meteo24-chart-wrap {
    min-height: 430px;
    position: relative;
}

.meteo24-chart-wrap canvas {
    width: 100% !important;
    height: 430px !important;
}

.meteo24-text p,
.meteo24-text li {
    font-size: 18px;
    line-height: 1.55;
}

.meteo24-text ul {
    padding-left: 20px;
}

.meteo24-hours {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(6, minmax(120px, 1fr));
    gap: 14px;
}

.meteo24-hour {
    border-radius: 22px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(80, 120, 150, .14);
    padding: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(23, 43, 77, .07);
}

.meteo24-hour-time,
.meteo24-hour-temp,
.meteo24-hour-rain {
    display: block;
}

.meteo24-hour-time {
    font-weight: 700;
}

.meteo24-hour-icon {
    display: block;
    font-size: 30px;
    margin: 8px 0;
}

.meteo24-hour-temp {
    font-size: 22px;
    font-weight: 800;
}

.meteo24-hour-rain {
    font-size: 13px;
    opacity: .75;
}

.meteo24-error {
    padding: 20px;
    border-radius: 16px;
    background: #fff3f3;
    color: #8a1f1f;
}

@media (max-width: 980px) {
    .meteo24-header,
    .meteo24-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .meteo24-current {
        width: 100%;
    }

    .meteo24-hours {
        grid-template-columns: repeat(3, minmax(100px, 1fr));
    }
}

@media (max-width: 560px) {
    .meteo24-fullpage {
        padding: 18px;
    }

    .meteo24-hours {
        grid-template-columns: repeat(2, minmax(100px, 1fr));
    }

    .meteo24-chart-wrap,
    .meteo24-chart-wrap canvas {
        height: 340px !important;
        min-height: 340px;
    }
}
