.category-section {
    position: relative;
	width: 100%;
	padding: 40px 0;
}

.section-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
    width: 100vw;
    height: 100%;
    z-index: 1;
}
.section-bg img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-section .category-title-holder {
    position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 18px;
    z-index: 2;
}
.category-section .category-title {
	margin: 0;
	font-size: 24px;
}
.category-section .category-title-holder .btn {
    white-space: nowrap;
}

.load-more {
	font-size: 0.9rem;
	text-decoration: none;
	color: #0073aa;
}

.category-flex-row {
    position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
    z-index: 2;
}

.large-post-holder {
	flex: 1 1 50%;
	min-width: 300px;
}

.post-large .image-holder img {
	width: 100%;
	height: auto;
	display: block;
}

.post-large .text-holder {
	margin-top: 10px;
}/*
.post-large .title {
    text-transform: uppercase;
}*/

.post-large .published-date {
	font-size: 0.8rem;
	color: #777;
	margin-bottom: 5px;
}

.post-large .title {
	font-size: 1.2rem;
	margin: 0 0 5px;
}

.post-large .post-excerpt {
	font-size: 0.95rem;
	color: #444;
}

.post-large .read-more {
	font-size: 0.85rem;
	color: #083881;
	text-decoration: underline;
}

.small-posts-list {
	flex: 1 1 45%;
	display: flex;
	flex-direction: column;
	gap: 15px;
	min-width: 300px;
}

.post-small {
	display: flex;
	gap: 12px;
}
.category-section .post-small .image-holder a {
    aspect-ratio: 293 / 166;
}

.post-small .image-holder img {
	width: 100px;
	height: auto;
	display: block;
}

.post-small .text-holder {
	flex: 1;
}

.post-small .published-date {
	font-size: 0.75rem;
	color: #888;
}

.post-small .title {
	font-size: 0.95rem;
	margin: 3px 0 6px;
	line-height: 1.3;
}

.post-small .title a {
	text-decoration: none;
	color: #000;
}

.post-small .read-more {
	font-size: 0.8rem;
	color: #083881;
	text-decoration: underline;
}
.category-section .button-holder {
    position: relative;
    margin-top: 30px;
    text-align: center;
    z-index: 2;
}

@media (min-width: 768px) {
    .category-section .category-title {
        font-size: 25px;
    }
    .category-flex-row { gap: 30px; }
    .category-section .button-holder { display: none; }
}
@media (min-width: 1024px) {
    .section-bg { left: -30px; }
    .category-section .category-title-holder {
        width: 51%;
        min-width: 300px;
    }
    .category-section .post-small .image-holder {
        width: 195px;
    }
    .category-section .post-small .text-holder {
        width: calc(100% - 195px);
    }
}
@media (min-width: 1200px) {
    .small-posts-list { gap: 30px; }
    .category-section .category-title {
        font-size: 35px;
    }
    .category-flex-row { gap: 40px; }
    .category-section .post-small .image-holder {
        width: 293px;
    }
    .category-section .post-small .text-holder {
        width: calc(100% - 293px);
    }
    .section-bg { left: -60px; }
}
@media (min-width: 1625px) {
    .section-bg {
        left: calc((1505px / 2) - (100vw / 2));
    }
}
@media (max-width: 1023px) {
    .category-flex-row {
        flex-direction: column;
    }
}
@media (max-width: 767px) {
    .category-section .category-title-holder .btn { display: none; }
	.category-flex-row {
		flex-direction: column;
	}
	.large-post-holder,
	.small-posts-list {
		flex: 1 1 100% !important;
	}
	.post-small {
		flex-direction: row;
	}
}