.actores-vinculados .listado{
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

	.actores-vinculados .listado .card.actor{
		display: flex;
		flex-direction: row;
		flex-grow: 1;
		flex-basis: 100%;

		min-height: 110px;
		max-height: 110px;

		max-width: 100%;

		color: #1a1e00;
		background: #F9F3F5;
		border-radius: 12px 0px 0px 12px;
		border-right: 1px solid #7F756F;
	}
	/*
	@media (min-width: 1024px){
		.actores-vinculados .listado .card.actor{
			flex-basis: calc(50% - 1.5rem );
			max-width: calc(50% - 1.5rem );
		}
	}*/
		.actores-vinculados .listado .card.actor .imagen{
			height: 100%;
			width: 85px;
			border-radius: 12px 0px 0px 12px;
			flex-shrink: 0;
		}
			.actores-vinculados .listado .card.actor .imagen img{
				height: 100%;
				width: 100%;
				border-radius: 12px 0px 0px 12px;
				object-fit: cover;
			}

	.actores-vinculados .listado .card.actor .info{
		display: flex;
		flex-direction: column;
    justify-content: center;
		gap: 5px;
		flex-grow: 1;
		padding: 0.5rem;
		max-width: calc( 100% - 85px);
		position: relative;
	}
		.actores-vinculados .listado .card.actor .info .entidad{
			font-size: 12px;
			font-weight: bold;
			text-transform: uppercase;
			line-height: 14px;
			letter-spacing: 0.5px;
		
			width: fit-content;
		
			color: #909052;
		}
		.actores-vinculados .listado .card.actor .info .nombre{
			max-width: calc( 100% - 2.875rem);
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
			font-size: 19px;
			font-weight: 700;
			color: #29231F;
			
		}
		.actores-vinculados .listado .card.actor .info .rol{
			width: fit-content;
			overflow: hidden;
			display: -webkit-box;
			-webkit-line-clamp: 2; /* number of lines to show */
							line-clamp: 2; 
			-webkit-box-orient: vertical;

			font-size: 12px;
			font-weight: bold;
			text-transform: uppercase;
			line-height: 14px;
			letter-spacing: 0.5px;
		
			color: #29231F;
			background-color: #ede0d8;
		}

		.actores-vinculados .listado .card.actor .info .union{
			position: absolute;
			right: 0.875rem;
			top: calc(50% - 0.875rem);
			color: #29231F;
		}
