.dc-card-fe210d8b {
	position: relative;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
}

.dc-image-wrapper-fe210d8b {
	width: 100%;
	height: 300px;
	overflow: hidden;
	clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
	background-color: #e8fdf2;
}

.dc-image-wrapper-fe210d8b img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transform: scale(1);
	transition: transform 0.4s ease;
}

.dc-card-fe210d8b:hover .dc-image-wrapper-fe210d8b img {
	transform: scale(1.08);
}

/* ── Icon ────────────────────────────────────────────────────── */
.dc-icon-fe210d8b {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 2;
	line-height: 1;
}

.dc-icon-fe210d8b i {
	font-size: 32px;
	color: #0b7a42;
}

.dc-icon-fe210d8b svg {
	width: 32px;
	height: 32px;
	fill: #0b7a42;
}

/* ── Content ─────────────────────────────────────────────────── */
.dc-content-fe210d8b {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex-grow: 1;
}

.dc-title-fe210d8b {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
}

.dc-subtitle-fe210d8b {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 500;
	color: #64748b;
}

.dc-desc-fe210d8b {
	margin: 0;
	line-height: 1.6;
	color: #475569;
}

.dc-link-fe210d8b {
	margin-top: 8px;
	text-decoration: none;
	font-weight: 600;
	color: #3b82f6;
	align-self: flex-start;
}

.dc-link-fe210d8b:hover {
	text-decoration: underline;
}

/* ── Carousel mode ───────────────────────────────────────────── */
.dc-carousel-fe210d8b {
	position: relative;
}

.dc-carousel-fe210d8b .swiper-wrapper {
	align-items: stretch;
}

.dc-carousel-fe210d8b .swiper-slide {
	height: auto;
}

.dc-carousel-fe210d8b .swiper-slide .dc-card-fe210d8b {
	height: 100%;
}

/* Navigation wrapper */
.dc-nav-wrapper-fe210d8b {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 15px;
	padding-top: 20px;
	padding-right: 4px;
}

/* Pagination */
.dc-carousel-fe210d8b .swiper-pagination {
	position: static !important;
	bottom: auto !important;
	width: auto !important;
	display: flex;
	align-items: center;
	gap: 8px;
}

.dc-carousel-fe210d8b .swiper-pagination-bullet {
	background: #0b7a42;
	opacity: 1;
	width: 12px;
	height: 12px;
	border-radius: 6px;
	margin: 0 !important;
	transition: width 0.25s ease, background 0.25s ease;
	flex-shrink: 0;
}

.dc-carousel-fe210d8b .swiper-pagination-bullet-active {
	background: #064e2b;
	width: 30px;
}

/* Arrows */
.dc-carousel-fe210d8b .swiper-button-next,
.dc-carousel-fe210d8b .swiper-button-prev {
	position: static !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	margin: 0 !important;
	width: 40px;
	height: 40px;
	border: 1px solid #0b7a42;
	border-radius: 50%;
	color: #0b7a42;
	flex-shrink: 0;
}

.dc-carousel-fe210d8b .swiper-button-next::after,
.dc-carousel-fe210d8b .swiper-button-prev::after {
	font-size: 16px;
}

/* ── Ribbon (Cintillo de progreso) ───────────────────────────────
   Lives outside .dc-carousel-fe210d8b on purpose: Swiper's own
   bundled CSS sets overflow:hidden on .swiper, which would clip a
   ribbon meant to bleed past the carousel's edges. */
.dc-carousel-outer-fe210d8b {
	position: relative;
}

.dc-ribbon-fe210d8b {
	--dc-ribbon-offset: 0px;
	position: absolute;
	top: 50%; /* fallback until JS computes the real gap position */
	left: 50%;
	width: 95vw; /* fallback; overridden by the "Ancho del cintillo" control */
	z-index: 5;
	/* translateX(-50vw) anchors the LEFT edge to the viewport's left edge
	   (x=0) regardless of width — unlike -50%, which is relative to the
	   element's own (changeable) width and would re-center it instead. */
	transform: translateX(-50vw) translateX(-150vw);
	transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
}

.dc-ribbon-fe210d8b.is-visible {
	transform: translateX(-50vw) translateX(0);
	pointer-events: auto;
}

.dc-ribbon-title-fe210d8b {
	margin: 0 0 16px 0;
	padding-left: 24px;
	font-size: 1.75rem;
	font-weight: 700;
	color: #0b7a42;
}

.dc-ribbon-track-fe210d8b {
	display: flex;
	align-items: stretch;
	width: 100%;
	height: 56px;
	background-color: #e5e5e5;
	gap: 4px;
	overflow: hidden;
	box-sizing: border-box;
}

.dc-ribbon-segment-fe210d8b {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex: 0 0 auto;
	height: 56px;
	padding: 0 16px;
	box-sizing: border-box;
	color: #ffffff;
	text-decoration: none;
	overflow: hidden;
}

.dc-ribbon-segment-text-fe210d8b {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.3;
	font-size: 14px;
	font-weight: 600;
}

/* Mobile slider — hidden by default, swapped in below the breakpoint */
.dc-ribbon-swiper-fe210d8b {
	display: none;
	position: relative;
	width: 100%;
}

.dc-ribbon-slide-fe210d8b {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 140px;
	width: 100%;
	padding: 0 24px;
	box-sizing: border-box;
	color: #ffffff;
	text-decoration: none;
	text-align: center;
}

.dc-ribbon-slide-text-fe210d8b {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.3;
	font-size: 16px;
	font-weight: 600;
}

.dc-ribbon-nav-prev-fe210d8b,
.dc-ribbon-nav-next-fe210d8b {
	color: #0b7a42;
}
.dc-ribbon-nav-prev-fe210d8b::after,
.dc-ribbon-nav-next-fe210d8b::after {
	font-size: 18px !important;
	font-weight: 700;
}

@media (max-width: 767px) {
	.dc-ribbon-track-fe210d8b {
		display: none;
	}
	.dc-ribbon-swiper-fe210d8b {
		display: block;
	}
}
