.sda-related-articles {
	width: 100%;
	margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.sda-related-articles__list {
	display: grid;
	gap: .75rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.sda-related-articles__item {
	min-width: 0;
}

.sda-related-articles__card {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr) 50px;
	align-items: center;
	gap: clamp(1rem, 2.5vw, 1.75rem);
	min-height: 120px;
	padding: 0 clamp(1rem, 2.5vw, 1.5rem) 0 0;
	color: #000;
	text-decoration: none;
	background: #fff;
	border: 1px solid #aaa;
	border-radius: 10px;
	overflow: hidden;
	transform: translateY(0);
	transition: transform 180ms ease;
}

.sda-related-articles__card:hover,
.sda-related-articles__card:focus {
	color: #000;
	text-decoration: none;
	transform: translateY(-4px);
}

.sda-related-articles__card:focus-visible {
	outline: 3px solid #000;
	outline-offset: 4px;
}

.tf-faq-widget--item--answer .sda-related-articles {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.sda-related-articles__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	color: #000;
	background: #96dfdb;
}

.sda-related-articles__icon::before {
	content: "\f1ea";
	font-family: "Font Awesome 6 Free";
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
}

.sda-related-articles__title {
	display: -webkit-box;
	min-width: 0;
	overflow: hidden;
	font-size: clamp(1.125rem, 1.05rem + .25vw, 1.25rem);
	font-weight: 700;
	line-height: 1.2;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.sda-related-articles__plus {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	border: 1px solid #000;
	border-radius: 50%;
}

.sda-related-articles__plus::before,
.sda-related-articles__plus::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 18px;
	height: 1px;
	content: "";
	background: #000;
	transform: translate(-50%, -50%);
}

.sda-related-articles__plus::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

@media (max-width: 770px) {
	.sda-related-articles__card {
		grid-template-columns: 42px minmax(0, 1fr);
		gap: .85rem;
		min-height: 72px;
		padding: .85rem;
	}

	.sda-related-articles__icon {
		display: none;
	}

	.sda-related-articles__title {
		grid-column: 2;
	}

	.sda-related-articles__plus {
		grid-column: 1;
		grid-row: 1;
		width: 42px;
		height: 42px;
	}
}

@media (max-width: 575.98px) {
	.sda-related-articles__card {
		gap: .85rem;
		min-height: 72px;
		padding: .85rem;
	}

	.sda-related-articles__plus {
		width: 42px;
		height: 42px;
	}
}
