/* TARJETAS CSS - Multisite */
/* Tarjeta horizontal con imagen y tarjeta horizontal solo texto */
.tarjeta-horizontal {
	display: flex;
	flex-direction: row;
	background: #fcfcfd;
	border-radius: 3px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
	transition: transform 0.3s ease;
}

.tarjeta-horizontal:hover {
	transform: translateY(-2px);
}

.tarjeta-img-wrapper {
	flex: 0 0 300px;
	max-width: 300px;
}

.tarjeta-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tarjeta-contenido {
	padding: 25px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.tarjeta-titulo {
	margin: 0 0 10px 0 !important;
	color: #004d71 !important;
	text-transform: none !important;
	font-size: 2.4rem !important;
	letter-spacing: -0.036em;
	font-weight: 500 !important;
	font-family: 'Lato', sans-serif !important;
}

.tarjeta-extracto {
	font-weight: 300;
	margin-bottom: 15px;
}

.tarjeta-enlace {
	text-decoration: none;
	color: #f48d2e;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.tarjeta-enlace:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.tarjeta-horizontal {
		flex-direction: column;
		max-width: 510px !important;
		margin-right: auto;
		margin-left: auto;
		margin-top: 4rem;
	}

	.tarjeta-img-wrapper {
		flex: 0 0 200px;
		max-width: 100%;
	}
}
/* END CSS TARJETAS - Multisite */
