.vtk-ifc-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
    width:100%;
    max-width:860px;
    margin:0 auto;
}
.vtk-ifc-card{
    display:block;
    min-height:140px;
    background:#fff;
    border:1px solid #dbe3ef;
    border-radius:13px;
    color:inherit;
    text-decoration:none;
    overflow:hidden;
    transition:all .22s ease;
}
.vtk-ifc-card:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 26px rgba(15,23,42,.07);
    border-color:#cbd5e1;
}
.vtk-ifc-card-inner{
    display:flex;
    align-items:flex-start;
    gap:14px;
    height:100%;
    padding:17px 20px;
}
.vtk-ifc-icon-wrap{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    width:24px;
    height:24px;
}
.vtk-ifc-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#2563eb;
    font-size:24px;
    line-height:1;
}
.vtk-ifc-icon svg{
    display:block;
    width:24px;
    height:24px;
    fill:currentColor;
}
.vtk-ifc-content{
    min-width:0;
    text-align:left;
}
.vtk-ifc-title{
    margin:0 0 7px;
    color:#020617;
    font-size:16px;
    line-height:1.25;
    font-weight:850;
    letter-spacing:-.02em;
}
.vtk-ifc-description{
    color:#64748b;
    font-size:14px;
    line-height:2.15;
}
.vtk-ifc-icon-position-top .vtk-ifc-card-inner{
    flex-direction:column;
}
.vtk-ifc-icon-position-right .vtk-ifc-card-inner{
    flex-direction:row-reverse;
    justify-content:space-between;
}
@media (max-width:1024px){
    .vtk-ifc-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:767px){
    .vtk-ifc-grid{grid-template-columns:1fr;}
}
