/* ==========================================================================
   Northfield Theatre — News / Blog
   ========================================================================== */

.news-archive,
.news-post {
	background: var(--color-bg);
}

/* --- News archive hero ---------------------------------------------- */
.news-archive__hero {
	background: var(--color-dark);
	color: var(--color-bg);
	padding: var(--space-3xl) 0;
}

.news-archive__hero-inner {
	max-width: 820px;
}

.news-archive__eyebrow {
	font-size: var(--text-sm);
	font-weight: var(--weight-semibold);
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: var(--space-md);
}

.news-archive__title {
	color: var(--color-bg);
	font-size: clamp(2.25rem, 5vw, 4rem);
	font-weight: var(--weight-black);
	line-height: 1;
	letter-spacing: -0.02em;
	margin-bottom: var(--space-lg);
}

.news-archive__lead {
	font-size: var(--text-lg);
	color: rgba(255, 255, 255, 0.85);
	line-height: var(--leading-normal);
	max-width: 58ch;
}

/* --- Feature card --------------------------------------------------- */
.news-feature {
	padding: var(--space-3xl) 0 var(--space-2xl);
}

.news-feature__link {
	display: block;
	color: inherit;
	text-decoration: none;
	transition: transform var(--transition-base);
}

.news-feature__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	border: 1px solid var(--color-border);
	border-top: 4px solid var(--color-accent);
	overflow: hidden;
	background: var(--color-bg);
	transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

@media (min-width: 768px) {
	.news-feature__grid {
		grid-template-columns: 1.4fr 1fr;
	}
}

.news-feature__link:hover .news-feature__grid {
	box-shadow: var(--shadow-lg);
	border-top-color: var(--color-primary);
}

.news-feature__body {
	padding: var(--space-2xl);
}

@media (min-width: 768px) {
	.news-feature__body {
		padding: var(--space-3xl);
	}
}

.news-feature__category {
	display: inline-block;
	font-size: var(--text-xs);
	font-weight: var(--weight-bold);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: var(--space-md);
	padding: 4px 10px;
	background: rgba(27, 77, 62, 0.08);
	border-radius: 2px;
}

.news-feature__title {
	font-family: var(--font-heading);
	font-size: clamp(1.75rem, 4vw, 3rem);
	font-weight: var(--weight-extrabold);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--color-dark);
	margin-bottom: var(--space-md);
}

.news-feature__excerpt {
	font-size: var(--text-lg);
	line-height: var(--leading-normal);
	color: var(--color-text);
	margin-bottom: var(--space-lg);
}

.news-feature__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

.news-feature__readmore {
	color: var(--color-primary);
	font-weight: var(--weight-semibold);
}

.news-feature__media {
	background-color: var(--color-primary);
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	min-height: 280px;
}
.news-feature__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.0) 40%, rgba(0, 0, 0, 0.35));
	transition: opacity var(--transition-base);
}
.news-feature__link:hover .news-feature__media::after {
	opacity: 0.5;
}

/* --- News list ------------------------------------------------------- */
.news-list {
	padding: var(--space-3xl) 0;
}

.news-list__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
}

@media (min-width: 768px) {
	.news-list__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1100px) {
	.news-list__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.news-card {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.news-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
	border-color: var(--color-primary);
}

.news-card__link {
	display: block;
	padding: var(--space-xl);
	color: inherit;
	text-decoration: none;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.news-card__category {
	display: inline-block;
	font-size: var(--text-xs);
	font-weight: var(--weight-bold);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-accent-dark);
	margin-bottom: var(--space-sm);
}

.news-card__title {
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: var(--weight-bold);
	color: var(--color-dark);
	margin-bottom: var(--space-sm);
	line-height: 1.2;
}

.news-card__excerpt {
	font-size: var(--text-sm);
	line-height: var(--leading-snug);
	color: var(--color-text-muted);
	margin-bottom: var(--space-md);
	flex: 1;
}

.news-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	padding-top: var(--space-sm);
	border-top: 1px solid var(--color-border);
}

.news-card__arrow {
	color: var(--color-primary);
	font-weight: var(--weight-bold);
	transition: transform var(--transition-base);
}

.news-card:hover .news-card__arrow {
	transform: translateX(4px);
}

.news-list__empty {
	text-align: center;
	padding: var(--space-3xl) 0;
	font-size: var(--text-lg);
	color: var(--color-text-muted);
}

.news-list__pagination {
	display: flex;
	justify-content: center;
	gap: var(--space-sm);
	margin-top: var(--space-2xl);
	flex-wrap: wrap;
}

.news-list__pagination .page-numbers {
	padding: var(--space-sm) var(--space-md);
	border: 1px solid var(--color-border);
	color: var(--color-text);
	text-decoration: none;
	font-weight: var(--weight-semibold);
	transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.news-list__pagination .page-numbers:hover {
	background: var(--color-primary);
	color: var(--color-bg);
	border-color: var(--color-primary);
}

.news-list__pagination .page-numbers.current {
	background: var(--color-primary);
	color: var(--color-bg);
	border-color: var(--color-primary);
}

/* --- Single news post ----------------------------------------------- */
.news-post__hero {
	background: var(--color-dark);
	background-size: cover;
	background-position: center;
	color: var(--color-bg);
	padding: var(--space-3xl) 0;
	position: relative;
	overflow: hidden;
}

.news-post__hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.75) 100%),
		radial-gradient(circle at 85% 100%, rgba(232, 163, 61, 0.12), transparent 60%);
	pointer-events: none;
}
.news-post__hero--has-image { min-height: 380px; }
.news-post__hero--has-image::before {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.news-post__hero-inner {
	position: relative;
	max-width: 820px;
}

.news-post__breadcrumb {
	margin-bottom: var(--space-xl);
}

.news-post__breadcrumb a {
	color: rgba(255, 255, 255, 0.7);
	font-size: var(--text-sm);
	font-weight: var(--weight-semibold);
	letter-spacing: 0.05em;
	text-decoration: none;
	transition: color var(--transition-base);
}

.news-post__breadcrumb a:hover {
	color: var(--color-accent);
}

.news-post__category {
	display: inline-block;
	font-size: var(--text-xs);
	font-weight: var(--weight-bold);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: var(--space-md);
}

.news-post__title {
	color: var(--color-bg);
	font-size: clamp(2rem, 5vw, 3.75rem);
	font-weight: var(--weight-black);
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin-bottom: var(--space-lg);
	max-width: 22ch;
}

.news-post__meta {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	color: rgba(255, 255, 255, 0.7);
	font-size: var(--text-sm);
	letter-spacing: 0.02em;
}

.news-post__dot {
	opacity: 0.6;
}

/* --- Single post body ---------------------------------------------- */
.news-post__body {
	padding: var(--space-3xl) 0;
}

.news-post__content {
	font-size: var(--text-lg);
	line-height: 1.7;
	color: var(--color-text);
}

.news-post__content p {
	margin-bottom: var(--space-lg);
}

.news-post__content p:first-of-type {
	font-size: var(--text-xl);
	line-height: 1.5;
	color: var(--color-dark);
	font-family: var(--font-heading);
	font-weight: var(--weight-medium);
}

.news-post__content h2,
.news-post__content h3 {
	margin-top: var(--space-2xl);
	margin-bottom: var(--space-md);
}

.news-post__content blockquote {
	border-left: 4px solid var(--color-accent);
	padding: var(--space-md) 0 var(--space-md) var(--space-xl);
	margin: var(--space-xl) 0;
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-style: italic;
	font-weight: var(--weight-medium);
	color: var(--color-dark);
	line-height: 1.4;
}

.news-post__content ul,
.news-post__content ol {
	margin: var(--space-md) 0 var(--space-lg);
	padding-left: var(--space-xl);
}

.news-post__content li {
	margin-bottom: var(--space-sm);
	line-height: var(--leading-normal);
}

.news-post__content a {
	color: var(--color-primary);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.news-post__content a:hover {
	color: var(--color-primary-dark);
}

.news-post__footer {
	margin-top: var(--space-2xl);
	padding-top: var(--space-xl);
	border-top: 1px solid var(--color-border);
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
	align-items: center;
	justify-content: space-between;
}

.news-post__tags {
	list-style: none;
	padding: 0;
	display: flex;
	gap: var(--space-sm);
	flex-wrap: wrap;
}

.news-post__tags a {
	font-size: var(--text-sm);
	padding: 4px 10px;
	background: var(--color-bg-soft);
	color: var(--color-text);
	text-decoration: none;
	border-radius: 2px;
	transition: background-color var(--transition-base);
}

.news-post__tags a:hover {
	background: var(--color-primary);
	color: var(--color-bg);
}

/* --- Related --------------------------------------------------------- */
.news-related {
	padding: var(--space-3xl) 0;
}

.news-related__heading {
	font-family: var(--font-heading);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: var(--weight-extrabold);
	letter-spacing: -0.02em;
	margin-bottom: var(--space-2xl);
}

.news-related__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
}

@media (min-width: 768px) {
	.news-related__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
