.news-repeater-grid {
	display: grid;
	width: 100%;
}

.news-card {
	display: flex;
	flex-direction: column;
	background-color: transparent;
	/* Default spacing as per context visual, adjustable via controls */
}

.news-card-divider {
	width: 100%;
	border-top: 1px solid #333; /* Default, overridden by controls */
	margin-bottom: 20px;
}

.news-card-image-wrapper {
	margin-bottom: 20px;
	width: 100%;
}

.news-card-image {
	position: relative; /* Context for absolute icon */
	overflow: hidden; /* Contains img and ensures border-radius clips */
}

.news-card-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.news-card-image-link {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.news-card-image-link:hover img {
	transform: scale(1.05);
}

.news-card-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.5); /* Default fallback */
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.news-card-image-link:hover .news-card-play-icon {
	background-color: rgba(239, 63, 63, 0.8); /* Accent color on hover roughly */
	transform: translate(-50%, -50%) scale(1.1);
}

.news-card-play-icon i {
	font-size: 24px;
	color: #fff;
	margin-left: 2px; /* Visual center correction for play icon */
}

.news-card-subtitle {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 15px;
	color: #ef3f3f; /* Brand accent default */
}

.news-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 15px 0;
	color: #F5F5F5;
}

.news-card-desc {
	font-size: 1rem;
	line-height: 1.6;
	color: #D1D1D1;
	flex-grow: 1; /* Pushes button to bottom if height fixed */
	margin-bottom: 20px;
}

.news-card-footer {
	margin-top: auto;
}

.news-card-button {
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	color: #F5F5F5;
	transition: opacity 0.3s;
}

.news-card-button:hover {
	opacity: 0.8;
}