.dnd-section:has(.hs) {
	position: relative;
}

.hs {
	display: flex;
	justify-content: space-between;
	gap: var(--spacer_50);
}
.hs--vertical {
	flex-direction: column;
}

.hs:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.hs__background {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -2;
	object-fit: cover;
}
.hs__background--mobile {
	display: none;
}

.hs__left,
.hs__right {
	width: calc(50% - var(--spacer_50) / 2);
}
.hs--vertical .hs__left,
.hs--vertical .hs__right {
	margin: 0 auto;
	max-width: 654px;
	width: 100%;
}


.hs__left-title {
	line-height: 1;
	letter-spacing: -0.04px;
	color: var(--light_beige);
	font-style: italic;
	font-weight: var(--font_weight_400);
	margin-bottom; var(--spacer_28);
}

.hs__left-subtitle,
.hs__left-subtitle *{
	font-size: 20px;
	color: var(--light_beige);
}

.hs--vertical .hs__left-title,
.hs--vertical .hs__left-subtitle,
.hs--vertical .hs__left-subtitle * {
	text-align: center;
}

.hs__left-subtitle *:last-child {
	margin-bottom: 0;
}

.hs__left-button-container,
.hs__left-tags-container {
	margin-top: var(--spacer_24);
	display: flex;
	gap: var(--spacer_24);
	flex-wrap: wrap;
	align-items: center;
}
.hs--vertical .hs__left-button-container,
.hs--vertical .hs__left-tags-container {
	justify-content: center;
}

.hs__left-tags-container {
	gap: var(--spacer_20);
	flex-wrap: wrap;
}

.hs__left-tag {
	border: 1.5px solid #60594D;
	padding: var(--spacer_12) var(--spacer_20);
	border-radius: 100px;
	font-weight: var(--font_weight_600);
	color: #E8E4DD;
}

.hs__left-microcopies {
	display: flex;
	gap: var(--spacer_24);
}

.hs__left-microcopies-item {
	display: flex;
	gap: var(--spacer_8);
	align-items: center;
}

.hs__left-microcopies-item-image {
	width: 1.5rem;
	height: 1.5rem;
	object-fit: contain;
}

.hs__left-microcopies-item-text {
	margin-bottom: 0;
	color: var(--light_beige);
}

.hs__right {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.hs__right-list {
	display: flex;
	gap: var(--spacer_12);
	margin-top: auto;
	padding: var(--spacer_4) var(--spacer_12);
	flex-wrap: wrap;
	justify-content: space-between;
}

.hs__right-list-item {
	display: flex;
	gap: var(--spacer_4);
	align-items: center;
}

.hs__right-list-item-image {
	width: 14px;
	height: 14px;
	object-fit: contain;
}

.hs__right-list-item-text {
	font-weight: var(--font_weight_600);
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 5%;
	text-transform: uppercase;
	color: var(--light_beige);
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.hs {
		flex-direction: column;
	}
	.hs__left,
	.hs__right {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.hs:has(.hs__background--mobile) .hs__background {
		display: none;
	}
	.hs__background--mobile {
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: -2;
		object-fit: cover;
	}
}

@media (max-width: 500px) {
	.hs__right {
		justify-content: flex-start;
		overflow-x: auto;
		position: relative;
		width: calc(100% + 2rem);
		scrollbar-width: none;
		&::-webkit-scrollbar { 
			display: none; 
		}
	}
	.hs__right-list {
		flex-wrap: nowrap;
		overflow: auto;
		min-width: max-content;
	}
	.hs__right-list.glassmorphism,
	.hs__right-list.glassmorphism::before,
	.hs__right-list.glassmorphism::after {
    background: transparent;
    border: unset;
    box-shadow: unset;
    backdrop-filter: unset;
	}
	.hs__right-list-item {
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(5px);
	background: hsla(0, 0%, 100%, .04);
	border-radius: 16px;
	padding: var(--spacer_4) var(--spacer_10);
}
.hs__right-list-item::before {
	background: linear-gradient(180deg, hsla(0, 0%, 100%, 0.5), hsl(0deg 0% 100% / 9%));
	border-radius: 16px;
	content: "";
	inset: 0;
	-webkit-mask: linear-gradient(#000000 0 0) content-box, linear-gradient(#000000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	padding: 0.5px 0.5px 1px;
	pointer-events: none;
	position: absolute;
}
.hs__right-list-item::after {
	background: linear-gradient(180deg, transparent, hsl(0deg 0% 100% / 40%));
	border-radius: 16px;
	content: "";
	inset: 0;
	-webkit-mask: linear-gradient(#000000c4 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	padding: 0px 0px 0.5px 0.5px;
	pointer-events: none;
	position: absolute;
}
}