/* Estilos para widget de empresas destacadas */
.empresas-destacadas-container h2 {
	text-align: center;
	margin-bottom: 30px;
	color: #454545;
	font-weight: 600;
}

.empresas-destacadas-container .row {
	display: flex;
	flex-wrap: wrap;
}

.empresas-destacadas-container .row > div[class*='col-'] {
	display: flex;
	flex-direction: column;
}

.empresa-destacada-link {
	text-decoration: none;
	display: block;
	height: 100%;
}

.empresa-destacada {
	background-color: #fff;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 15px;
	text-align: center;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.empresa-destacada:hover {
	border-color: #919f19;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transform: translateY(-2px);
}

.empresa-logo {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.empresa-logo img {
	max-width: 100%;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.empresa-info {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.empresa-nombre {
	font-size: 1.2em;
	font-weight: 600;
	color: #454545;
	margin: 10px 0;
	height: 48px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.2;
	text-align: center;
	word-wrap: break-word;
}

.empresa-ubicacion {
	font-size: 1em;
	color: #666;
	margin-bottom: 10px;
	height: 45px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1.4;
	gap: 2px;
}

.empresa-ubicacion span {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.empresa-ubicacion .text-muted {
	color: #ccc;
}

.empresa-ubicacion i {
	color: #919f19;
	margin-right: 3px;
}

.empresa-anuncios {
	font-size: 1em;
	color: #919f19;
	font-weight: 600;
	padding: 8px 0;
	border-top: 1px solid #e0e0e0;
	margin-top: 10px;
}

.empresa-anuncios i {
	margin-right: 5px;
}

/* Responsive para empresas destacadas */
@media (max-width: 768px) {
	.empresa-logo {
		height: 70px;
	}
	
	.empresa-logo img {
		max-height: 70px;
	}
	
	.empresa-nombre {
		font-size: 1.1em;
		height: 42px;
	}
	
	.empresa-ubicacion {
		font-size: 0.95em;
		height: 40px;
	}
	
	.empresa-anuncios {
		font-size: 0.95em;
	}
}

@media (max-width: 480px) {
	.empresa-logo {
		height: 60px;
	}
	
	.empresa-logo img {
		max-height: 60px;
	}
	
	.empresa-nombre {
		font-size: 1em;
		height: 38px;
	}
	
	.empresa-ubicacion {
		font-size: 0.9em;
		height: 38px;
	}
}
