body.page-organizers .nav-right a[href="organizers.html"] {
    color: #00eef9;
}
h2 {
	color: #0361f9;
	font-size: 1.5rem;
	margin: 0 auto;
    font-weight: bold;
    border-bottom: 2px solid silver;
	text-align: center;
}
.organizers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: calc(100vh - 0px);
	margin: 0 auto;
	text-align: center;
	z-index: 0;
}
.title {
    display: none;
}
.organizers-inner {
    max-width: 1000px;
	z-index: 3;
	position: relative;
}
.organizers-title {
	font-size: clamp(1.5rem, 10vw, 2rem);
	font-weight: 700;
	max-width: 1000px;
	padding: 10px;
	z-index: 3;
	position: relative;
    color: #5851ff
}
.organizers-list {
	margin: 0 auto;
	display: flex;
    justify-content: center;
    gap: 1rem;
	position: relative;
    z-index: 10;
    padding: 2rem;
	height: 100%;
	width: 100%;
    max-width: 1000px;
}
h4 {
    color: #322dc6;
	font-size: 1rem;
	font-weight: bold;
    margin-top: 10px;
}
.organizers-list p {
    max-width: 180px;
    font-size: 0.7rem;
    line-height: 1.4;
}
figure {
    
    flex-direction: column;
    align-items: center;
	text-align: center;
    width: 180px;
	display: flex;
	flex: 1 1 41%;
    border-radius: 8px;
}
img {
    position: relative;
    border-radius: 8px;
    
    margin-bottom: 2px;
    max-width: 166px;
	object-fit: cover;
	object-position: center;
	width: 100%;
    height: auto;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    box-shadow: 5px 5px 10px #c7c7c7,
             -5px -5px 10px #f8f8f8;
}
@media (max-width: 1000px) {
    .organizers-title {
        margin-top: 50px;
    }
    .organizers-list {
        flex-direction: column;
        gap: clamp(4px, 1vw, 16px);
		display: grid;
		grid-template-columns: repeat(3, auto);
		grid-template-rows: repeat(2, auto);
		height: auto;
    }
    figure {
        display: flex;
        align-items: center;
        text-align: left;
        width: 180px;
    }
}
@media (max-width: 600px) {
    .organizers {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .organizers-list {
        grid-template-columns: repeat(2, auto);
		grid-template-rows: repeat(3, auto);
    }
}
@media (max-width: 430px) {
    .organizers-list {
        grid-template-columns: repeat(1, auto);
        padding: 10px 9px;
        margin: 0 auto;
    }
    figure{
        display: flex;
        align-items: left;
        flex-direction: row;
        gap: 10px;
    }
    img {
        width: 50%;
        top: 0;
    }

    figure {
        gap: 1rem;
        width: 100%;
        padding-top: 10px;
        margin: 0;
    }

    figure img {
        margin: 0;
    }
}