/**
 * Library Page Styles
 * 
 * @package Pachamama
 * @version 1.2.0
 */

/* ========================================
   LIBRARY PAGE HEADER
   ======================================== */

.page-header--library {
	min-height: 400px;
	padding: 120px 0 80px;
	position: relative;
	overflow: hidden;
}

.page-header--library .header-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.page-header--library .header-bg::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(144, 95, 45, 0.2) 0%, rgba(144, 95, 45, 0.7) 100%);
	z-index: 1;
}

.page-header--library .container {
	position: relative;
	z-index: 2;
}

.page-header--library .page-title {
	font-family: var(--font-heading);
	font-size: clamp(32px, 5vw, 48px);
	font-weight: var(--weight-bold);
	color: var(--white);
	line-height: 1.2;
	letter-spacing: -1px;
	margin-bottom: 12px;
}

.page-header--library .page-desc {
	font-size: 17px;
	font-weight: var(--weight-bold);
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	max-width: 600px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1100px) {
	.hero-library {
		padding: 100px 0 40px;
	}
}

@media (max-width: 700px) {
	.hero-library {
		padding: 100px 0 32px;
	}
	
	.hero-library .hero-title {
		font-size: 28px;
	}
	
	.hero-library .hero-subtitle {
		font-size: 16px;
	}
}
