.main-flex {
	display: flex;
	align-items: flex-start;
	gap: 0 40px;
}

@media (max-width: 1023px) {
	.main-flex {
		flex-direction: column;
		gap: 80px 0;
	}
}

.p-profile {
	position: sticky;
	top: 0;
	left: 0;
	width: 280px;
	padding: 2.5rem 3rem;
	background: #fff;
	border-radius: 1rem;
	filter: var(--filter_dropshadow);
	filter: drop-shadow(5px 8px 10px rgba(13, 48, 112, 0.1));
	box-sizing: border-box;
}

@media (max-width: 1023px) {
	.p-profile {
		width: 100%;
		top: initial;
		left: initial;
	}
}

.main-contents {
	flex: 1;
}

@media (max-width: 1023px) {
	.main-contents {
		flex: initial;
	}
}

.p-profile h1 {
	line-height: 2;
	margin: 0;
}

.p-profile dl {
	padding-left: 18px;
	border-left: 4px solid #04b4ac;
	font-size: 1.8rem;
}

.p-profile dd {
	margin-left: 0;
}

.p-rank h3 {
	padding: 1.75rem 4rem;
	border-radius: 62.4375rem;
	background: #eef0f1;
	margin-bottom: 2rem;
	font-size: 2rem;
	position: relative;
	display: flex;
	align-items: center;
	gap: 0 2rem;
}

.p-rank h3::before {
	content: '#';
	font-size: 2rem;
	color: #04b4ac;
}

.p-rank ol {
	list-style: none;
}

.p-rank li {
	display: flex;
	align-items: center;
	gap: 0 4rem;
	font-size: 1.8rem;
}

.p-rank li span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	border-radius: 5rem;
	text-align: center;
	padding: 1rem;
	font-weight: 700;
}

.p-rank li:nth-child(1) span {
	background: goldenrod;
}

.p-rank li:nth-child(2) span {
	background: silver;
}

.p-rank li:nth-child(3) span {
	background: #e5ada1;
}

.p-comment {
	padding: 0 4rem 2.6rem;
	border: 0.1rem solid #eef0f1;
}

.p-comment h4 {
	font-size: 2rem;
	font-weight: 700;
}

.p-qa ul {
	list-style: none;
	margin-left: 0;
}

.p-qa li {
	border-bottom: 0.1rem solid #eef0f1;
	padding: 4rem 0;
}

.p-qa dt {
	display: flex;
	align-items: flex-start;
	gap: 0 5rem;
	margin-bottom: 2rem;
	font-size: 2rem;
	font-weight: 700;
	position: relative;
}

.p-qa dt::before {
	content: 'Q';
	font-size: 4rem;
	font-weight: 700;
	color: #04b4ac;
}

.p-qa dt::after {
	position: absolute;
	content: '/';
	color: #04b4ac;
	font-size: 2.2rem;
	top: 1rem;
	transform: rotate(17deg);
	left: 4rem;
	font-weight: 700;
}

.p-qa dd {
	display: flex;
	align-items: flex-start;
	gap: 0 5rem;
	margin-left: 0;
	position: relative;
}

.p-qa dd::before {
	content: 'A';
	font-size: 4rem;
	font-weight: 700;
	color: #04b4ac;
}

.p-qa dd::after {
	position: absolute;
	content: '/';
	color: #04b4ac;
	font-size: 2.2rem;
	top: 1rem;
	transform: rotate(17deg);
	left: 4rem;
	font-weight: 700;
}
