.kinvestor-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
}
.kinvestor-card{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:18px;
    padding:24px;
    box-shadow:0 6px 20px rgba(0,0,0,.04);
}
.kinvestor-card h2,
.kinvestor-card h3{
    margin:0 0 12px;
    line-height:1.2;
}
.kinvestor-card h2 a,
.kinvestor-card h3 a{
    text-decoration:none;
    color:#1f1f1f;
}
.kinvestor-meta{
    font-size:13px;
    color:#777;
    margin-bottom:12px;
}
.kinvestor-excerpt{
    font-size:15px;
    line-height:1.7;
    color:#444;
}
.kinvestor-row{
    margin-bottom:10px;
    font-size:15px;
    line-height:1.6;
}
.kinvestor-note{
    margin-top:12px;
    font-size:14px;
    color:#666;
    line-height:1.7;
}
.kinvestor-actions{
    margin-top:18px;
}
.kinvestor-button{
    display:inline-block;
    padding:12px 18px;
    border-radius:10px;
    background:#f58220;
    color:#fff !important;
    text-decoration:none;
    font-weight:700;
}
.kinvestor-badges{
    margin-bottom:12px;
}
.kinvestor-badge{
    display:inline-block;
    padding:6px 10px;
    margin-right:8px;
    margin-bottom:8px;
    border-radius:999px;
    background:#f4f4f4;
    font-size:12px;
    font-weight:700;
}
.kinvestor-document-featured{
    padding:32px;
}
@media (max-width:1024px){
    .kinvestor-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}
@media (max-width:767px){
    .kinvestor-grid{
        grid-template-columns:1fr;
    }
}