.ag-news-grid-3c061bb7 {
	display: grid;
	gap: 20px;
}

.ag-news-card-3c061bb7 {
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ag-news-card-3c061bb7:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.ag-news-link-overlay-3c061bb7 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.ag-news-image-wrap-3c061bb7 {
	position: relative;
	padding-bottom: 60%; /* Aspect ratio for image */
	overflow: hidden;
	background-color: #f5f5f5;
}

.ag-news-image-wrap-3c061bb7 img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.ag-news-content-3c061bb7 {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.ag-news-title-3c061bb7 {
	margin: 0 0 10px 0;
	font-size: 1.25rem;
	line-height: 1.4;
	color: #333;
}

.ag-news-excerpt-3c061bb7 {
	margin: 0;
	color: #666;
	font-size: 0.95rem;
	line-height: 1.5;
}