/**
 * Author section
 */

.cc-wcl-author {
	position: relative;
	overflow: hidden;
	color: var(--cc-wcl-text, #ffffff);
	background-color: var(--cc-wcl-bg, var(--color-ink, #0d0d0d));
	padding: var(--spacing-section, 64px) var(--spacing-margin, 64px);
}

.cc-wcl-author__atmosphere {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	opacity: 0.9;
}

.cc-wcl-author__atmosphere img {
	width: 120%;
	max-width: none;
	height: auto;
	object-fit: cover;
	object-position: center bottom;
}

.cc-wcl-author__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: stretch;
	gap: var(--spacing-7xl, 120px);
	width: 100%;
	max-width: 1312px;
	margin: 0 auto;
}

.cc-wcl-author__aside {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 0 0 192px;
	min-height: 310px;
}

.cc-wcl-author__heading {
	margin: 0;
	font-family: var(--font-display, "Cormorant", serif);
	font-size: var(--text-h2, 48px);
	font-weight: 700;
	line-height: var(--leading-display, 1.2);
	letter-spacing: var(--tracking-display, -0.02em);
	color: inherit;
	white-space: nowrap;
}

.cc-wcl-author__social {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg, 24px);
}

.cc-wcl-author__social-heading {
	margin: 0;
	font-family: var(--font-body, "PP Mori", system-ui, sans-serif);
	font-size: var(--text-small, 14px);
	font-weight: 400;
	line-height: 1.5;
	color: inherit;
}

.cc-wcl-author__social-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--spacing-md, 16px);
	max-width: 192px;
}

.cc-wcl-author__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--radius-full, 9999px);
	background: var(--color-white, #ffffff);
	text-decoration: none;
	overflow: hidden;
	transition:all 0.3s ease-in-out;
}
.cc-wcl-author__social-link:hover {
	background: rgba(255,255,255,0.7);
}

.cc-wcl-author__social-link img {
	display: block;
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.cc-wcl-author__main {
	display: flex;
	align-items: center;
	gap: var(--spacing-3xl, 48px);
	flex: 1 1 auto;
	min-width: 0;
}

.cc-wcl-author__portrait {
	margin: 0;
	flex: 0 0 240px;
	width: 240px;
	height: 300px;
	overflow: hidden;
}

.cc-wcl-author__portrait img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cc-wcl-author__bio-wrap {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg, 24px);
	max-width: 640px;
	min-width: 0;
}

.cc-wcl-author__name {
	margin: 0;
	font-family: var(--font-display, "Cormorant", serif);
	font-size: var(--text-h4, 32px);
	font-weight: 700;
	line-height: var(--leading-display, 1.2);
	letter-spacing: var(--tracking-display, -0.02em);
	color: inherit;
}

.cc-wcl-author__bio {
	font-family: var(--font-body, "PP Mori", system-ui, sans-serif);
	font-size: var(--text-body, 16px);
	font-weight: 400;
	line-height: 1.5;
	color: inherit;
}

.cc-wcl-author__bio p {
	margin: 0 0 8px;
}

.cc-wcl-author__bio p:last-child {
	margin-bottom: 0;
}
.cc-wcl-author__social--mobile { 
	display: none;
	margin-bottom: var(--spacing-lg, 24px);
}
@media (max-width: 900px) {
	.cc-wcl-author {
		padding: var(--spacing-xl, 32px) var(--spacing-md, 16px);
	}

	.cc-wcl-author__inner {
		flex-direction: column;
		gap: var(--spacing-lg, 24px);
	}

	.cc-wcl-author__aside {
		flex: none;
		min-height: 0;
		gap: var(--spacing-xl, 32px);
	}

	.cc-wcl-author__heading {
		white-space: normal;
	}

	.cc-wcl-author__social--desktop {
		display: none;
	}

	.cc-wcl-author__social--mobile {
		display: flex;
	}
	.cc-wcl-author__main {
		flex-direction: column;
		align-items: flex-start;
	}

	.cc-wcl-author__portrait {
		flex: none;
	}
}
@media (max-width: 520px) {
	.cc-wcl-author__portrait {
		width: 100%;
		height:auto;
	}
}