.panel-social {
	margin: 0 auto 72px;
	position: relative;
}

.panel-social::before {
	content: '';
	position: absolute;
	top: 40px;
	left: 0px;
	background-image: url(/includes/public/assets/shared/social-wave-sm.svg);
	pointer-events: none;
	background-repeat: repeat-x;
	height: 226px;
	background-size: 100% 100%;
	width: 100%;
}
.panel-social .inner {
	max-width: 1359px;
	margin: 0 auto;
}
.panel-social .social-links a:hover {
	color: var(--red);
	background-color: var(--white);
	text-decoration: none;
}

@media (min-width: 40em) {
	.panel-social::before {
		background-image: url(/includes/public/assets/shared/social-wave.svg);
		height: 353px;
		background-size: unset;
	}
}
@media (min-width: 64em) {
	.panel-social::before {
		background-size: cover;
		top: 0;
		background-position: top center;
		height: calc(353px + (450 - 353) * ((100vw - 1024px) / (1920 - 1024)));;
	}
}

.panel-social .title-container {
	text-align: center;
	margin-bottom: 14px;
}

.panel-social .title {
	color: var(--teal-light);
	text-align: center;
	font-family: var(--font-professor);
	font-size: var(--text-3xl);
	line-height: .86;
	letter-spacing: .04em;
}

.panel-social .hashtag {
	color: var(--blue-dark);
	text-align: center;
	font-family: var(--font-display);
	font-size: 2.125rem;
	font-weight: 700;
	line-height: 1.72;
	letter-spacing: .01em;
	text-transform: uppercase;
}

.panel-social .social-links a {
	font-size: var(--text-xl);
	background-color: var(--red);
	color: var(--white);
	border: 2px solid var(--red);
}

.panel-social .social-links {
	gap: var(--space-3);
	justify-content: center;
	padding-left: unset;
	background: transparent;
	padding-bottom: var(--space-10);
}

.panel-social .embed-placeholder {
	background-color: lightgrey;
	width: 100%;
	aspect-ratio: 375 / 541;
}

.panel-social .content-cont,
.panel-social .header-container {
	position: relative;
}

@media (min-width: 64em) {
	.panel-social {
		padding: 0 42px;
		margin: 0 auto 77px;
	}

	.panel-social .header-container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding-top: var(--space-5);
	}

	.panel-social .title {
		text-align: left;
		font-size: 2.5rem;
		line-height: 0.66;
	}

	.panel-social .hashtag {
		text-align: left;
		font-size: 3.75rem;
		line-height: 1.6;
	}

	.panel-social .social-links {
		padding-bottom: 0;
	}

	.panel-social .embed-placeholder {
		background-color: lightgrey;
		width: 100%;
		aspect-ratio: 1359 / 701;
	}
}