/*=========================================
KABAR GAYO RELATED POST
=========================================*/

.kg-related{
    margin-top:18px;
}

.kg-title{
    font-size:20px;
    font-weight:700;
    margin:0 0 16px;
    line-height:1.2;
}

.kg-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.kg-item{
    display:flex;
    flex-direction:column;
}

.kg-thumb{
    display:block;
    overflow:hidden;
    border-radius:6px;
    background:#f5f5f5;
    line-height:0;
}

.kg-thumb img{
    display:block;
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
}

.kg-item:hover .kg-thumb img{
    transform:scale(1.05);
}

.kg-post-title{
    display:block;
    margin-top:4px;
    font-size:15px;
    line-height:1.3;
    font-weight:700;
    color:#111;
    text-decoration:none;
}

.kg-post-title:hover{
    color:#d40000;
}

.kg-post-title{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* Tablet */

@media(max-width:991px){

.kg-grid{

grid-template-columns:repeat(2,1fr);

gap:18px;

}

}

/* Mobile */

@media (max-width:768px){

    .kg-related{
        margin-top:10px;
    }

    .kg-title{
        font-size:18px;
        margin-bottom:12px;
    }

    .kg-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .kg-thumb{
        margin:0;
        line-height:0;
    }

    .kg-thumb img{
        display:block;
        width:100%;
    }

    .kg-post-title{
    display:block;
    margin-top:3px;
    font-size:13px;
    line-height:1.4;
    height:auto !important;
    min-height:auto !important;
    max-height:none !important;
    overflow:visible !important;

        font-weight:700;
        color:#111;
        text-decoration:none;
    }

    .kg-post-title:link,
    .kg-post-title:visited,
    .kg-post-title:hover,
    .kg-post-title:active{
        color:#111 !important;
    }

}