/* Styles for the Community Hero widget */
.awyb-community-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 633px;
	padding: 64px;
	max-height: 633px;
	height: 100%;
	color: #ffffff;
	background-color: #0d1b2a;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	border-radius: 4px;
}

.awyb-community-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.65) 100%);
	pointer-events: none;
}

.awyb-community-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	max-width: var(--container-max-width);
	width: 100%;
	margin: 0 auto;
}

.awyb-community-hero__tag {
	display: inline-flex;
	align-items: center;
	padding: 16px 25px 16px 0;
	color: var(--awyb-theme-accent-ornament-text);
	font-weight: 700;
	font-size: 28px;
	letter-spacing: 0.02em;
	text-transform: capitalize;
	position: relative;
}

.awyb-community-hero_tag-tail {
	position: absolute;
	right: 100%;
	top: 0;
	bottom: 0;
	left: -1000px; 
	z-index: -1;
}

.awyb-community-hero__title {
	margin: 0;
	font-size: 96px;
	line-height: 1.1;
	font-weight: 800;
	text-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {
	.awyb-community-hero {
		padding: 24px;
	}

	.awyb-community-hero__title {
		font-size: 38px;
	}
}

@media (max-width: 767px) {
	.awyb-community-hero {
		min-height: 460px;
	}

	.awyb-community-hero__content {
		gap: 10px;
	}

	.awyb-community-hero__tag {
		font-size: 13px;
		padding: 9px 14px 9px 0;
	}

	.awyb-community-hero__title {
		font-size: 30px;
	}
}
