@charset "UTF-8";
/* CSS Document - Página de Jueces */

.global_section{
    display: block !important;
}

.juez-bg{
    padding: 60px 0;
    background: url(../img/contact.png) no-repeat center center;
    background-size: cover;
    background-color: #FD6400;  
}

.juez-bg .juez-item h2{
    color: #4b169e;
}

.juez-bg .juez-item p{
    color: #333;
}

.juez-bg .juez-item strong{
    color: #2259c1;
}

.juez-bg .juez-item a{
    color: #2259c1;
}

.juez-bg .juez-item a:hover{
    color: #4b169e;
}

.juez-bg-reverse{
    padding: 60px 0;
    background: url(../img/category.png) no-repeat center center;
    background-size: cover;
    background-color: #ffffff;  
}

.jueces-section {
	padding: 80px 0 0;
	background-color: #000000;
}

.jueces-section .content-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.jueces-section h1 {
	font-size: 5.5rem;
	color: #FFB300;
	margin-bottom: 60px;
    margin-top: 40px;
	font-family: "gelion_black";
	text-align: center;
	text-transform: uppercase;
	letter-spacing: -2px;
}

.jueces-section h2 {
	font-size: 4rem;
	color: #FFB300;
	margin-bottom: 20px;
	font-family: "gelion_black";
	line-height: 1.2;
}

.jueces-section p {
	font-size: 2rem;
	line-height: 1.8;
	color: #fff;
	margin-bottom: 15px;
	font-family: "gelion_medium";
}

.jueces-section strong {
	font-family: "gelion_black";
	color: #FFB300;
}

.jueces-section a {
	color: #FD6400;
	text-decoration: underline;
}

.jueces-section a:hover {
	color: #FFB300;
}

/* Grid alternado para cada juez */
.juez-item {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;

	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 100px;
	padding-bottom: 80px;
	border-bottom: 2px solid rgba(255, 179, 0, 0.2);
}

.juez-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

/* Alternancia de imagen y texto */
.juez-item.reverse {
	grid-template-columns: 1fr 1fr;
}

.juez-item.reverse .juez-foto {
	order: 2;
}

.juez-item.reverse .juez-info {
	order: 1;
}

/* Foto del juez */
.juez-foto {
	width: 100%;
	height: auto;
}

.juez-foto img {
	width: 50%;
	height: auto;
	display: block;
    margin: auto;
	border-radius: 10px;
}

/* Información del juez */
.juez-info {
	padding: 20px 0;
}

.juez-nombre {
	font-size: 4.5rem;
	color: #FFB300;
	margin-bottom: 10px;
	font-family: "gelion_black";
	line-height: 1.1;
}

.juez-descripcion {
	font-size: 2rem;
	line-height: 1.8;
	color: #fff;
	font-family: "gelion_light";
	text-align: justify;
}

.juez-descripcion strong {
	font-family: "gelion_medium";
}

.juez-link {
	display: inline-block;
	margin-top: 20px;
	font-size: 1.8rem;
	color: #FD6400;
	text-decoration: none;
	font-family: "gelion_medium";
	transition: color 0.3s ease;
}

.juez-link:hover {
	color: #FFB300;
}

/* Responsive */
@media (max-width: 992px) {
	.juez-item,
	.juez-item.reverse {
		grid-template-columns: 1fr;
		gap: 40px;
		margin-bottom: 70px;
		padding-bottom: 60px;
	}

	.juez-item.reverse .juez-foto,
	.juez-item.reverse .juez-info {
		order: initial;
	}

	.juez-nombre {
		font-size: 3.5rem;
	}

	.juez-descripcion {
		font-size: 1.8rem;
	}
}

@media (max-width: 768px) {
	.jueces-section {
		padding: 60px 0 40px;
	}

	.jueces-section .content-wrapper {
		padding: 0 20px;
	}

	.jueces-section h1 {
		font-size: 3.5rem;
		margin-bottom: 40px;
	}

	.juez-nombre {
		font-size: 2.8rem;
	}

	.juez-descripcion {
		font-size: 1.6rem;
	}

	.juez-item {
        padding: 0 20px;
		margin-bottom: 50px;
		padding-bottom: 40px;
	}

	.juez-link {
		font-size: 1.6rem;
	}
}

