:root {
	--swiper-pagination-color: var(--blue-color);
	--swiper-pagination-bottom: 0px;
	--swiper-pagination-top: 0px;
	--swiper-pagination-bullet-size: 0px;
	--swiper-pagination-bullet-width: 30px;
	--swiper-pagination-bullet-height: 2px;
	--swiper-pagination-bullet-horizontal-gap: 10px;
}

#multisiteBlogSelector, #multisiteBlogSelector option {
	font-weight: 600;
	text-transform: uppercase;
	border: none;
}

.swiper-all-posts, .swiper-featured-posts {
	display: flex !important;
	flex-direction: column;
	align-items: center;
}

.swiper-all-posts, .swiper-featured-posts {
	margin-bottom: 2rem;
}

.swiper-featured-posts .swiper-control-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	z-index: 1000;
	top: 150px;
	width: 100%;
}

.swiper-all-posts .swiper-control-container {
	position: absolute;
	z-index: 1000;
	top: 150px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.post-item {
	border-bottom: 2px solid var(--dark-blue-color);
	height: auto !important;
	padding-bottom: 1.25rem;
	position: relative;
}

.post__info {
	margin-bottom: 0.25rem;
}

.post__info > p {
	font-family: var(--title-font) !important;
	font-weight: 600;
	font-size: 0.75rem;
	display: flex;
	flex-wrap: wrap;
}

.post__author {
	display: flex;
}

.post__author::before {
	content: url('/app/uploads/2023/08/icon-pen.svg');
	margin-right: 0.25rem;
	display: block;
}

.post__thumbnail {
	height: 300px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 0.5rem;
}

.post__content > h3 {
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}
.post__content > h4 {
	font-weight: 600;
	margin-bottom: 0.5rem;
}
.post__content > p {
	overflow-wrap: anywhere;
}


.post__info .post__commentcount{
	padding-left: 12px;
	display: flex;
	align-items: center;
	font-size: 0.75rem;
}
.post__info .post__commentcount::before{
	content: url('/app/uploads/2023/08/icon-comments-mini.svg');
	margin-right: 0.25rem;
	height: 0.75rem;
}

.swiper-pagination {
	position: unset !important;
}

.swiper-button-prev, .swiper-button-next {
	position: unset !important;
	margin-top: 0 !important;
	display: block;
	transition: transform 300ms ease-in-out;
	width: max-content !important;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
	transform: scale(1.1);
}

.swiper-button-prev::after, .swiper-rtl .swiper-button-next::after, .swiper-button-next::after, .swiper-rtl .swiper-button-prev::after {
	content: '' !important;
}

.swiper-pagination-bullet  {
	border-radius: 0 !important;
}

.swiper-featured-posts {
	position: relative;
}

.swiper-featured-posts .post-item {
	border: none;
}

.swiper-featured-posts .post__thumbnail {
	height: 400px;
}

.swiper-featured-posts .post__info {
	position: absolute;
	left: 0;
	top: 0;
	background-color: var(--white-color);
	padding: 0.5rem;
}


#load-more-data {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
	margin-top: 1rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	cursor: pointer;
}

@media all and (max-width: 768px) {
	:root {
		--swiper-pagination-bullet-width: 10px;
	}

	.post__thumbnail {
		height: 200px;
	}

	.swiper-pagination-bullet {
		margin: 0 5px !important
	}

	.swiper-pagination {
		display: flex;
		overflow-x: auto;
		justify-content: space-evenly;
	}
}
