.akc-box {
	display: flex;
	flex-direction: column;
	position: relative;
}
.akcSwiper {
	width: 100%;
}
.akc-item {
	display: flex!important;
	flex-direction: column;
	gap: 4px;
	.akc-item-tmb {
		display: block;
		width: 100%;
		height: 30vh;
		max-height: 318px;
		border-radius:6px;
		overflow: clip;
		margin-bottom: 16px;
		background: #D1E2EC;
	}
	h3 {
		font-weight: 400; 
		font-size: clamp(16px, 1.5vw, 28px); 
	}
	span p {
		font-weight: 400; 
		font-size: clamp(14px, 1vw, 20px);
		line-height: 125%;
		color: darkgrey;
	}
}
.akc-button-next, .akc-button-prev {
	cursor: pointer;
	position: absolute;
	z-index: 1;
	transition: .75s;
}
.akc-button-next:hover, .akc-button-prev:hover {
	transform: scale(.9);
	transition: .75s;
}
.akc-button-next {
	top: 40%;
	right: -80px;
}
.akc-button-prev {
	top: 40%;
	left: -80px;
	img {transform: rotate(180deg);}
}