.mindr-post-slider {
	width: 100%;
	max-width: 100%;
	padding: 0;
}

.mindr-post-slider__viewport {
	width: 100%;
	overflow: hidden;
}

.mindr-post-slider__track {
	display: flex;
	gap: 24px;
	transition: transform 300ms ease;
	will-change: transform;
}

.mindr-post-slider__card {
	box-sizing: border-box;
	flex: 0 0 calc((100% - 48px) / 3);
	min-width: 0;
	background-color: #fff;
	border-radius: 28px 28px 28px 0;
	padding: 10px;
	display: flex;
	flex-direction: column;
}

.mindr-post-slider__card:hover {
	background: #d1e5f1;
	cursor: pointer;
	box-shadow: 0px 14px 14px 0px #00000059;
}

.mindr-post-slider__card:hover .arrow-background {
	border: 0;
	background-image: url(/wp-content/uploads/2024/05/icon-button-latest-arrow-hover.svg);
	background-repeat: no-repeat;
	background-position: 96% 19px;
	padding: 32px 15px 18px 15px;
	;
	font-size: 1.8rem;
	text-decoration: none;
	background-size: 54px;
	background-color: transparent;
	display: block;
	text-transform: uppercase;
	font-weight: 500;
}

.arrow-background:hover {
	text-decoration: none !important;
}

.mindr-post-slider__image-link {
	display: flex;
	flex-direction: column;
	flex: 1;
	text-decoration: none;
}

.mindr-post-slider__image-link:hover {
	text-decoration: none !important;
}

.mindr-post-slider__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 20px;
}

.mindr-post-slider__image--placeholder {
	background: #eee;
}

.mindr-post-slider__arrow.mindr-post-slider__arrow--prev .swiper-navigation-icon {
	transform: rotate(180deg);
}

.mindr-post-slider__content {
	padding-top: 16px;
	display: flex;
	flex-direction: column;
	height: 135px;
	flex: 1;
}

.mindr-post-slider__title {
	margin: 0 10px 0 10px;
	flex: 1;
	color: #1d3b51;
	text-transform: none;
	font-size: 2.3rem;
	font-weight: 400;
}

.mindr-post-slider__title a {
	text-decoration: none;
	color: #1d3b51;
	font-weight: 400;
}

.mindr-post-slider__title a:hover {
	text-decoration: none;
}

.mindr-post-slider__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

.mindr-post-slider__tags a {
	text-decoration: none;
}


/*
 * Navigation
 */

.mindr-post-slider__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 55px;
}

.mindr-post-slider__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	padding: 8px;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.mindr-post-slider__arrow svg {
	width: 100%;
	height: 100%;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mindr-post-slider__arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

/*
 * Pagination bullets
 */

.mindr-post-slider__bullets {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.mindr-post-slider__bullet {
	width: 50px;
	height: 8px;
	padding: 0;
	background: #132533;
	cursor: pointer;
}

.mindr-post-slider__bullet[aria-selected="true"] {
	background: #447c9e;
}

.arrow-background {
	border: 0;
	background-image: url(/wp-content/uploads/2024/05/button-latest-arrow.svg);
	background-repeat: no-repeat;
	background-position: 96% 19px;
	padding: 32px 15px 18px 15px;
	;
	font-size: 1.8rem;
	text-decoration: none;
	background-size: 54px;
	background-color: transparent;
	display: block;
	text-transform: uppercase;
	font-weight: 500;
}

/*
 * Tablet
 */

@media (max-width: 1024px) {

	.mindr-post-slider__card {
		flex-basis: calc((100% - 24px) / 2);
	}

}


/*
 * Mobile
 */

@media (max-width: 767px) {

	.mindr-post-slider__track {
		gap: 16px;
	}

	.mindr-post-slider__card {
		flex-basis: 100%;
	}

}