/**
 * News Card Component Styles (Reusable)
 * Contract: content_pages_contract.md A4
 * Used by: News archive, Latest news section
 *
 * @package MG
 */

/* ========================================
   News Card Container
   Contract A4
   ======================================== */

.news-card {
	display: block;
	background: #fff;
	border-radius: 0; /* Clean, modern look */
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Card Link (Reset)
   Contract A4
   ======================================== */

.news-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.news-card__link:hover {
	text-decoration: none;
}

/* ========================================
   Card Image
   Contract A4: 16:9 aspect ratio
   ======================================== */

.news-card__image-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9; /* Contract A4 */
	overflow: hidden;
	background: #f5f5f5; /* Fallback while loading */
}

.news-card__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover; /* Contract A4 */
	object-position: center;
	display: block;
}

/* ========================================
   Card Content
   Contract A4: 24px padding
   ======================================== */

.news-card__content {
	padding: 24px; /* Contract A4 */
}

/* ========================================
   Card Date
   Contract A4
   ======================================== */

.news-card__date {
	display: block;
	font-size: 14px;
	line-height: 1.4;
	color: #666;
	margin-bottom: 12px;
}

/* ========================================
   Card Title
   Contract A4: 2-line clamp
   ======================================== */

.news-card__title {
	font-size: 20px;
	line-height: 1.3;
	font-weight: 400;
	color: #000;
	margin: 0 0 12px;
	/* Contract A4: 2-line clamp */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ========================================
   Card Excerpt
   Contract A4: 3-line clamp
   ======================================== */

.news-card__excerpt {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	margin: 0;
	/* Contract A4: 3-line clamp */
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news-card__excerpt p {
	margin: 0;
}