div.info-slider {
	--is-accent: #960a19;
	--is-accent-soft: rgba(150, 10, 25, 0.28);
	--is-text: #323439;
	--is-muted: #414141;
	--is-gap: 20px;
	--is-visible: 4;
	--is-radius: 6px;
	--is-ratio: 1 / 1;
	--is-transition: 0.55s cubic-bezier(0.4, 0, 0.2, 1);

	position: relative;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

div.info-slider *,
div.info-slider *::before,
div.info-slider *::after {
	box-sizing: border-box;
}

div.info-slider .info-slider__viewport {
	width: 100%;
	overflow: hidden;
}

div.info-slider .info-slider__track {
	display: flex;
	align-items: stretch;
	gap: var(--is-gap);
	will-change: transform;
	transition: transform var(--is-transition);
}

div.info-slider .info-slider__slide {
	flex: 0 0 calc((100% - (var(--is-gap) * (var(--is-visible) - 1))) / var(--is-visible));
	width: calc((100% - (var(--is-gap) * (var(--is-visible) - 1))) / var(--is-visible));
	min-width: 0;
}

div.info-slider .info-slider__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	width: 100%;
	height: 100%;
	min-width: 0;
	text-align: left;
}

div.info-slider .info-slider__media {
	display: block;
	width: 100%;
	aspect-ratio: var(--is-ratio);
	margin: 0 0 18px;
	border-radius: var(--is-radius);
	overflow: hidden;
	background-color: #d9d4cf;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

div.info-slider .info-slider__media--placeholder {
	background-color: #d9d4cf;
}

div.info-slider .info-slider__title {
	margin: 0 0 8px;
	font-family: Ahellya, Georgia, "Times New Roman", serif;
	font-size: 24px;
	font-weight: 400;
	font-style: italic;
	line-height: 1.1;
	color: var(--is-text);
}

div.info-slider .info-slider__text {
	font-family: "TikTok Sans", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.45;
	color: var(--is-muted);
}

div.info-slider .info-slider__text p {
	margin: 0;
	margin-block-end: 12px !important;
}

div.info-slider .info-slider__text p:last-child {
	margin-block-end: 0 !important;
}

div.info-slider .info-slider__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin-top: 38px;
}

div.info-slider .info-slider__progress {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	height: 1px;
	background: var(--is-accent-soft);
}

div.info-slider .info-slider__progress-fill {
	display: block;
	width: 0;
	height: 100%;
	background: var(--is-accent);
	transition: width var(--is-transition);
}

div.info-slider .info-slider__nav {
	display: flex;
	flex-shrink: 0;
	gap: 10px;
}

div.info-slider .info-slider__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	padding: 0;
	border: 1px solid var(--is-accent);
	border-radius: 50%;
	background: transparent !important;
	background-color: transparent !important;
	color: var(--is-accent);
	cursor: pointer;
	opacity: 1;
	box-shadow: none;
	transition: opacity 0.2s ease;
}

div.info-slider .info-slider__arrow:hover:not(:disabled):not([aria-disabled="true"]),
div.info-slider .info-slider__arrow:focus-visible:not(:disabled):not([aria-disabled="true"]),
div.info-slider .info-slider__arrow:active:not(:disabled):not([aria-disabled="true"]) {
	background: transparent !important;
	background-color: transparent !important;
	color: var(--is-accent);
	outline: none;
	box-shadow: none;
}

div.info-slider .info-slider__arrow:disabled,
div.info-slider .info-slider__arrow[aria-disabled="true"] {
	opacity: 0.35;
	cursor: default;
}

@media (max-width: 1199px) {
	div.info-slider {
		--is-visible: 2;
	}
}

@media (max-width: 767px) {
	div.info-slider {
		--is-visible: 1;
		--is-gap: 16px;
	}

	div.info-slider .info-slider__title {
		font-size: 22px;
	}

	div.info-slider .info-slider__footer {
		margin-top: 24px;
		gap: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	div.info-slider .info-slider__track,
	div.info-slider .info-slider__progress-fill {
		transition: none;
	}
}
