.events-hero {
	position: relative;
	width: 100%;
	height: 440px;
	overflow: hidden;
	font-family: "Monserrat", Sans-serif;
}

.events-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.events-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.events-hero__content {
	position: relative;
	z-index: 2;
	height: 440px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 40px;
	gap: 36px;
}

.events-hero__title {
	color: #FFFFFF;
	font-size: 46px;
	font-weight: 300;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 1px;
	max-width: 1100px;
	margin: 0;
}

.events-hero__scroll {
	width: 64px;
	height: 64px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	background: transparent;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.25s ease;
}

.events-hero__scroll:hover {
	background: rgba(255, 255, 255, 0.15);
}

.events-hero__scroll img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

@media (max-width: 768px) {
	.events-hero,
	.events-hero__content {
		height: auto;
		min-height: 460px;
	}
	.events-hero__content {
		padding: 90px 24px;
	}
	.events-hero__title {
		font-size: 30px;
	}
}
