/* Directions block — ported from about-us mockup (.directions / .direction-card). */

.wdm-directions__head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 0 0 20px 0;
}

.wdm-directions__eyebrow {
	display: block;
	margin: 0 0 12px 0;
	line-height: 24px;
	font-size: 16px;
	font-weight: 600;
	color: #005CA9;
	text-transform: uppercase;
}

.wdm-directions__title {
	margin: 0 0 12px 0;
	line-height: 44px;
	font-size: 32px;
	font-weight: 700;
	color: #20201F;
	text-transform: uppercase;
}

.wdm-directions__subtitle {
	margin: 0;
	line-height: 24px;
	font-size: 16px;
	font-weight: 400;
	color: #4C4C4D;
}

.wdm-directions__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.wdm-direction-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 20px;
	background-color: #FFF;
	border-radius: 8px;
}

.wdm-direction-card__icon {
	display: flex;
	align-items: center;
	height: 24px;
	margin: 0 0 10px 0;
}

.wdm-direction-card__title {
	margin: 0 0 12px 0;
	line-height: 28px;
	font-size: 20px;
	font-weight: 700;
	color: #20201F;
	text-transform: uppercase;
}

.wdm-direction-card__text {
	margin: 0 0 20px 0;
	font-size: 16px;
	line-height: 24px;
	color: #323232;
}

.wdm-direction-card__link {
	margin-top: auto;
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
	color: #005CA9;
	text-decoration: none;
}

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

@media screen and (max-width: 991px) {
	.wdm-directions__title {
		font-size: 26px;
	}
}

@media screen and (max-width: 575px) {
	.wdm-directions__grid {
		grid-template-columns: 1fr;
		gap: 16px 0;
	}

	.wdm-direction-card__icon {
		margin-bottom: 8px;
	}
}
