.an-pc {
	--an-pc-gap: 20px;
	--an-pc-gap-tablet: 18px;
	--an-pc-gap-mobile: 14px;
	--an-pc-card-width: calc(31.25% - 13.75px);
	--an-pc-card-width-tablet: calc(45.4545% - 9.8182px);
	--an-pc-card-width-mobile: calc(90.9091% - 1.2727px);
	position: relative;
	width: 100%;
	max-width: 100%;
}

.an-pc__navigation {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-bottom: 16px;
}

.an-pc__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	color: #17305f;
	background: transparent;
	border: 1px solid currentColor;
	border-radius: 999px;
	cursor: pointer;
	transition:
		color 180ms ease,
		background-color 180ms ease,
		opacity 180ms ease,
		transform 180ms ease;
}

.an-pc__arrow:hover:not(:disabled),
.an-pc__arrow:focus-visible:not(:disabled) {
	color: #fff;
	background-color: #17305f;
	transform: translateY(-1px);
}

.an-pc__arrow:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.an-pc__arrow:disabled {
	opacity: 0.28;
	cursor: not-allowed;
}

.an-pc__arrow svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.an-pc__track {
	display: flex;
	align-items: stretch;
	gap: var(--an-pc-gap);
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 2px 1px 10px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: auto;
	scroll-snap-type: none;
	scrollbar-width: none;
	overscroll-behavior-x: contain;
	-webkit-overflow-scrolling: touch;
	cursor: grab;
	touch-action: pan-y pinch-zoom;
	scrollbar-gutter: stable;
}

.an-pc__track::-webkit-scrollbar {
	display: none;
}

.an-pc__track.is-animating,
.an-pc__track.is-dragging,
.an-pc__track.is-wheel-scrolling {
	scroll-behavior: auto;
	will-change: scroll-position;
}

.an-pc__track.is-dragging {
	cursor: grabbing;
	user-select: none;
}

.an-pc__track:focus-visible {
	outline: 2px solid #3579e8;
	outline-offset: 4px;
	border-radius: 8px;
}

.an-pc__card {
	flex: 0 0 var(--an-pc-card-width);
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 510px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #d8dee9;
	border-radius: 16px;
	scroll-snap-align: start;
	scroll-snap-stop: normal;
}

.an-pc__media {
	position: relative;
	flex: 0 0 auto;
	width: 100%;
	overflow: hidden;
	background: #14285d;
}

.an-pc__media img {
	display: block;
	width: 100%;
	height: auto;
	pointer-events: none;
	-webkit-user-drag: none;
	user-select: none;
}

.an-pc__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 18px;
}

.an-pc__eyebrow {
	margin: 0 0 10px;
	color: #d88b81;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.35;
}

.an-pc__title {
	margin: 0 0 9px;
	color: #151b2d;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
}

.an-pc__description {
	margin: 0;
	color: #333a4b;
	font-size: 13px;
	line-height: 1.55;
}

.an-pc__description > :first-child {
	margin-top: 0;
}

.an-pc__description > :last-child {
	margin-bottom: 0;
}

.an-pc__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 24px;
}

.an-pc__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 8px 16px;
	color: #3579e8;
	background: transparent;
	border: 1px solid #6aa2f3;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transition:
		color 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease,
		transform 180ms ease;
}

.an-pc__button:hover,
.an-pc__button:focus-visible {
	color: #fff;
	background: #3579e8;
	border-color: #3579e8;
	text-decoration: none;
	transform: translateY(-1px);
}

.an-pc__button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.an-pc__dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 7px;
	margin-top: 15px;
}

.an-pc__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	background: #d3d9e4;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	transition:
		width 180ms ease,
		background-color 180ms ease;
}

.an-pc__dot.is-active {
	width: 24px;
	background: #17305f;
}

@media (max-width: 1024px) {
	.an-pc__track {
		gap: var(--an-pc-gap-tablet);
	}

	.an-pc__card {
		flex-basis: var(--an-pc-card-width-tablet);
	}
}

@media (max-width: 767px) {
	.an-pc__navigation {
		margin-bottom: 12px;
	}

	.an-pc__arrow {
		width: 38px;
		height: 38px;
	}

	.an-pc__track {
		gap: var(--an-pc-gap-mobile);
		padding-bottom: 8px;
	}

	.an-pc__card {
		flex-basis: var(--an-pc-card-width-mobile);
	}

	.an-pc__content {
		padding: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.an-pc__arrow,
	.an-pc__button,
	.an-pc__dot {
		transition: none;
	}
}
