.public-page-details-header {
	background-color: var(--main-green);
	border-radius: 1rem;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 1.5rem 0 1.5rem 1.5rem;
	display: flex;
}
.public-page-details-header__avatar__container__hover {
	flex-direction: row;
	gap: 1rem;
	display: flex;
	position: absolute;
	top: 4.5rem;
	left: 2.9rem;
}
.public-page-details-header__avatar__container__hover path {
	stroke: var(--main-white);
}
.public-page-details-header__left {
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	max-width: 100%;
	display: flex;
}
.public-page-details-header__left__avatar {
	background-color: var(--g-900);
	cursor: pointer;
	border-radius: 50%;
	width: 10.75rem;
	height: 10.75rem;
	position: relative;
}
.public-page-details-header__left__avatar img {
	object-fit: cover;
	border-radius: 50%;
	width: 10.75rem;
	height: 10.75rem;
}
.public-page-details-header__left__avatar > svg {
	position: absolute;
	top: calc(50% - 26px);
	left: calc(50% - 26px);
}
.public-page-details-header__left__description {
	color: var(--main-black);
	flex-direction: column;
	gap: 0.25rem;
	max-width: calc(100% - 10rem);
	margin-left: 3rem;
	display: flex;
}
.public-page-details-header__left__description h1 {
	letter-spacing: -0.02em;
	font-family: clash-display, sans-serif;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 600;
	line-height: 2.5rem;
}
.public-page-details-header__left__description h2 {
	font-family: Manrope, sans-serif;
	font-size: 0.85rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.25rem;
}
.public-page-details-header__left__description__other {
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin-top: 1rem;
	font-family: Manrope, sans-serif;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5rem;
	display: flex;
}
.public-page-details-header__left__description__other__twitter {
	cursor: pointer;
	align-items: center;
	gap: 1rem;
	display: flex;
}
.public-page-details-header__left__description__other__twitter a {
	cursor: pointer;
	color: var(--main-black);
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	display: flex;
}
.public-page-details-header__left__description__other__twitter a path {
	fill: #000;
}
.public-page-details-header__left__description__other__wallet {
	cursor: pointer;
	align-items: center;
	gap: 0.75rem;
	display: flex;
}
.public-page-details-header__left__description__other__joined {
	gap: 1rem;
	display: flex;
}
.public-page-details-header__right {
	min-width: 60px;
}
.public-page-details-header__right__socials {
	background-color: var(--g-700);
	z-index: 4;
	visibility: hidden;
	opacity: 0;
	border-radius: 0.375rem;
	width: 17rem;
	transition:
		visibility,
		opacity 0.2s ease-out;
	position: absolute;
	top: 40%;
	right: 2%;
}
.public-page-details-header__right__socials path {
	fill: var(--main-white);
}
.public-page-details-header__right__socials.opened {
	visibility: visible;
	opacity: 1;
	justify-content: space-between;
	display: flex;
}
@media screen and (width<=1024px) {
	.public-page-details-header {
		flex-direction: column;
		align-items: center;
		padding: 1rem;
	}
	.public-page-details-header__left {
		flex-direction: column;
		align-items: center;
		max-width: 100%;
	}
	.public-page-details-header__left__description {
		text-align: center;
		max-width: 90%;
	}
	.public-page-details-header__right {
		align-self: center;
		margin-top: 1rem;
	}
}
@media screen and (width<=768px) {
	.public-page-details-header__left {
		flex-direction: column;
		align-items: center;
	}
	.public-page-details-header__left__avatar,
	.public-page-details-header__left__avatar img {
		width: 10.75rem;
		height: 10.75rem;
	}
	.public-page-details-header__left__description {
		text-align: center;
		max-width: 80%;
	}
	.public-page-details-header__left__description__other {
		justify-content: center;
	}
	.public-page-details-header__right {
		justify-content: center;
		display: flex;
	}
}
@media screen and (width<=480px) {
	.public-page-details-header__left__avatar,
	.public-page-details-header__left__avatar img {
		width: 10.75rem;
		height: 10.75rem;
	}
	.public-page-details-header__left__description {
		text-align: center;
		max-width: 100%;
		margin-left: 0;
	}
}
