
.pnp-weather-pro{
    width:100%;
    background:#f8f5ef;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    font-family:Arial,sans-serif;
}

.pnp-weather-top{
    background:#453401;
    color:#f8f5ef;
    padding:28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.pnp-city{
    font-size:24px;
    font-weight:bold;
    margin-bottom:10px;
}

.pnp-temp{
    font-size:64px;
    font-weight:bold;
    line-height:1;
}

.pnp-feels{
    margin-top:10px;
    opacity:.85;
}

.pnp-side-info{
    text-align:right;
    font-size:16px;
    line-height:2;
}

.pnp-forecast{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
    padding:24px;
}

.pnp-day{
    background:#ffffff;
    border-radius:18px;
    padding:18px;
    text-align:center;
    box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.pnp-day-name{
    font-weight:bold;
    color:#453401;
    margin-bottom:10px;
}

.pnp-day-temp{
    font-size:28px;
    font-weight:bold;
    color:#2b2b2b;
}

.pnp-day-min{
    color:#777;
    margin-bottom:8px;
}

.pnp-rain{
    color:#453401;
    font-size:14px;
}

@media(max-width:768px){

    .pnp-weather-top{
        padding:20px;
    }

    .pnp-temp{
        font-size:48px;
    }

    .pnp-side-info{
        text-align:left;
        margin-top:20px;
    }

    .pnp-forecast{
        grid-template-columns:repeat(2,1fr);
    }

}
