/*카드뉴스 css*/
.block_slide{
	width: 100%;
	margin: 0 auto;
}
.slider-container {
	background-color: #f6f6f6;
	position: relative;
	width: 100% !important;
	height: 100% !important;
	margin: 0 auto;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slider {
	display: flex;
	transition: transform 0.5s ease-in-out;
	height: 100%;
	align-items: center;
}
.slide {
	min-width: 100%;
	height: 100%;
}
.slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.prev, .next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	cursor: pointer;
	font-size: 20px;
	width: 50px;
	height: 50px;
	z-index: 998;
	pointer-events: auto;
}
.prev svg, .next svg{
	width: 20px;
}
.prev { left: 0 }
.next { right: 0 }
.arrow{
	position: relative;
	width: 20px;
	height: 20px;
	top: 0;
	opacity: 1;
	display: inline-block;
}

.arrow.arR::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M8.5 20.5L17 12 8.5 3.5" stroke="white" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" fill="none"/></svg>') no-repeat center;
	background-size: contain;
}

.arrow.arL::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(180deg);
	width: 20px;
	height: 20px;
	background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M8.5 20.5L17 12 8.5 3.5" stroke="white" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" fill="none"/></svg>') no-repeat center;
	background-size: contain;
}
