/* Founder Section — editorial cover layout. */

.stl-founder-cover {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 0;
	background: #1F1A14;
	color: #F5ECD6;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 40px 80px -36px rgba(31, 26, 20, 0.55);
}

.stl-founder-photo {
	position: relative;
	min-height: 560px;
	overflow: hidden;
	background: linear-gradient(180deg, #2a2620, #14110D);
}

.stl-founder-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(0.06) contrast(1.04);
	transition: transform 1s cubic-bezier(.22, .61, .36, 1);
}

.stl-founder-cover:hover .stl-founder-photo img {
	transform: scale(1.03);
}

.stl-founder-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(20, 17, 13, 0.55) 100%);
	pointer-events: none;
}

.stl-founder-badge {
	position: absolute;
	left: 22px;
	top: 22px;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: #C9A668;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	z-index: 1;
}

.stl-founder-badge::before {
	content: "";
	width: 28px;
	height: 1px;
	background: #C9A668;
}

.stl-founder-vol {
	position: absolute;
	right: 22px;
	bottom: 22px;
	font-style: italic;
	font-size: 22px;
	color: #C9A668;
	z-index: 1;
}

.stl-founder-body {
	padding: 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.stl-founder-body::before {
	content: "";
	position: absolute;
	left: 56px;
	right: 56px;
	top: 56px;
	height: 1px;
	background: rgba(201, 166, 104, 0.22);
}

.stl-founder-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0 10px 0;
	font-size: 10.5px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(245, 236, 214, 0.55);
	font-weight: 600;
}

.stl-founder-meta .stl-founder-accent {
	color: #C9A668;
}

.stl-founder-name {
	margin: 36px 0 6px;
	font-weight: 600;
	font-size: 48px;
	line-height: 1;
	letter-spacing: -0.02em;
	color: #F5ECD6;
}

.stl-founder-name .stl-founder-it {
	font-style: italic;
	color: #C9A668;
	font-weight: 500;
}

.stl-founder-role {
	font-style: italic;
	font-size: 20px;
	color: #C9A668;
	margin-bottom: 0;
}

.stl-founder-bio {
	color: rgba(245, 236, 214, 0.78);
	font-size: 15.5px;
	line-height: 1.7;
	margin: 0 0 24px;
	max-width: 48ch;
}

.stl-founder-quote {
	margin-top: 12px;
	padding: 40px 0 0 36px;
	border-top: 1px solid rgba(201, 166, 104, 0.22);
	font-style: italic;
	font-size: 20px;
	line-height: 1.5;
	color: #F5ECD6;
	position: relative;
}

.stl-founder-quote::before {
	content: "“";
	position: absolute;
	left: -2px;
	top: 45px;
	font-style: italic;
	font-size: 64px;
	line-height: 0;
	color: #C9A668;
}

.stl-founder-tags {
	margin-top: 28px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.stl-founder-tag {
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 6px 11px;
	border: 1px solid rgba(201, 166, 104, 0.32);
	color: rgba(245, 236, 214, 0.85);
	border-radius: 999px;
}

@media (max-width: 900px) {
	.stl-founder-cover {
		grid-template-columns: 1fr;
	}

	.stl-founder-photo {
		min-height: 420px;
	}

	.stl-founder-body {
		padding: 36px 28px;
	}

	.stl-founder-body::before {
		display: none;
	}
}
