/* Frontend styles for Card block */

.card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: #fff;
	border: 1px solid #e0e0e0;
	padding: 1rem 1.5rem 1.5rem 1.5rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
	height: 100%;
}

.card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card__content {
	flex: 1;
}

.card__heading {
	color: #003d7a;
	font-size: 1.5rem;
	font-weight: 400;
	margin: 0 0 1rem 0;
	line-height: 1.3;
}

.card__body {
	color: #666;
	line-height: 1.6;
	margin: 0 0 1rem 0;
}

.card__footer {
	margin-top: auto;
	padding-top: 1rem;
}

.card__link {
	display: inline-block;
	color: #003d7a;
	text-decoration: none;
	font-weight: 600;
}

.card__link:hover {
	text-decoration: underline;
}
