/* LatValley Zone News & Events component */
.section-news-events {
	position: relative;
	overflow: hidden;
	padding: var(--lv-section-padding, 100px) 0;
	background: var(--lv-bg, #FBF8F2);
	color: var(--lv-body, #3D3028);
}

.news-events__container,
.news-events__header,
.news-events__grid,
.news-events__col {
	position: relative;
}

.news-events__header {
	max-width: 760px;
	margin: 0 auto 44px;
	text-align: center;
}

.news-events__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	color: var(--lv-gold-dark, #A07828);
	font-family: var(--lv-font-body, 'Roboto', sans-serif);
	font-size: var(--lv-font-size-label, 14px);
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.news-events__eyebrow-icon {
	display: block;
	flex: 0 0 auto;
}

.news-events__title {
	margin: 0;
	color: var(--lv-green-deep, #2E3A1A);
	font-family: var(--lv-font-heading, 'Playfair Display', serif);
	font-size: clamp(32px, 6vw, var(--lv-font-size-h2, 60px));
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1.12;
}

.news-events__grid {
	display: grid;
	gap: 44px 24px;
}

.news-events__col-title {
	margin: 0 0 20px;
	color: var(--lv-green-deep, #2E3A1A);
	font-family: var(--lv-font-body, 'Roboto', sans-serif);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.news-gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.news-gallery__item {
	display: block;
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	border-radius: var(--lv-radius-sm, 4px);
	background: var(--lv-green-pale, #E5EDCC);
	box-shadow: var(--lv-shadow-sm, 0 2px 8px rgba(30, 45, 15, 0.06));
}

.news-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.news-gallery__overlay {
	display: flex;
	position: absolute;
	inset: 0;
	align-items: center;
	justify-content: center;
	background: rgba(30, 45, 15, 0.42);
	color: var(--lv-surface, #FFFFFF);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.news-gallery__item:hover img,
.news-gallery__item:focus-visible img {
	transform: scale(1.05);
}

.news-gallery__item:hover .news-gallery__overlay,
.news-gallery__item:focus-visible .news-gallery__overlay {
	opacity: 1;
}

.news-gallery__item:focus-visible,
.news-featured-card__thumbnail:focus-visible,
.news-list-card__thumbnail:focus-visible,
.news-featured-card__title a:focus-visible,
.news-featured-card__btn:focus-visible,
.news-list-card__title a:focus-visible {
	outline: 2px solid var(--lv-gold-core, #C9A030);
	outline-offset: 4px;
}

.news-featured-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	height: 100%;
	border: 1px solid var(--lv-border, #E4E0D8);
	border-radius: var(--lv-radius-md, 8px);
	background: var(--lv-surface, #FFFFFF);
	box-shadow: var(--lv-shadow-sm, 0 2px 8px rgba(30, 45, 15, 0.06));
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-featured-card:hover,
.news-featured-card:focus-within,
.news-list-card:hover,
.news-list-card:focus-within {
	transform: translateY(-4px);
	box-shadow: var(--lv-shadow-md, 0 4px 24px rgba(30, 45, 15, 0.1));
}

.news-featured-card__thumbnail {
	display: block;
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border-radius: var(--lv-radius-md, 8px) var(--lv-radius-md, 8px) 0 0;
	background: var(--lv-green-mist, #F4F7EE);
}

.news-featured-card__thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-featured-card__thumbnail--empty,
.news-list-card__thumbnail--empty {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--lv-green-mist, #F4F7EE);
}

.news-featured-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	padding: 24px 20px 22px;
}

.news-featured-card__meta,
.news-list-card__meta {
	margin: 0 0 10px;
	color: var(--lv-muted, #8A8078);
	font-family: var(--lv-font-body, 'Roboto', sans-serif);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.4;
	text-transform: uppercase;
}

.news-featured-card__title {
	margin: 0 0 12px;
	font-family: var(--lv-font-heading, 'Playfair Display', serif);
	font-size: clamp(24px, 3vw, var(--lv-font-size-h4, 28px));
	font-weight: 700;
	line-height: 1.3;
}

.news-featured-card__title a,
.news-list-card__title a {
	color: var(--lv-green-deep, #2E3A1A);
	text-decoration: none;
}

.news-featured-card__title a:hover,
.news-featured-card__title a:focus-visible,
.news-list-card__title a:hover,
.news-list-card__title a:focus-visible {
	color: var(--lv-green-mid, #4E7A22);
}

.news-featured-card__summary,
.news-list-card__summary {
	margin: 0 0 20px;
	color: var(--lv-body, #3D3028);
	font-family: var(--lv-font-body, 'Roboto', sans-serif);
	font-size: 15px;
	line-height: 1.6;
}

.news-featured-card__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding: 11px 17px;
	border-radius: var(--lv-radius-sm, 4px);
	background: var(--lv-green-mid, #4E7A22);
	color: var(--lv-gold-core, #C9A030);
	font-family: var(--lv-font-body, 'Roboto', sans-serif);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.3;
	text-decoration: none;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.news-featured-card__btn:hover,
.news-featured-card__btn:focus-visible {
	background: var(--lv-green-core, #3D4F22);
	color: var(--lv-gold-light, #E0BB5A);
}

.news-list {
	display: grid;
	gap: 12px;
}

.news-list-card {
	display: flex;
	min-width: 0;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid var(--lv-border, #E4E0D8);
	background: transparent;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-list-card:first-child {
	padding-top: 0;
}

.news-list-card__thumbnail {
	display: block;
	width: 80px;
	height: 80px;
	flex: 0 0 80px;
	overflow: hidden;
	border-radius: var(--lv-radius-sm, 4px);
	background: var(--lv-green-mist, #F4F7EE);
}

.news-list-card__thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.news-list-card:hover .news-list-card__thumbnail img,
.news-list-card:focus-within .news-list-card__thumbnail img {
	transform: scale(1.05);
}

.news-list-card__info {
	min-width: 0;
}

.news-list-card__title {
	margin: 0 0 7px;
	font-family: var(--lv-font-heading, 'Playfair Display', serif);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.3;
}

.news-list-card__summary {
	display: -webkit-box;
	overflow: hidden;
	margin-bottom: 0;
	font-size: 14px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.news-empty {
	margin: 0;
	padding: 20px;
	border: 1px dashed var(--lv-border, #E4E0D8);
	border-radius: var(--lv-radius-sm, 4px);
	color: var(--lv-muted, #8A8078);
	font-family: var(--lv-font-body, 'Roboto', sans-serif);
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
}

@media (min-width: 768px) {
	.news-events__container {
		padding-right: 20px;
		padding-left: 20px;
	}

	.news-events__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 44px 30px;
	}

	.news-events__col--list {
		grid-column: 1 / -1;
	}

	.news-featured-card__content {
		padding: 28px 24px 24px;
	}
}

@media (min-width: 1200px) {
	.news-events__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 30px;
	}

	.news-events__col--list {
		grid-column: auto;
	}

	.news-list-card__title {
		font-size: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.news-gallery__item img,
	.news-gallery__overlay,
	.news-featured-card,
	.news-featured-card__btn,
	.news-list-card,
	.news-list-card__thumbnail img {
		transition: none;
	}
}