.lor-icc {
	--lor-icc-cols: 3;
	--lor-icc-gap: 24px;
	position: relative;
	width: 100%;
}

.lor-icc,
.lor-icc * {
	box-sizing: border-box;
}

.lor-icc__viewport {
	overflow: hidden;
	width: 100%;
}

.lor-icc__track {
	display: flex;
	gap: var(--lor-icc-gap);
	transform: translate3d(0, 0, 0);
	transition: transform 320ms ease;
	will-change: transform;
}

.lor-icc__slide {
	flex: 0 0 calc((100% - (var(--lor-icc-gap) * (var(--lor-icc-cols) - 1))) / var(--lor-icc-cols));
	min-width: 0;
}

.lor-icc__card {
	height: 100%;
	overflow: hidden;
	background: #FFF6E7;
	border-radius: 18px;
}

.lor-icc__card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.lor-icc__card-link:hover,
.lor-icc__card-link:focus {
	color: inherit;
	text-decoration: none;
}

.lor-icc__image-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.04);
}

.lor-icc__image-wrap img,
.lor-icc__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lor-icc__content {
	padding: 18px;
}

.lor-icc__title {
	margin: 0 0 8px;
	color: #234B52;
	font-size: 1.15rem;
	line-height: 1.25;
}

.lor-icc__description {
	color: #234B52;
	font-size: 0.95rem;
	line-height: 1.5;
}

.lor-icc__description p {
	margin: 0 0 10px;
}

.lor-icc__description p:last-child {
	margin-bottom: 0;
}

.lor-icc__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 14px;
	padding: 10px 16px;
	border: 0;
	border-radius: 999px;
	background: #295E67;
	color: #FFF6E7;
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.lor-icc__button:hover,
.lor-icc__button:focus {
	background: #CAB5EA;
	color: #234B52;
	text-decoration: none;
}

.lor-icc__button--static {
	cursor: default;
}

.lor-icc__arrows {
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
}

.lor-icc__arrow {
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #FFF6E7;
	color: #234B52;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	transition: opacity 180ms ease, transform 180ms ease;
}

.lor-icc__arrow--prev {
	transform: translateX(-50%);
}

.lor-icc__arrow--next {
	transform: translateX(50%);
}

.lor-icc__arrow:hover,
.lor-icc__arrow:focus {
	opacity: 0.9;
}

.lor-icc__arrow:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.lor-icc__dots[hidden] {
	display: none;
}

.lor-icc__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 18px;
}

.lor-icc__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #CAB5EA;
	cursor: pointer;
	opacity: 0.65;
	transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.lor-icc__dot.is-active {
	background: #295E67;
	opacity: 1;
	transform: scale(1.25);
}

@media (max-width: 1024px) {
	.lor-icc {
		--lor-icc-cols: 2;
	}
}

@media (max-width: 767px) {
	.lor-icc {
		--lor-icc-cols: 1;
	}

	.lor-icc__arrows {
		position: static;
		justify-content: center;
		gap: 12px;
		margin-top: 16px;
		transform: none;
	}

	.lor-icc__arrow--prev,
	.lor-icc__arrow--next {
		transform: none;
	}
}

/* v0.1.1 — botón sobre imagen */
.lor-icc__image-wrap::after {
	content: "";
	pointer-events: none;
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(35, 75, 82, 0.18);
	opacity: 0;
	transition: opacity 180ms ease;
}

.lor-icc__button-overlay {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(100% - 32px);
	max-width: calc(100% - 32px);
	pointer-events: none;
}

.lor-icc__button-overlay .lor-icc__button {
	margin-top: 0;
	pointer-events: auto;
}

.lor-icc--button-image_center .lor-icc__button-overlay {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.lor-icc--button-image_bottom .lor-icc__button-overlay {
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
}

.lor-icc--button-image_top .lor-icc__button-overlay {
	top: 24px;
	left: 50%;
	transform: translateX(-50%);
}

.lor-icc--button-over-image .lor-icc__card-link {
	position: relative;
}

.lor-icc--button-over-image .lor-icc__card-link .lor-icc__button-overlay {
	pointer-events: none;
}

.lor-icc--button-over-image .lor-icc__card-link .lor-icc__button {
	pointer-events: none;
}
