/* =========================================================
   NMW — Jury accordion
   Centred name, "+" / "−" toggle on the right; expanded item shows role
   under the name and a 2-col grid below (photo | bio).
   ========================================================= */

.jury {
	margin: 64px 0 16px;
	padding-top: 32px;
}
.jury__eyebrow {
	text-align: center;
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 32px;
}

.jury__list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.jury__item {
	padding: 16px 0;
}
.jury__item + .jury__item { border-top: 0; }

.jury__head {
	position: relative;
	display: block;
	cursor: pointer;
	list-style: none;
	padding: 8px 32px;
	text-align: center;
}
.jury__head::-webkit-details-marker { display: none; }

.jury__name {
	font-family: var(--font-display);
	font-size: clamp(20px, 2.2vw, 28px);
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.2;
}

/* Plus / minus toggle in the top-right of each row */
.jury__plus {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: var(--color-fg);
}
.jury__plus::before,
.jury__plus::after {
	content: "";
	position: absolute;
	left: 50%; top: 50%;
	background: currentColor;
	transition: transform 0.2s;
}
.jury__plus::before { width: 16px; height: 1.6px; transform: translate(-50%, -50%); }
.jury__plus::after  { width: 1.6px; height: 16px; transform: translate(-50%, -50%); }
.jury__item[open] .jury__plus::after { transform: translate(-50%, -50%) scaleY(0); }

.jury__head:hover .jury__name,
.jury__head:hover .jury__plus { color: var(--color-accent); }

.jury__role {
	text-align: center;
	margin: 4px 0 24px;
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 500;
	color: var(--color-fg);
}

.jury__body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	padding: 8px 0 32px;
	font-family: var(--font-sans);
	font-size: 14.5px;
	line-height: 1.55;
	align-items: start;
}
.jury__photo {
	margin: 0;
	width: 100%;
	aspect-ratio: 4 / 5;
	background: rgba(0,0,0,0.08);
	overflow: hidden;
}
.jury__photo img { width: 100%; height: 100%; object-fit: cover; }
.jury__bio p { margin: 0 0 1em; }
.jury__bio p:last-child { margin: 0; }

/* When there's no photo the bio takes the full width */
.jury__body:not(:has(.jury__photo)) {
	grid-template-columns: 1fr;
	max-width: 600px;
	margin-inline: auto;
}

@media (max-width: 700px) {
	.jury__body { grid-template-columns: 1fr; }
	.jury__photo { max-width: 320px; margin-inline: auto; }
}
