.lra-related-articles {
	--lra-ink: #0c2855;
	--lra-card-background: #fff;
	--lra-radius: 7px;
	--lra-shadow: 0 3px 8px rgba(12, 40, 85, 0.17);
	width: 100%;
	margin: 0;
	color: var(--lra-ink);
	font-family: inherit;
}

.lra-related-articles *,
.lra-related-articles *::before,
.lra-related-articles *::after {
	box-sizing: border-box;
}

.lra-related-articles__list {
	display: grid;
	gap: 15px;
}

.lra-card {
	min-width: 0;
	margin: 0;
	overflow: hidden;
	border-radius: var(--lra-radius);
	background: var(--lra-card-background);
	transition:
		transform 160ms ease,
		box-shadow 160ms ease;
	border: 1px solid #162D55;
}

.lra-card__link {
	display: grid;
	grid-template-columns: clamp(94px, 29%, 175px) minmax(0, 1fr);
	min-height: 64px;
	color: var(--lra-ink);
	text-decoration: none;
}

.lra-card__media {
	display: block;
	min-height: 64px;
	overflow: hidden;
	background: #e7edf5;
}

.lra-card__image,
.lra-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 64px;
	aspect-ratio: 3 / 2;
}

.lra-card__image {
	object-fit: cover;
}

.lra-card__placeholder {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, #e8eef6, #d3dfed);
}

.lra-card__placeholder svg {
	width: 30px;
	fill: none;
	stroke: #6e82a0;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.lra-card__content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
	padding: 10px 16px;
}

.lra-card__title {
	display: -webkit-box;
	overflow: hidden;
	color: var(--lra-ink);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.lra-card__date {
	margin-top: 2px;
	color: var(--lra-ink);
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.25;
}

.lra-card__date strong {
	font-weight: 700;
}

.lra-card:hover {
	border-color: #ED1847;
	box-shadow: var(--lra-shadow);
}

.lra-card:hover .lra-card__title {
	color: #ED1847 ;
}

.lra-card__link:focus-visible {
	outline: 3px solid #3978c5;
	outline-offset: -3px;
}

.lra-related-articles__next {
	display: flex;
	justify-content: flex-end;
	margin-top: 38px;
}

.lra-next-article {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	gap: 13px;
	padding: 10px 15px 10px 19px;
	border: 1px solid #1B3A66;
	border-radius: 6px;
	background-color: transparent;
	color: #1B3A66;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	background-image: url(https://staging2.fishgate.co.za/moov-new/wp-content/uploads/2026/08/btn_back_red.svg);
	background-repeat: no-repeat;
	background-size: 120%;
	background-position: -185px center;
	transition: border-color 0.2s ease,
		background-position 0.23s ease,
		color 160ms ease;
}

.lra-next-article::after {
	width: 21px;
	height: 13px;
	flex: 0 0 21px;
	background: url("https://staging2.fishgate.co.za/moov-new/wp-content/uploads/2026/06/button-arrow.svg") center / contain no-repeat;
	content: "";
}

.lra-next-article:hover,
.lra-next-article:focus-visible {
	/* background-color: #1B3A66; */
	color: #fff;
	background-position: 0px center;
	border-color: #ED1847;
}

.lra-next-article:hover::after,
.lra-next-article:focus-visible::after {
	background-image: url("https://staging2.fishgate.co.za/moov-new/wp-content/uploads/2026/06/button-arrow-white.svg");
}

.lra-next-article:focus-visible {
	outline: 3px solid rgba(22, 45, 85, 0.3);
	outline-offset: 3px;
}

.lra-post-navigation {
	--lra-navigation-ink: #1B3A66;
	display: grid;
	width: 100%;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 32px;
	padding-top: 29px;
	border-top: 1px solid #1B3A6655;
	color: var(--lra-navigation-ink);
	font-family: inherit;
}

.lra-post-navigation *,
.lra-post-navigation *::before,
.lra-post-navigation *::after {
	box-sizing: border-box;
}

.lra-post-navigation__item {
	min-width: 0;
}

.lra-post-navigation__item--next {
	display: flex;
	justify-content: flex-end;
}

.lra-post-navigation__link {
	display: inline-flex;
	min-width: 0;
	align-items: center;
	gap: 15px;
	color: var(--lra-navigation-ink);
	text-decoration: none;
}

.lra-post-navigation__link--next {
	justify-content: flex-end;
}

.lra-post-navigation__arrow {
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.lra-post-navigation__link--previous .lra-post-navigation__arrow {
	background-image: url("prev-btn.svg");
}

.lra-post-navigation__link--next .lra-post-navigation__arrow {
	background-image: url("next-btn.svg");
}

.lra-post-navigation__link--previous:hover .lra-post-navigation__arrow,
.lra-post-navigation__link--previous:focus-visible .lra-post-navigation__arrow {
	background-image: url("https://staging2.fishgate.co.za/moov-new/wp-content/uploads/2026/07/hover-prev-btn-pink.svg");
}

.lra-post-navigation__link--next:hover .lra-post-navigation__arrow,
.lra-post-navigation__link--next:focus-visible .lra-post-navigation__arrow {
	background-image: url("https://staging2.fishgate.co.za/moov-new/wp-content/uploads/2026/07/hover-next-btn-pink.svg");
}

.lra-post-navigation__content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
}

.lra-post-navigation__title {
	display: -webkit-box;
	overflow: hidden;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.15;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-family: 'Century Gothic Bold',Helvetica,Arial,Lucida,sans-serif;
}

.lra-post-navigation__date {
	margin-top: 2px;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.2;
	font-family: 'Century Gothic Regular',Helvetica,Arial,Lucida,sans-serif;
}

.lra-post-navigation__date strong {
	font-weight: 400;
	font-family: 'Century Gothic Bold',Helvetica,Arial,Lucida,sans-serif !important;
}

.lra-post-navigation__mobile-label {
	display: none;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.15;
	white-space: nowrap;
}

.lra-post-navigation__link:focus-visible {
	border-radius: 4px;
	outline: 3px solid rgba(22, 45, 85, 0.3);
	outline-offset: 4px;
}

/* RESPONSIVE CSS */
@media (max-width: 767px) {
	.lra-post-navigation {
		padding: 20px 0 !important;
		border-bottom: 1px solid #1B3A6655 !important;
	}

	.lra-post-navigation__content {
		gap: 3px !important;
	}

	.lra-post-navigation__title {
		font-size: 16px !important;
		line-height: 20px !important;
	}

	.lra-post-navigation__date {
		font-size: 13px !important;
		line-height: 16px !important;
	}

	.lra-post-navigation__date strong {
		display: block !important;
	}
}

@media (max-width: 420px) {
	.lra-related-articles__list {
		gap: 14px;
	}

	.lra-card__link {
		grid-template-columns: 94px minmax(0, 1fr);
	}

	.lra-card__content {
		padding: 8px 12px;
	}
}

@media (max-width: 460px) {
	.lra-post-navigation {
		gap: 16px;
	}

	.lra-post-navigation__link {
		gap: 10px;
	}

	.lra-post-navigation__content {
		/* display: none; */
	}

	.lra-post-navigation__mobile-label {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lra-card,
	.lra-next-article {
		transition: none;
	}
}
