/**
 * Plantillas de vacantes (listado, detalle y ejemplos).
 * Cargado desde functions.php; el listado Teamtailor añade estilos en el plugin.
 */

/* Listado: CTA lateral de la tarjeta oculto en móvil (el enlace del título sigue activo). */
@media (max-width: 991px) {
	.vacante-card-acciones {
		display: none;
	}
}

/* Chips bajo la descripción (listado / Teamtailor). */
.vacante-card-tags .tag-vacante.body-XXS {
	background-color: var(--primary-20, #e9f2f5);
}

/* Detalle vacante: cuerpo HTML (single / Teamtailor); ancho de lectura mayor que noticias (900px). */
.vacante-single-content-body-html.body-XS.text-body {
	max-width: 1020px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/*----------------------------------------------------------------
 * Persona de contacto y compañeros: siempre recuadro 1:1 (no retrato).
 *----------------------------------------------------------------*/
.vacante-contacto-photo {
	position: relative;
	min-width: 0;
}

.vacante-contacto-image,
.vacante-contacto-colleague-image {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	min-height: 0;
	max-height: none;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
	border-radius: 12px;
	box-sizing: border-box;
}

.vacante-contacto-image img,
.vacante-contacto-colleague-image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	object-fit: cover;
	object-position: center center;
	display: block;
	border-radius: inherit;
}
