.tr-ficha {
	--tr-ficha-black: #262522;
	--tr-ficha-gray: #655f5d;
	--tr-ficha-gold: #c8a280;
	--tr-ficha-border: #e4ddd6;
	--tr-ficha-white: #fafafa;
	--tr-ficha-radius: 8px;

	background: var(--tr-ficha-white);
	border-radius: var(--tr-ficha-radius);
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(38, 37, 34, 0.09);
	font-family: inherit;
	color: var(--tr-ficha-black);
}

/* ── Media ─────────────────────────────────────────────────── */

.tr-ficha__media {
	width: 100%;
	aspect-ratio: 16 / 9;
	background: var(--tr-ficha-black);
	overflow: hidden;
	position: relative;
}

.tr-ficha__image-wrap {
	width: 100%;
	height: 100%;
	position: relative;
}

.tr-ficha__thumbnail {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	display: block;
}

/* ── Info ──────────────────────────────────────────────────── */

.tr-ficha__info {
	padding: 1.25rem 1.25rem 1.5rem;
	background: #f2ece8;
}

.tr-ficha__data-list {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.tr-ficha__data-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 14px;
	color: #262522;
	line-height: 1.4;
	border-bottom: 1px solid #e7dccf;
	padding-bottom: 12px;
}

.tr-ficha__data-item:last-child {
	border-bottom: 0px;
}

.tr-ficha__data-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	object-fit: contain;
	display: block;
}

.tr-ficha__data-text {
	font-size: 18px;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: -0.1px;
}

.tr-ficha__data-text strong {
	color: var(--tr-ficha-black);
	font-weight: 600;
}

/* ── CTA ───────────────────────────────────────────────────── */

.tr-ficha__cta {
	display: block;
	width: 100%;
	padding: 0.75rem 1rem;
	background: var(--tr-ficha-black);
	color: var(--tr-ficha-white);
	text-align: center;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 999px;
	transition: background 0.18s;
	box-sizing: border-box;
}

.tr-ficha__cta:hover {
	background: #3a3734;
	color: var(--tr-ficha-white);
}
