.vtk-ppc-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    column-gap:40px;
    row-gap:24px;
    width:100%;
    max-width:1520px;
    margin:0 auto;
}
.vtk-ppc-card{
    display:block;
    min-height:264px;
    background:#fff;
    border:1px solid #dbe3ef;
    border-radius:20px;
    color:inherit;
    text-decoration:none;
    overflow:hidden;
    transition:all .22s ease;
}
.vtk-ppc-card:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 42px rgba(15,23,42,.08);
    border-color:#cbd5e1;
}
.vtk-ppc-card-inner{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    height:100%;
    padding:38px 40px 36px;
    text-align:left;
}
.vtk-ppc-icon-wrap{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:60px;
    height:60px;
    margin-bottom:30px;
    border-radius:14px;
    background:#fef2f2;
    flex:0 0 auto;
}
.vtk-ppc-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#dc2626;
    font-size:28px;
    line-height:1;
}
.vtk-ppc-icon svg{
    display:block;
    width:28px;
    height:28px;
    fill:currentColor;
}
.vtk-ppc-content{
    min-width:0;
}
.vtk-ppc-title{
    margin:0 0 20px;
    color:#0f1f3d;
    font-size:24px;
    line-height:1.18;
    font-weight:850;
    letter-spacing:-.035em;
}
.vtk-ppc-description{
    color:#64748b;
    font-size:16px;
    line-height:1.55;
}
.vtk-ppc-icon-position-left .vtk-ppc-card-inner{
    flex-direction:row;
    gap:24px;
}
.vtk-ppc-icon-position-left .vtk-ppc-icon-wrap,
.vtk-ppc-icon-position-right .vtk-ppc-icon-wrap{
    margin-bottom:0;
}
.vtk-ppc-icon-position-right .vtk-ppc-card-inner{
    flex-direction:row-reverse;
    gap:24px;
    justify-content:space-between;
}
@media (max-width:1024px){
    .vtk-ppc-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;}
}
@media (max-width:767px){
    .vtk-ppc-grid{grid-template-columns:1fr;}
    .vtk-ppc-card-inner{padding:30px 28px;}
}
