.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16x; }

.row-template {
    display: flex;
    gap: 15px;
}
.row-template .col-pad {
    padding-left: 15px;
    padding-right: 15px;
}
.row-template .col-occupy {
    flex: 1;
}

.article-wrapper {
    margin: 0 40px;
}

.article-snippet__large {
    height: calc(100% - 12px);
    border-bottom: 1px solid #eaebec;
    margin-bottom: 12px;
    padding-bottom: 12px;
}
.article-snippet__large img {
    max-width: 100%;
}
.article-snippet__large h4 {
    font-size: 28px;
}


.article-snippet__small {
    padding-bottom: 12px;
    border-bottom: 1px solid #eaebec;
    margin-bottom: 12px;
}
.article-snippet__small img {
    max-width: 200px;
    max-height: 100%;
}
.article-snippet__small h4 {
    font-size: 22px;
	font-weight: 500;
}

@media (max-width: 1199px) {
    .row-template.md-collapse {
        display: block;
    }

    .article-snippet__small .description p {
        font-size: 14px;
    }

    .home-list .sidebar {
        display: flex;
        justify-content: center;
    }
    .home-list .sidebar .wrapper {
        padding-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .sm-none {
        display: none !important;
    }

    .row-template.sm-collapse {
        display: block;
    }
}

@media (max-width: 767px) {
    .xs-none {
        display:none !important;
    }
    .article-wrapper {
        margin: 0 10px;
    }
}

@media (max-width: 479px) {
    .row-template.xs-collapse {
        display: block;
    }

    .article-snippet__small {
        text-align: center;
    }
    .article-snippet__small div.image {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }
}