.sanomart-press-mentions {
	margin: 18px 0 22px;
	background: #fff;
	overflow: visible;
}

.sanomart-press-mentions__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 12px;
}

.sanomart-press-mentions__title-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.sanomart-press-mentions__icon {
	line-height: 0;
	flex: 0 0 auto;
}

.sanomart-press-mentions__icon img {
	display: block;
	width: 34px;
	height: 34px;
	object-fit: contain;
}

.sanomart-press-mentions__title {
	margin: 0;
	color: var(--sanomart-primary-dark, #283b91);
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	font-weight: 800;
	line-height: 1.2;
}

.sanomart-press-mentions__view-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--sanomart-primary-dark, #283b91);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.sanomart-press-mentions__view-all span {
	font-size: 28px;
	line-height: 1;
}

.sanomart-press-mentions__content {
	position: relative;
	border: 2px solid #f9a23a;
	border-radius: 18px;
	padding: 20px 40px;
	background: #fff;
}

.sanomart-press-mentions__viewport {
	overflow: hidden;
	width: 100%;
}

.sanomart-press-mentions__track {
	--hotdeal-slide-gap: 32px;
	display: flex;
	gap: var(--hotdeal-slide-gap, 32px);
	align-items: stretch;
	transition: transform 0.4s ease;
	will-change: transform;
}

.sanomart-press-mentions__track > .sanomart-press-card {
	flex: 0 0 var(--hotdeal-item-width, calc((100% - 64px) / 3));
	max-width: var(--hotdeal-item-width, calc((100% - 64px) / 3));
}

.sanomart-press-card.hotdeal-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #111827;
	text-decoration: none;
	overflow: visible;
}

.sanomart-press-card.hotdeal-card:hover .sanomart-press-card__title {
	color: var(--sanomart-primary-dark, #283b91);
}

.sanomart-press-card__media {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9.5;
	border-radius: 0;
	background: #d9d9d9;
	overflow: hidden;
}

.sanomart-press-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sanomart-press-card__fallback {
	display: block;
	width: 100%;
	height: 100%;
	background: #d9d9d9;
}

.sanomart-press-card__title {
	display: -webkit-box;
	margin: 0;
	color: #020617;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.25;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.sanomart-press-card__description {
	display: -webkit-box;
	color: #111827;
	font-size: 0.95rem;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.sanomart-press-mentions__prev,
.sanomart-press-mentions__next {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 48px;
	height: 48px;
	border: 1px solid #cbd5e1;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
	color: var(--sanomart-primary-dark, #283b91);
	cursor: pointer;
	font-size: 0;
	line-height: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transform: translateY(-50%);
}

.sanomart-press-mentions__prev::before,
.sanomart-press-mentions__next::before {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	border-top: 2.5px solid currentColor;
	border-right: 2.5px solid currentColor;
	box-sizing: border-box;
}

.sanomart-press-mentions__prev::before {
	transform: rotate(-135deg);
}

.sanomart-press-mentions__next::before {
	transform: rotate(45deg);
}

.sanomart-press-mentions__prev {
	left: -24px;
}

.sanomart-press-mentions__next {
	right: -24px;
}

.sanomart-press-mentions__prev.is-hidden,
.sanomart-press-mentions__next.is-hidden,
.sanomart-press-mentions__prev:disabled,
.sanomart-press-mentions__next:disabled {
	opacity: 0;
	pointer-events: none;
}

@media (max-width: 767px) {
	.sanomart-press-mentions {
		margin: 14px 0 18px;
	}

	.sanomart-press-mentions__head {
		align-items: flex-start;
	}

	.sanomart-press-mentions__content {
		border-radius: 16px;
		padding: 16px 18px;
	}

	.sanomart-press-mentions__track {
		--hotdeal-slide-gap: 14px;
	}

	.sanomart-press-mentions__track > .sanomart-press-card {
		flex-basis: var(--hotdeal-item-width, 100%);
		max-width: var(--hotdeal-item-width, 100%);
	}

	.sanomart-press-mentions__prev,
	.sanomart-press-mentions__next {
		width: 40px;
		height: 40px;
		font-size: 0;
	}

	.sanomart-press-mentions__prev::before,
	.sanomart-press-mentions__next::before {
		width: 12px;
		height: 12px;
	}

	.sanomart-press-mentions__prev {
		left: -10px;
	}

	.sanomart-press-mentions__next {
		right: -10px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.sanomart-press-mentions__track > .sanomart-press-card {
		flex-basis: var(--hotdeal-item-width, calc((100% - 32px) / 2));
		max-width: var(--hotdeal-item-width, calc((100% - 32px) / 2));
	}
}
