/*
 * What is Clarity Page Styles - Principles of Clarity
 */

/* === HERO === */
.poc-wic-hero {
	position: relative;
	width: 100%;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.poc-wic-hero__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}

.poc-wic-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.75);
	z-index: 1;
}

.poc-wic-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: var(--poc-space-2xl, 6rem) 0;
}

.poc-wic-hero__content .poc-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 var(--poc-gutter, 2rem);
}

.poc-wic-hero__title {
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 400;
	color: var(--poc-primary, #5a7d7c);
	margin: 0 0 2rem;
	line-height: 1.2;
}

.poc-wic-hero__subtitle {
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(1.125rem, 2.5vw, 1.375rem);
	font-style: italic;
	color: var(--poc-primary, #5a7d7c);
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 768px) {
	.poc-wic-hero {
		min-height: 50vh;
	}

	.poc-wic-hero__content {
		padding: var(--poc-space-xl, 4rem) 0;
	}
}

/* === CONTENT === */
.poc-wic-content {
	padding: var(--poc-space-2xl, 6rem) 0;
	background: var(--poc-bg, #fafaf8);
}

.poc-wic-content .poc-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 var(--poc-gutter, 2rem);
}

/* === TAGLINE === */
.poc-wic-tagline {
	font-family: 'Crimson Text', Georgia, serif;
	font-size: clamp(1.0625rem, 2vw, 1.1875rem);
	color: var(--poc-text, #3a4543);
	line-height: 1.9;
	margin: 0 0 3rem;
}

/* === KAREN SECTION === */
.poc-wic-karen-section {
	margin: 3rem 0;
}

.poc-wic-karen-portrait {
	width: 100%;
	max-width: 400px;
	margin: 0 0 2rem 0;
}

.poc-wic-karen-portrait__image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.poc-wic-karen-info {
	margin-bottom: 2rem;
}

.poc-wic-karen-title {
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 400;
	color: var(--poc-primary, #5a7d7c);
	margin: 0 0 0.5rem;
	line-height: 1.3;
}

.poc-wic-karen-byline {
	font-family: var(--poc-font-sans, 'Inter', sans-serif);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--poc-primary, #5a7d7c);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0;
}

/* === DEFINITION === */
.poc-wic-definition {
	margin: 2.5rem 0;
}

.poc-wic-definition-title {
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 400;
	font-style: italic;
	color: var(--poc-primary, #5a7d7c);
	margin: 0 0 1.5rem;
	line-height: 1.3;
}

.poc-wic-definition-list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
}

.poc-wic-definition-list li {
	font-family: 'Crimson Text', Georgia, serif;
	font-size: clamp(1.0625rem, 2vw, 1.1875rem);
	line-height: 1.9;
	color: var(--poc-text, #3a4543);
	margin-bottom: 0.75rem;
	padding-left: 1.5rem;
	position: relative;
}

.poc-wic-definition-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--poc-primary, #5a7d7c);
	font-weight: bold;
}

/* === INTRO === */
.poc-wic-intro {
	font-family: 'Crimson Text', Georgia, serif;
	font-size: clamp(1.0625rem, 2vw, 1.1875rem);
	line-height: 1.9;
	color: var(--poc-text-light, #6b7c7a);
	margin: 2.5rem 0;
	font-style: italic;
}

.poc-wic-intro p {
	margin: 0 0 1.5rem;
}

.poc-wic-intro p:last-child {
	margin-bottom: 0;
}

/* === EXPLORE === */
.poc-wic-explore {
	margin: 2.5rem 0;
}

.poc-wic-explore-content {
	font-family: 'Crimson Text', Georgia, serif;
	font-size: clamp(1.0625rem, 2vw, 1.1875rem);
	line-height: 1.9;
	color: var(--poc-text, #3a4543);
}

.poc-wic-explore-content p {
	margin: 0 0 1.5rem;
}

.poc-wic-explore-content p:last-child {
	margin-bottom: 0;
}

.poc-wic-explore-content a {
	color: var(--poc-primary, #5a7d7c);
	text-decoration: underline;
	text-decoration-color: var(--poc-primary-light, #7a9e9d);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: all var(--poc-transition, 0.3s ease);
}

.poc-wic-explore-content a:hover {
	color: var(--poc-accent, #d4a373);
	text-decoration-color: var(--poc-accent, #d4a373);
}

.poc-wic-explore-content strong,
.poc-wic-explore-content b {
	font-weight: 600;
}

.poc-wic-explore-content em,
.poc-wic-explore-content i {
	font-style: italic;
}

.poc-wic-explore-content ul,
.poc-wic-explore-content ol {
	margin: 1.5rem 0;
	padding-left: 2rem;
}

.poc-wic-explore-content li {
	margin-bottom: 0.75rem;
}

/* === CAROUSEL === */
.poc-wic-carousel {
	width: 100%;
	overflow: hidden;
	background: var(--poc-bg-alt, #f4f3f0);
	padding: var(--poc-space-xl, 4rem) 0;
}

.poc-wic-carousel-wrapper {
	display: flex;
	gap: var(--poc-space-md, 1.5rem);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 0 var(--poc-gutter, 2rem);
}

.poc-wic-carousel-wrapper::-webkit-scrollbar {
	display: none;
}

.poc-wic-carousel-slide {
	flex: 0 0 auto;
	width: 400px;
	scroll-snap-align: start;
}

.poc-wic-carousel-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
	border-radius: 4px;
}

@media (max-width: 768px) {
	.poc-wic-carousel-slide {
		width: 300px;
	}

	.poc-wic-carousel-image {
		height: 225px;
	}
}

@media (max-width: 480px) {
	.poc-wic-carousel-slide {
		width: 250px;
	}

	.poc-wic-carousel-image {
		height: 188px;
	}
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
	.poc-wic-content {
		padding: var(--poc-space-xl, 4rem) 0;
	}

	.poc-wic-hero {
		height: 150px;
	}
}

@media (max-width: 480px) {
	.poc-wic-content {
		padding: var(--poc-space-lg, 2.5rem) 0;
	}

	.poc-wic-hero {
		height: 120px;
	}
}
