/**
 * Featured Artist Single Template
 *
 * Styles for the Projecting Possibilities featured artist pages.
 *
 * @package Culver Arts
 * @since 1.0.0
 */

/* ── Hero ──────────────────────────────────────── */

.fa-hero {
	background: #1a1a1a;
	color: #fff;
	padding: 3rem 0;
}

.fa-hero__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.fa-hero__text {
	flex: 1 1 60%;
	min-width: 280px;
}

.fa-back-wrap {
	padding-top: 1.5rem;
	padding-bottom: 0.5rem;
}

.fa-back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.3em;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--fa-pink, #e91e8c);
	text-decoration: none;
	margin-bottom: 1rem;
	opacity: 0.85;
	transition: opacity 0.2s;
}
.fa-back-link:hover {
	opacity: 1;
	text-decoration: underline;
}

.fa-hero__program {
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #e91e8c;
	margin: 0 0 0.25rem;
	font-weight: 700;
}

.fa-hero__month {
	font-size: 1rem;
	color: rgba(255 255 255 / 0.7);
	margin: 0 0 0.5rem;
}

.fa-hero__name {
	font-size: clamp(2rem, 5vw, 3.25rem);
	line-height: 1.15;
	margin: 0 0 0.75rem;
	color: #fff;
}

.fa-hero__website {
	display: inline-block;
	color: #e91e8c;
	font-size: 0.95rem;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease;
}

.fa-hero__website:hover,
.fa-hero__website:focus {
	border-bottom-color: #e91e8c;
	color: #e91e8c;
}

.fa-hero__headshot {
	flex: 0 0 auto;
}

.fa-hero__headshot img {
	width: 160px;
	height: 160px;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid #e91e8c;
}

/* ── Shared ────────────────────────────────────── */

.fa-section-title {
	font-size: 1.5rem;
	margin: 0 0 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #e91e8c;
	display: inline-block;
}

.featured-artist-single .entry-content > section {
	margin-bottom: 3rem;
}

.featured-artist-single .entry-content {
	padding-top: 2.5rem;
}

/* ── Bio ───────────────────────────────────────── */

.fa-bio__text {
	font-size: 1.05rem;
	line-height: 1.75;
	max-width: 72ch;
}

/* ── Gallery ───────────────────────────────────── */

.fa-gallery__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1rem;
}

.fa-gallery__item {
	margin: 0;
	overflow: hidden;
	border-radius: 6px;
}

.fa-gallery__item a {
	display: block;
	line-height: 0;
}

.fa-gallery__item img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.fa-gallery__item a:hover img,
.fa-gallery__item a:focus img {
	transform: scale(1.03);
}

.fa-gallery__item figcaption {
	padding: 0.5rem 0.75rem;
	font-size: 0.85rem;
	color: #555;
	line-height: 1.4;
}

/* ── Projection Info ───────────────────────────── */

.fa-projection__details {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	margin-bottom: 1.25rem;
}

.fa-projection__item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	flex: 1 1 220px;
	background: #f7f7f7;
	padding: 1.25rem;
	border-radius: 6px;
}

.fa-projection__icon {
	color: #e91e8c;
	flex-shrink: 0;
	margin-top: 2px;
}

.fa-projection__item strong {
	display: block;
	margin-bottom: 0.15rem;
}

.fa-projection__note {
	font-size: 0.9rem;
	color: #666;
}

.fa-projection__note a {
	color: #e91e8c;
	text-decoration: underline;
}

/* ── Editor content section ────────────────────── */

.fa-content {
	line-height: 1.75;
}

/* ── Responsive ────────────────────────────────── */

@media (max-width: 768px) {
	.fa-hero {
		padding: 2rem 0;
	}

	.fa-hero__inner {
		flex-direction: column-reverse;
		text-align: center;
	}

	.fa-hero__headshot img {
		width: 120px;
		height: 120px;
	}

	.fa-gallery__grid {
		grid-template-columns: 1fr;
	}

	.fa-gallery__item img {
		height: 240px;
	}

	.fa-projection__details {
		flex-direction: column;
		gap: 1rem;
	}
}
