:root {
	--tla-navy: #0b1f33;
	--tla-teal: #0e8a87;
	--tla-teal-light: #62d2c9;
	--tla-gold: #f4a340;
	--tla-ink: #233647;
	--tla-surface: #f4f8fa;
	--tla-border: #dce6ea;
}

.tla-home {
	margin-top: 0;
}

.tla-home h1,
.tla-home h2,
.tla-directory h1 {
	color: var(--tla-navy);
	letter-spacing: -.035em;
}

.tla-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
	gap: clamp(32px, 6vw, 78px);
	align-items: center;
	background: linear-gradient(135deg, #f7fbfc 0%, #eef8f7 58%, #fff7e9 100%);
	border: 1px solid var(--tla-border);
	border-radius: 24px;
	padding: clamp(32px, 5vw, 62px);
	overflow: hidden;
}

.tla-hero h1 {
	font-size: clamp(2.55rem, 4.8vw, 4.4rem);
	line-height: .99;
	margin: 0 0 22px;
	max-width: 900px;
}

.tla-hero__lead {
	font-size: clamp(1.08rem, 2vw, 1.3rem);
	line-height: 1.65;
	max-width: 780px;
}

.tla-hero__form {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	background: #fff;
	box-shadow: 0 12px 34px rgba(11, 31, 51, .08);
	margin-bottom: 12px;
}

.tla-hero__form button {
	grid-column: 1 / -1;
	justify-self: start;
}

.tla-hero__microcopy {
	color: #5e707c;
	font-size: .82rem;
}

.tla-hero__panel {
	background: var(--tla-navy);
	border-radius: 20px;
	color: #fff;
	padding: clamp(26px, 4vw, 42px);
	position: relative;
}

.tla-hero__panel::before {
	content: '';
	position: absolute;
	inset: -26px -26px auto auto;
	width: 104px;
	height: 104px;
	border: 18px solid rgba(98, 210, 201, .22);
	border-radius: 50%;
}

.tla-hero__panel-label {
	color: var(--tla-teal-light);
	font-size: .8rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.tla-hero__panel ul {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
}

.tla-hero__panel li {
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 15px;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, .14);
}

.tla-hero__panel li > span {
	color: var(--tla-gold);
	font-weight: 900;
}

.tla-hero__panel strong,
.tla-hero__panel small {
	display: block;
}

.tla-hero__panel small {
	color: #bed0da;
	line-height: 1.45;
	margin-top: 4px;
}

.tla-proof {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-bottom: 1px solid var(--tla-border);
	margin: 0 0 24px;
	padding: 26px 0;
}

.tla-proof div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 8px 22px;
	border-right: 1px solid var(--tla-border);
}

.tla-proof div:last-child {
	border-right: 0;
}

.tla-proof strong {
	color: var(--tla-teal);
	font-size: 1.35rem;
}

.tla-proof span {
	color: #526775;
	font-size: .88rem;
}

.tla-section,
.tla-directory {
	padding: clamp(42px, 6vw, 72px) 0;
}

.tla-section--soft {
	background: var(--tla-surface);
	border-radius: 22px;
	padding-left: clamp(22px, 4vw, 48px);
	padding-right: clamp(22px, 4vw, 48px);
}

.tla-section__heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 30px;
}

.tla-section__heading h2,
.tla-reciprocity-cta h2,
.tla-methodology h2 {
	font-size: clamp(2rem, 4vw, 3.1rem);
	line-height: 1.08;
	margin: 0;
}

.tla-section__heading > a,
.tla-text-link {
	color: var(--tla-teal);
	font-weight: 800;
	white-space: nowrap;
}

.tla-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.tla-card {
	display: grid;
	grid-template-columns: 52px 1fr auto;
	grid-template-rows: auto auto;
	column-gap: 16px;
	background: #fff;
	border: 1px solid var(--tla-border);
	border-radius: 13px;
	color: var(--tla-navy);
	padding: 20px;
	text-decoration: none !important;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tla-card:hover,
.tla-card:focus-visible {
	border-color: var(--tla-teal-light);
	box-shadow: 0 14px 32px rgba(11, 31, 51, .09);
	transform: translateY(-2px);
}

.tla-card__icon {
	grid-row: 1 / 3;
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	background: #e5f7f5;
	border-radius: 13px;
	color: var(--tla-teal);
	font-size: .82rem;
	font-weight: 900;
}

.tla-card strong {
	font-size: 1.05rem;
}

.tla-card small {
	color: #60727d;
	line-height: 1.45;
	margin-top: 4px;
}

.tla-card__arrow {
	grid-column: 3;
	grid-row: 1 / 3;
	align-self: center;
	color: var(--tla-teal);
	font-size: 1.35rem;
}

.tla-state-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.tla-state-grid a {
	display: flex;
	align-items: center;
	gap: 11px;
	background: #fff;
	border: 1px solid var(--tla-border);
	border-radius: 10px;
	color: var(--tla-navy);
	font-weight: 750;
	padding: 13px 14px;
	text-decoration: none !important;
}

.tla-state-grid a:hover,
.tla-state-grid a:focus-visible {
	border-color: var(--tla-teal);
}

.tla-state-grid a span {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 28px;
	background: var(--tla-navy);
	border-radius: 6px;
	color: #fff;
	font-size: .7rem;
}

.tla-state-grid--all {
	margin-top: 32px;
}

.tla-reciprocity-cta {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 42px;
	align-items: center;
	background: var(--tla-navy);
	border-radius: 22px;
	color: #d9e5eb;
	padding: clamp(32px, 6vw, 68px);
}

.tla-reciprocity-cta h2 {
	color: #fff;
	max-width: 900px;
}

.tla-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	font-weight: 850;
	min-height: 52px;
	padding: 0 22px;
	text-decoration: none !important;
}

.tla-button--gold {
	background: var(--tla-gold);
	color: var(--tla-navy);
}

.tla-methodology {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
	gap: clamp(36px, 7vw, 90px);
}

.tla-methodology__checks {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	align-content: start;
}

.tla-methodology__checks div {
	background: #fff;
	border: 1px solid var(--tla-border);
	border-radius: 13px;
	box-shadow: 0 10px 26px rgba(11, 31, 51, .05);
	padding: 22px;
}

.tla-methodology__checks strong,
.tla-methodology__checks span {
	display: block;
}

.tla-methodology__checks strong {
	color: var(--tla-navy);
	margin-bottom: 8px;
}

.tla-methodology__checks span {
	color: #5c6f7b;
	font-size: .9rem;
	line-height: 1.55;
}

.tla-guide-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.tla-guide-grid article {
	border: 1px solid var(--tla-border);
	border-radius: 13px;
	padding: 24px;
}

.tla-guide-grid h3 {
	font-size: 1.25rem;
	line-height: 1.25;
}

.tla-guide-grid h3 a {
	color: var(--tla-navy);
}

.tla-guide-grid__date {
	color: var(--tla-teal);
	font-size: .78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.tla-directory h1 {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	line-height: 1;
	margin: 0 0 20px;
}

.tla-directory__lead {
	font-size: 1.15rem;
	max-width: 820px;
	margin-bottom: 36px;
}

.single-tla_license .entry-content {
	font-size: 1.05rem;
	line-height: 1.75;
}

.single-tla_license .entry-content > h2 {
	color: var(--tla-navy);
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	line-height: 1.15;
	margin-top: 2.2em;
}

.single-tla_license .entry-content > h3 {
	color: var(--tla-navy);
	font-size: 1.35rem;
	margin-top: 1.7em;
}

.tla-updated {
	color: var(--tla-teal);
	font-size: .84rem;
	letter-spacing: .02em;
}

.tla-callout {
	background: #eaf8f7;
	border-left: 5px solid var(--tla-teal);
	border-radius: 8px;
	color: var(--tla-navy);
	margin: 28px 0;
	padding: 20px 22px;
}

.tla-callout--warning {
	background: #fff7e8;
	border-left-color: var(--tla-gold);
}

.tla-table-wrap {
	overflow-x: auto;
	margin: 26px 0;
}

.tla-table-wrap table {
	border-collapse: collapse;
	font-size: .9rem;
	min-width: 760px;
	width: 100%;
}

.tla-table-wrap th {
	background: var(--tla-navy);
	color: #fff;
	text-align: left;
}

.tla-table-wrap th,
.tla-table-wrap td {
	border: 1px solid var(--tla-border);
	padding: 13px 14px;
	vertical-align: top;
}

.tla-table-wrap tbody tr:nth-child(even) {
	background: var(--tla-surface);
}

.tla-steps,
.tla-checklist {
	padding-left: 1.35rem;
}

.tla-steps li,
.tla-checklist li {
	margin-bottom: .75rem;
}

.site-primary-footer-wrap,
.site-below-footer-wrap,
.ast-small-footer {
	display: none !important;
}

.tla-site-footer {
	background: var(--tla-navy);
	color: #c8d7df;
	margin-top: 30px;
	padding: 58px max(24px, calc((100vw - 1240px) / 2));
}

.tla-site-footer__inner {
	display: grid;
	grid-template-columns: minmax(280px, 1.7fr) minmax(150px, .65fr) minmax(150px, .65fr);
	gap: clamp(34px, 6vw, 90px);
}

.tla-site-footer__brand > a {
	color: #fff;
	font-size: 1.35rem;
	font-weight: 850;
	text-decoration: none;
}

.tla-site-footer__brand p {
	margin: 10px 0 0;
}

.tla-site-footer__note {
	font-size: .84rem;
	line-height: 1.55;
	max-width: 470px;
}

.tla-site-footer nav {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.tla-site-footer nav strong {
	color: var(--tla-teal-light);
	font-size: .78rem;
	letter-spacing: .1em;
	margin-bottom: 3px;
	text-transform: uppercase;
}

.tla-site-footer a {
	color: #e6eef2;
}

.tla-site-footer a:hover,
.tla-site-footer a:focus-visible {
	color: var(--tla-gold);
}

.tla-site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-top: 1px solid rgba(255, 255, 255, .14);
	font-size: .82rem;
	margin-top: 42px;
	padding-top: 22px;
}

.tla-site-footer__bottom div {
	display: flex;
	gap: 20px;
}

.tla-tool,
.tla-facts {
	color: var(--tla-ink);
	background: #fff;
	border: 1px solid var(--tla-border);
	border-radius: 18px;
	box-shadow: 0 16px 44px rgba(11, 31, 51, .08);
	padding: clamp(24px, 4vw, 48px);
	margin: 28px 0;
}

.tla-tool h2,
.tla-facts h2,
.tla-results h3,
.tla-result h4 {
	color: var(--tla-navy);
}

.tla-tool h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.08;
	margin: 0 0 16px;
}

.tla-eyebrow {
	color: var(--tla-teal);
	font-size: .82rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.tla-tool__intro {
	max-width: 780px;
}

.tla-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
	gap: 16px;
	align-items: end;
	background: var(--tla-surface);
	border-radius: 14px;
	padding: 22px;
	margin: 28px 0;
}

.tla-form--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tla-form--three button {
	grid-column: 1 / -1;
	justify-self: start;
}

.tla-field span {
	display: block;
	font-size: .88rem;
	font-weight: 700;
	margin-bottom: 7px;
}

.tla-field select {
	width: 100%;
	min-height: 50px;
	background: #fff;
	border: 1px solid #b8c8cf;
	border-radius: 8px;
	color: var(--tla-ink);
	padding: 0 40px 0 13px;
}

.tla-form button {
	min-height: 50px;
	border: 0;
	border-radius: 8px;
	background: var(--tla-gold);
	color: var(--tla-navy);
	cursor: pointer;
	font-weight: 800;
	padding: 0 22px;
}

.tla-form button:hover,
.tla-form button:focus-visible {
	background: #ffb654;
	transform: translateY(-1px);
}

.tla-notice {
	background: #fff8e9;
	border-left: 5px solid var(--tla-gold);
	border-radius: 6px;
	padding: 18px 20px;
	margin: 22px 0;
}

.tla-results {
	margin-top: 30px;
}

.tla-result {
	border-top: 1px solid var(--tla-border);
	padding: 22px 0;
}

.tla-result h4 {
	font-size: 1.3rem;
	margin: 0 0 8px;
}

.tla-result__link,
.tla-source-list a {
	color: var(--tla-teal);
	font-weight: 750;
}

.tla-caveat {
	color: #526775;
	font-size: .88rem;
	line-height: 1.55;
	margin-top: 26px;
}

.tla-verified {
	color: #276749;
	font-size: .88rem;
	font-weight: 700;
}

.tla-facts dl {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	border: 1px solid var(--tla-border);
	border-radius: 12px;
	overflow: hidden;
}

.tla-facts dl div {
	padding: 18px;
	border-bottom: 1px solid var(--tla-border);
}

.tla-facts dt {
	color: var(--tla-navy);
	font-weight: 800;
	margin-bottom: 5px;
}

.tla-facts dd {
	margin: 0;
}

@media (max-width: 820px) {
	.tla-hero,
	.tla-reciprocity-cta,
	.tla-methodology {
		grid-template-columns: 1fr;
	}

	.tla-proof {
		grid-template-columns: 1fr;
	}

	.tla-proof div {
		justify-content: flex-start;
		border-right: 0;
		border-bottom: 1px solid var(--tla-border);
	}

	.tla-card-grid,
	.tla-state-grid,
	.tla-guide-grid,
	.tla-methodology__checks {
		grid-template-columns: 1fr;
	}

	.tla-section__heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.tla-form,
	.tla-form--three,
	.tla-facts dl {
		grid-template-columns: 1fr;
	}

	.tla-form--three button {
		grid-column: auto;
		width: 100%;
	}

	.tla-hero__form button {
		grid-column: auto;
		width: 100%;
	}

	.tla-site-footer__inner {
		grid-template-columns: 1fr;
	}

	.tla-site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}
