/* Gallery showcase layout */
.page-main {
	padding: 0 0 4rem;
}

.page-hero {
	padding: 5rem 6vw 4rem;
	background: linear-gradient(135deg, #fef3f2, #fff7ec);
}

.page-hero__inner {
	max-width: 960px;
	margin: 0 auto;
}

.page-hero h1 {
	font-size: clamp(2rem, 4vw, 3.2rem);
	margin: 0.5rem 0 1rem;
}

.page-hero .lead {
	color: var(--text-light, #6b7280);
	max-width: 640px;
}

.hero-actions {
	margin-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.section-block {
	padding: 3.5rem 6vw;
}

.section-header {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}

.section-header h2 {
	margin: 0.2rem 0;
}

.album-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.album-card {
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 18px 40px rgba(15, 15, 20, 0.08);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 360px;
}

.album-card.compact {
	min-height: 320px;
}

.album-card__cover {
	position: relative;
	padding-bottom: 56%;
	background-size: cover;
	background-position: center;
}

.album-card__badge {
	position: absolute;
	top: 18px;
	left: 18px;
	background: rgba(158, 11, 15, 0.9);
	color: #fff;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 0.85rem;
}

.album-card__body {
	padding: 1.8rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1;
}

.album-card__title-row {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	align-items: center;
}

.album-card__title-row h3 {
	margin: 0;
}

.album-chip {
	background: rgba(158, 11, 15, 0.1);
	color: var(--ruc-red, #9e0c0c);
	padding: 4px 10px;
	border-radius: 16px;
	font-size: 0.85rem;
}

.album-card__desc {
	color: var(--text-light, #6b7280);
	margin-bottom: 0.5rem;
}

.album-card__preview {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
	gap: 0.6rem;
}

.album-card__preview figure {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

.album-card__preview img {
	width: 100%;
	height: 90px;
	object-fit: cover;
	display: block;
}

.album-card__preview figcaption {
	position: absolute;
	inset: auto 0 0;
	padding: 4px 8px;
	font-size: 0.75rem;
	color: #fff;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.album-meta {
	font-size: 0.9rem;
	color: var(--text-light, #6b7280);
	display: flex;
	justify-content: space-between;
}

.eyebrow {
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ruc-red, #9e0c0c);
}

.muted {
	color: var(--text-light, #6b7280);
}

.text-muted {
	color: var(--text-light, #9ca3af);
}

.album-grid.featured .album-card {
	border: 1px solid rgba(158, 11, 15, 0.15);
}

@media (max-width: 768px) {
	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.album-meta {
		flex-direction: column;
		gap: 0.25rem;
	}
}
