.tarjeta_base {
	background: #f5f5f5;
	border-radius: 10px;
	padding: 15px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
	height: 100%; /* para que el alto se estire */
}

.tarjeta_logo img {
	max-width: 100%;
	max-height: 100px;
	object-fit: contain;
	display: block;
	margin: 0 auto 15px;
}

.tarjeta_descripcion {
	flex: 1;
}

.tarjeta_botones {
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tarjeta_botones a {
	background-color: #00bcd4;
	color: white;
	text-align: center;
	padding: 8px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	transition: background 0.2s ease;
}

.tarjeta_botones a:hover {
	background-color: #0097a7;
}