#ultimos-concejos {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(4, auto);
	gap: 1rem;
}

#ultimos-concejos .concejo {
	border-radius: 15px;
	/* overflow: hidden; */
}

#ultimos-concejos .concejo .fluidvids {
	height: 100%;
}

#ultimos-concejos a {
	display: flex;
	flex-wrap: wrap;
	min-height: 150px;
	width: 100%;
	background-color: #015293;
	color: #fff;
	text-decoration: none;
	justify-content: end;
	align-items: center;
	flex-direction: column;
	position: relative;
	background-image: url('../images/logo-mejillones.png');
	background-size: 40%;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 15px;
}

#ultimos-concejos h3 {
	color: rgba(255, 255, 255, .9);
	font-size: 14px;
	text-align: center;
	transition: all 0.3s ease-in-out;
	margin: 0;
}


#ultimos-concejos a .hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.1);
	transition: opacity 0.3s ease-in-out;
	flex-direction: column;
	justify-content: end;
	padding: 10px;
	border-radius: 15px;
}

#ultimos-concejos .hover .icono {
	flex-grow: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}

#ultimos-concejos .hover i {
	font-size: 70px;
}

#ultimos-concejos a:hover {
	background-color: rgba(0, 0, 0, 0.7);
}

#ultimos-concejos a:hover h3 {
	color: #fff;
}

#video-lightbox-concejo {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background: rgba(0, 0, 0, .7);
	z-index: 999999;
	justify-content: center;
	align-items: center;
	display: none;
}

#video-lightbox-concejo .lightbox-concejo-content {
	background: #fff;
	position: relative;
	width: 95%;
	max-width: 1000px;
	max-height: 90%;
	height: auto;
}

#video-lightbox-concejo iframe {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
	display: block;
}

#video-lightbox-concejo .lightbox-concejo-content #close-lightbox-concejo {
	background: #fff;
	border-radius: 100%;
	z-index: 9999999;
	position: absolute;
	top: -18px;
	right: -18px;
	padding: 5px 11px;
	cursor: pointer;
}




/* #ultimos-concejos .concejo-pequeno {
} */


@media (min-width: 768px) {
	#ultimos-concejos {
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: 300px 150px;
	}
		#ultimos-concejos a {
			min-height: 140px;
		}

	#ultimos-concejos .concejo-grande {
		grid-column: 1 / 4;
		grid-row: 1 / 2;
	}

	#ultimos-concejos .concejo-grande a {
		background-size: auto 80%;
		min-height: 91%;
	}

	#ultimos-concejos .concejo-grande h3 {
		font-size: 18px;
	}

	#ultimos-concejos .concejo-grande .hover i {
		font-size: 100px;
	}

	/* #ultimos-concejos .concejo-pequeno {
		grid-column: 1 / 2;
		grid-row: auto;
	} */
}

@media (min-width: 1024px) {
	#ultimos-concejos {
		grid-template-columns: minmax(200px, 1fr) minmax(200px, 1fr) 165px;
		grid-template-rows: repeat(3, auto);
	}

		#ultimos-concejos a {
			min-height: 102px;
		}

	#ultimos-concejos .concejo-grande {
		grid-column: 1 / 3;
		grid-row: 1 / 4;
	}


	#ultimos-concejos .concejo-pequeno .hover i {
		font-size: 40px;
	}

	/* #ultimos-concejos .concejo-pequeno {
		grid-column: auto;
		grid-row: auto;
	} */
}


#actas {
	min-width: 300px;
	overflow-x: auto;
}

#actas .tabla-concejo {
	width: 100%;
	border-collapse: collapse;
	font-family: Arial, sans-serif;
	font-size: 14px;
	text-align: left;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#actas .tabla-concejo thead {
	background-color: #007ac2;
	color: #fff;
	font-weight: bold;
}

#actas .tabla-concejo th,
#actas .tabla-concejo td {
	padding: 12px 15px;
	text-align: left;
}

#actas .tabla-concejo td.acta-date {
	white-space: nowrap;
}

#actas .tabla-concejo th {
	color: #ffd700;
	text-transform: uppercase;
}

#actas .tabla-concejo tbody tr:nth-child(even) {
	background-color: #f2f2f2;
}

#actas .tabla-concejo tbody tr:nth-child(odd) {
	background-color: #ffffff;
}

#actas .tabla-concejo a {
	color: #555;
	text-decoration: none;
}

#actas .tabla-concejo a:hover {
	text-decoration: underline;
}