/* Cards Grid */
.cards-section {
	background-color: var(--color-bg-dark);
	padding: 64px var(--page-padding);
}
.cards__header {
	display: flex;
	color: var(--color-white);
	flex-direction: column;
	gap: 16px;
	text-align: center;
	margin-bottom: 60px;
}
.cards_header h2 {
	font-weight: 600;
	line-height: 120%; /* 57.6px */
	letter-spacing: -0.48px;
}
.cards__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.card {
	background-color: var(--color-fg-dark);
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-medium);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	color: white;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	cursor: pointer;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.card__header {
	background-color: transparent;
	border-bottom: 0;
	padding: 0;
	display: flex;
	gap: 16px;
	align-items: center;
}

.card__icon {
	min-width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.card h4 {
	font-family: var(--font-libre);
	color: white;
	margin-bottom: 0;
}

.card__link {
	display: flex;
	gap: 16px;
	align-items: center;
	color: white;
	font-weight: 500;
	margin-top: auto;
}

@media (max-width: 991px) {
	/* Cards Section */
	.cards__grid {
		grid-template-columns: 1fr;
	}

	.card__header {
		flex-direction: column;
		align-items: flex-start;
	}
}
