/* De Alva — FAQ hub (4-card landing grid). v1.0.0
   Tokens: --navy, --red, --muted, --line, --white, --sans
   Adapted from the supplied landing-grid spec; cards are <a> with <span> children.
*/

.dealva-faq-landing {
	max-width: 1240px;
	margin: 0 auto;
	padding: 56px 24px 80px;
	font-family: var(--sans);
}

.dealva-faq-landing__intro {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 40px;
}

.dealva-faq-landing__intro p {
	font-size: 1.1rem;
	color: var(--muted);
	line-height: 1.6;
	margin: 0;
}

.dealva-faq-landing__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.dealva-faq-landing-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #e6e9ef;
	border-top: 3px solid var(--red);
	box-shadow: 0 4px 14px rgba(26, 43, 94, 0.07), 0 1px 3px rgba(0, 0, 0, 0.04);
	text-decoration: none !important;
	color: inherit;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dealva-faq-landing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(26, 43, 94, 0.14);
	border-color: #d4d8e0;
}

.dealva-faq-landing-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
	background-color: var(--line);
}

.dealva-faq-landing-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px 22px 24px;
}

.dealva-faq-landing-card__body h3 {
	font-size: 1.12rem;
	margin: 0 0 10px;
	color: var(--navy);
	line-height: 1.3;
	font-weight: 600;
}

.dealva-faq-landing-card__body p {
	font-size: 0.92rem;
	color: var(--muted);
	margin: 0 0 16px;
	flex: 1;
	line-height: 1.55;
}

.dealva-faq-landing-card__cta {
	font-weight: 600;
	color: var(--red);
	font-size: 0.92rem;
	letter-spacing: 0.01em;
}

@media (max-width: 1024px) {
	.dealva-faq-landing__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 540px) {
	.dealva-faq-landing__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}
