/**
 * Series Single/Detail Page Styles
 * 
 * @package Plastpro
 * @since 1.0.0
 */

/* Hero Section - Now uses shared .series-hero styles from series-archive.css */
/* All hero styling is handled in series-archive.css for consistency */

/* Series Introduction */
.series-intro {
	padding: 3rem 0;
	background: #FFFFFF;
}

.series-intro-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #1D252D;
}

.series-intro-description {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #7C878E;
	max-width: 900px;
}

/* Series Content Area */
.series-content {
	padding: 3rem 0;
	background: #FFFFFF;
}

.series-content-wrapper {
	max-width: 1200px;
	margin: 0 auto;
}

.series-content-wrapper h2,
.series-content-wrapper h3 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: #1D252D;
}

.series-content-wrapper h2 {
	font-size: 2rem;
	font-weight: 700;
}

.series-content-wrapper h3 {
	font-size: 1.5rem;
	font-weight: 700;
}

.series-content-wrapper p {
	margin-bottom: 1.5rem;
	line-height: 1.8;
	color: #1D252D;
}

.series-content-wrapper img {
	max-width: 100%;
	height: auto;
	margin: 1.5rem 0;
	border-radius: 8px;
}

/* Gallery Items Section */
.series-gallery-items {
	padding: 4rem 0;
}

.series-gallery-items-title {
	color: #000000;
	font-size: 40px;
	font-family: var(--plastpro-font-family, 'Montserrat', sans-serif);
	font-weight: 300;
	line-height: 32px;
	word-wrap: break-word;
	margin-bottom: 3rem;
	text-align: center;
}


.series-gallery-item {
	display: flex;
	align-items: center;
	gap: 4rem;
	margin-bottom: 4rem;
}

.series-gallery-item:last-child {
	margin-bottom: 0;
}

/* Image on left, content on right */
.series-gallery-item-left {
	flex-direction: row;
}

/* Image on right, content on left */
.series-gallery-item-right {
	flex-direction: row-reverse;
}

.series-gallery-item-image {
	flex: 0 0 500px;
	width: 500px;
	height: 500px;
	overflow: hidden;
}

.series-gallery-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.series-gallery-item-content {
	flex: 1;
	max-width: 600px;
}

.series-gallery-item-title {
	color: #000000;
	font-size: 40px;
	font-family: var(--plastpro-font-family-heading, 'Gilda Display', serif);
	font-weight: 400;
	line-height: 40px;
	word-wrap: break-word;
	margin-bottom: 1.5rem;
}

.series-gallery-item-paragraph {
	font-family: var(--plastpro-font-family, 'Montserrat', sans-serif);
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.6;
	color: #1D252D;
}

.series-gallery-item-paragraph p {
	margin-bottom: 1rem;
}

.series-gallery-item-paragraph p:last-child {
	margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
	.series-gallery-item {
		gap: 3rem;
	}

	.series-gallery-item-image {
		flex: 0 0 400px;
		width: 400px;
		height: 400px;
	}

	.series-gallery-item-title {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	/* Hero responsive styles are in series-archive.css */

	.series-intro-title {
		font-size: 2rem;
	}

	.series-intro,
	.series-content {
		padding: 2rem 0;
	}

	.series-gallery-items {
		padding: 3rem 0;
	}

	.series-gallery-items-title {
		font-size: 2rem;
		line-height: 1.5;
		margin-bottom: 2rem;
	}

	.series-gallery-item {
		flex-direction: column !important;
		gap: 2rem;
		margin-bottom: 3rem;
	}

	.series-gallery-item-image {
		flex: 0 0 auto;
		width: 100%;
		max-width: 500px;
		height: auto;
		aspect-ratio: 1 / 1;
	}

	.series-gallery-item-content {
		max-width: 100%;
	}

	.series-gallery-item-title {
		font-size: 1.75rem;
		margin-bottom: 1rem;
	}

	.series-gallery-item-paragraph {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.series-gallery-item-title {
		font-size: 1.5rem;
	}

	.series-gallery-item-paragraph {
		font-size: 0.9375rem;
	}
}

