/**
 * True North — instant recommendation panel.
 * Enqueued by the plugin; no need to paste this anywhere.
 */

.tn-reco {
	border-left: 3px solid #BB9759;
	background: #EEF4FB;
	padding: 30px 32px;
	margin-top: 24px;
	outline: none;
	font-family: inherit;
}

.tn-reco__heading {
	margin: 0 0 12px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 400;
	color: #0E3966;
}

.tn-reco__intro {
	margin: 0 0 24px;
	font-size: 17px;
	line-height: 1.55;
	color: rgba(0, 0, 0, .8);
}

.tn-reco__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 18px;
}

.tn-reco__card {
	background: #fff;
	border: 1px solid #E3E8EF;
	padding: 22px 24px;
	display: flex;
	flex-direction: column;
}

.tn-reco__card h4 {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.25;
	font-weight: 600;
	color: #0E3966;
}

.tn-reco__card p {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(0, 0, 0, .76);
	flex: 1;
}

.tn-reco__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	min-height: 40px;
	padding: 10px 20px;
	border: 2px solid transparent;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background .15s, color .15s, border-color .15s;
}

.tn-reco__btn--primary {
	background: #BB9759;
	color: #fff;
}

.tn-reco__btn--primary:hover,
.tn-reco__btn--primary:focus {
	background: #A5834A;
	color: #fff;
}

.tn-reco__btn--ghost {
	background: transparent;
	color: #0E3966;
	border-color: #0E3966;
}

.tn-reco__btn--ghost:hover,
.tn-reco__btn--ghost:focus {
	background: #0E3966;
	color: #fff;
}

.tn-reco__btn:focus-visible {
	outline: 3px solid #BB9759;
	outline-offset: 2px;
}

.tn-reco__footer {
	margin: 22px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(0, 0, 0, .7);
}

@media (max-width: 767px) {
	.tn-reco { padding: 24px 20px; }
	.tn-reco__heading { font-size: 21px; }
}

@media (prefers-reduced-motion: reduce) {
	.tn-reco__btn { transition: none; }
}
