.sd-insights-overview .sd-insight-grid.total-columns-1 {grid-template-columns: 1fr;}
.sd-insights-overview .sd-insight-grid.total-columns-2 {grid-template-columns: 1fr 1fr;}
.sd-insights-overview .sd-insight-grid.total-columns-3 {grid-template-columns: 1fr 1fr 1fr;}
.sd-insights-overview .sd-insight-grid.total-columns-4 {grid-template-columns: 1fr 1fr 1fr 1fr;}

.sd-insights-overview .sd-insight-grid{
    grid-template-columns: 1fr 1fr 1fr 1fr;
    display: grid;
    gap: 30px;
}

.sd-insights-overview a:hover{
    text-decoration: none!important;
}

.sd-insights-overview article figure{
    margin-bottom: 10px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    display: block;
}

.sd-insights-overview article figure img {
    border-radius: 6px;
    object-fit: cover;
    height: 205px;
    width: 100%;
}

.sd-insights-overview article h3 {
    margin-bottom: 0px;
    display: block;
}

.sd-insights-overview article p {
    display: none;
}

.sd-insights-overview article .sd-block-news-buttons {
    justify-content: space-between;
    flex-wrap: wrap;
    display: flex;

}

.sd-insights-overview article .sd-block-news-category span {
    display: inline-block;
    font-size: 14px;
    line-height: 21px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 4px;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: #ec6608;
    color: #ffffff;
}

.sd-insights-overview article .sd-block-news-buttons i {
    transition: color .3s ease;
    color: #202020;
}

.sd-insights-overview article .sd-block-news-buttons i:hover {
    transition: color .3s ease;
    color: #ec6608;
}

.sd-insights-overview .sd-pagination {
    margin-top: 40px;
}

@media screen and (max-width: 767px) {

    .sd-insights-overview .sd-insight-grid.total-columns-1 {grid-template-columns: 1fr;}
    .sd-insights-overview .sd-insight-grid.total-columns-2 {grid-template-columns: 1fr;}
    .sd-insights-overview .sd-insight-grid.total-columns-3 {grid-template-columns: 1fr;}
    .sd-insights-overview .sd-insight-grid.total-columns-4 {grid-template-columns: 1fr;}

    .sd-insights-overview .sd-insight-grid{
        grid-template-columns: 1fr;
        display: grid;
        gap: 30px;
    }

}