.stewards-page--wrap {
	display: flex;
	flex-wrap: wrap;
}

.stewards-page--images-wrap {
	width: calc(40% - 2rem);
	margin: 1rem;
}

.stewards-page--images {
	display: flex;
	flex-wrap: wrap;
}

.stewards-page--images--item {
	margin: 1rem;
}

.stewards-page--image--item {
	width: 30em;
}
.stewards-page--images .border {
	width: 100px;
	margin-top: 0;
}

.stewards-page--content {
	width: calc(60% - 2rem);
}

.stewards-page--wrap :where(a) {
	color: #5f5f5f;
	cursor: pointer;
	font-weight: 700;
	text-decoration: none;
	transition: opacity .4s;
}

.volunteer--accordion {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.volunteer--accordion--item {
	margin-bottom: 1em;
}

.volunteer--accordion--button {
	background-color: transparent;
	text-transform: initial;
	letter-spacing: initial;
	display: block;
	width: 100%;
	padding: 0;
	text-align: left;
	position: relative;
	outline: none;
	border: 0;
	cursor: pointer;
	border-bottom: 1px solid #cccccc;

}
.volunteer--accordion--button--arrow {
	position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		display: block;
		color: var(--color-black);
		transition: transform 300ms ease;
		transform-origin: 50% 50%;
}

.volunteer--accordion--button--arrow__active {
	transform: translateY(-50%) rotate(180deg);
}

.volunteer--accordion--content {
	padding-top: 1em;
	display: none;
}

.volunteer--form--heading {
	margin: 1em 0;
}

.hero {
	position: relative;
	width: 100%;
	aspect-ratio: 1900 / 400;
	overflow: hidden;
	margin-bottom: 2em;
}

.hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media screen and (max-width: 800px) {
	.stewards-page--wrap {
		display: block;
		margin: 0;
	}

	.stewards-page--content {
		width: 100%;
		margin: 0 0 2rem;
	}

	.stewards-page--images-wrap {
		width: 100%;
		margin: 0;
	}

	.stewards-page--images {
		display: block;
		width: 100%;
		margin: 0;
	}

	.stewards-page--images--item {
		margin: 0 0 2rem;
		width: 100%;
	}
	.stewards-page--image--item {
		width: 100%;
	}
}