.wptm-stats{
    width:100%;
    max-width:1200px;
    margin:20px auto;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
    box-sizing:border-box;
}

.wptm-stat-card{
    position:relative;
    min-height:112px;
    padding:22px 20px;
    display:flex;
    align-items:center;
    gap:15px;
    box-sizing:border-box;
    overflow:hidden;
    border:1px solid rgba(20,30,45,.08);
    border-radius:18px;
    background:linear-gradient(145deg,#ffffff 0%,#f7f9fc 100%);
    box-shadow:0 10px 30px rgba(20,30,45,.08);
    transition:transform .2s ease,box-shadow .2s ease;
}

.wptm-stat-card:before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:4px;
    background:#222;
    opacity:.9;
}

.wptm-stat-card:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(20,30,45,.12);
}

.wptm-stat-icon{
    width:48px;
    height:48px;
    flex:0 0 48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:#222;
    color:#fff;
    font-size:21px;
    font-weight:700;
    line-height:1;
}

.wptm-stat-content{
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:5px;
}

.wptm-stat-value{
    display:block;
    color:#151922;
    font-size:clamp(20px,2vw,29px);
    font-weight:800;
    line-height:1.05;
    letter-spacing:-.5px;
    word-break:break-word;
}

.wptm-stat-label{
    display:block;
    color:#697386;
    font-size:14px;
    font-weight:600;
    line-height:1.25;
}

@media (max-width:900px){
    .wptm-stats{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:520px){
    .wptm-stats{
        grid-template-columns:1fr;
        gap:12px;
    }

    .wptm-stat-card{
        min-height:92px;
        padding:17px;
        border-radius:15px;
    }

    .wptm-stat-icon{
        width:42px;
        height:42px;
        flex-basis:42px;
        border-radius:12px;
    }
}
