/**
 * Single speaker detail page — 연자 소개 뷰
 *
 * @package AriawellTheme
 */

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

/* ------------------------------------------------------------------ */
/* Layout                                                             */
/* ------------------------------------------------------------------ */

body.single-speaker {
	background: #fff;
}

body.single-speaker #main-content {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.site-main--single-sepaker {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

/* ------------------------------------------------------------------ */
/* Hero                                                               */
/* ------------------------------------------------------------------ */

.sepaker-hero {
	position: relative;
	min-height: 720px;
	overflow: hidden;
	padding-left: var(--aw-layout-gutter-x);
	padding-right: var(--aw-layout-gutter-x);
}

.sepaker-hero__visual {
	position: absolute;
	inset: 0;
}

.sepaker-hero__pattern,
.sepaker-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sepaker-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(253, 142, 0, 0.3) 67.812%, rgba(253, 120, 1, 0.3) 100%);
}

.sepaker-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	max-width: var(--aw-content-max);
	min-height: 720px;
	margin: 0 auto;
	padding: 0 0;
}

.sepaker-hero__profile {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: min(100%, 36rem);
	padding-bottom: 8.75rem;
	color: #fff;
}

.sepaker-hero__affiliation {
	margin: 0;
	font-family: var(--aw-font-sans);
	font-size: clamp(1.125rem, 1.6vw, 1.5rem);
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.sepaker-hero__name {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.5rem;
	margin: 0;
}

.sepaker-hero__name-text {
	font-family: var(--aw-font-sans);
	font-size: clamp(2rem, 3.2vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.sepaker-hero__name-title {
	font-family: var(--aw-font-sans);
	font-size: clamp(1.25rem, 1.8vw, 1.625rem);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.sepaker-hero__photo {
	flex-shrink: 0;
	width: clamp(16rem, 33vw, 40rem);
	max-width: 640px;
	align-self: flex-end;
}

.sepaker-hero__photo img {
	width: 100%;
	height: auto;
	max-height: 36.125rem;
	object-fit: cover;
	object-position: center top;
}

/* ------------------------------------------------------------------ */
/* Detail cards                                                       */
/* ------------------------------------------------------------------ */

.sepaker-detail {
	padding: clamp(5rem, 8.75vw, 8.75rem) var(--aw-layout-gutter-x) clamp(4rem, 7vw, 8.75rem);
}

.sepaker-detail__inner {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	max-width: var(--aw-content-max);
	margin: 0 auto;
	padding: 0;
}

.sepaker-card {
	padding: clamp(2rem, 3.5vw, 3.125rem) clamp(1.5rem, 4vw, 3.75rem);
	border-radius: 16px;
	background: #faf8f8;
}

.sepaker-card__head {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
}

.sepaker-card__title {
	margin: 0;
	font-family: var(--aw-font-sans);
	font-size: clamp(1.375rem, 2vw, 1.625rem);
	font-weight: 700;
	line-height: 1.2;
	color: #000;
	letter-spacing: -0.02em;
}

.sepaker-card__divider {
	width: 100%;
	max-width: 960px;
	height: 1px;
	margin: 0;
	border: 0;
	background: #d7d7d7;
}

.sepaker-card__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sepaker-card__list li {
	position: relative;
	padding-left: 0.9375rem;
	font-family: var(--aw-font-sans);
	font-size: clamp(1rem, 1.4vw, 1.25rem);
	font-weight: 500;
	line-height: 1.45;
	color: #333;
	letter-spacing: -0.01em;
}

.sepaker-card__list li::before {
	content: "";
	position: absolute;
	top: 0.65em;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #333;
}

/* ------------------------------------------------------------------ */
/* Mobile                                                             */
/* ------------------------------------------------------------------ */

@media (max-width: 1024px) {
	.sepaker-hero {
		min-height: auto;
	}

	.sepaker-hero__inner {
		flex-direction: column;
		align-items: flex-start;
		min-height: auto;
		padding-top: 7.5rem;
		padding-bottom: 0;
	}

	.sepaker-hero__profile {
		padding-bottom: 0;
	}

	.sepaker-hero__photo {
		width: min(100%, 28rem);
		align-self: center;
		margin-top: 1.5rem;
	}

	.sepaker-hero__photo img {
		max-height: none;
	}

	.sepaker-detail {
		padding-top: 2.5rem;
	}
}

@media (max-width: 768px) {
	.sepaker-hero {
		min-height: auto;
	}

	.sepaker-hero__inner {
		padding-top: 5.5rem;
		gap: 1.25rem;
	}

	.sepaker-hero__profile {
		gap: 0.75rem;
	}

	.sepaker-hero__affiliation {
		font-size: 1rem;
		line-height: 1.4;
	}

	.sepaker-hero__name-text {
		font-size: 2rem;
	}

	.sepaker-hero__name-title {
		font-size: 1.125rem;
	}

	.sepaker-hero__photo {
		width: min(100%, 18rem);
		margin-top: 0.5rem;
	}

	.sepaker-detail {
		padding: 2.5rem var(--aw-layout-gutter-x) 3.75rem;
	}

	.sepaker-detail__inner {
		gap: 1rem;
	}

	.sepaker-card {
		padding: 1.5rem 1.25rem;
		border-radius: 12px;
	}

	.sepaker-card__head {
		gap: 1rem;
		margin-bottom: 1.25rem;
	}

	.sepaker-card__title {
		font-size: 1.25rem;
	}

	.sepaker-card__list {
		gap: 0.75rem;
	}

	.sepaker-card__list li {
		font-size: 1rem;
		line-height: 1.5;
	}
}
