/**
 * Audioblanket — lightweight theme styles
 * Font: Inter | Brand: #FFCC06
 */

:root {
	--ab-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--ab-yellow: #ffcc06;
	--ab-teal: #d8edeb;
	--ab-gray: #fafafa;
	--ab-text: #111111;
	--ab-muted: #5a5a5a;
	--ab-border: #e8e8e8;
	--ab-white: #ffffff;
	--ab-accent-hover: #8102ce;
	--ab-container: 1140px;
	--ab-radius: 12px;
	--ab-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	--ab-logo-height: 30px;
	--ab-header-pad-y: 14px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body.ab-theme {
	margin: 0;
	font-family: var(--ab-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--ab-text);
	background: var(--ab-white);
	-webkit-font-smoothing: antialiased;
}

img:not(.ab-logo__img) {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration-color: var(--ab-yellow);
}

.ab-container {
	width: min(100% - 2rem, var(--ab-container));
	margin-inline: auto;
}

.ab-container--narrow {
	width: min(100% - 2rem, 820px);
}

.ab-container--form {
	width: min(100% - 2rem, 560px);
}

.ab-text-center {
	text-align: center;
}

.screen-reader-text,
.ab-skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.ab-skip-link:focus {
	position: fixed;
	left: 1rem;
	top: 1rem;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	background: var(--ab-yellow);
	color: var(--ab-text);
}

/* Header */
.ab-header-wrap {
	position: sticky;
	top: 0;
	z-index: 100;
}

.ab-header {
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--ab-border);
}

.ab-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.25rem;
	padding-block: var(--ab-header-pad-y);
}

.ab-header__brand {
	flex: 0 0 auto;
	line-height: 0;
	padding: 6px 16px 6px 0;
}

.ab-logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	text-decoration: none;
	line-height: 0;
	padding: 2px 0;
}

.ab-logo picture {
	display: block;
	line-height: 0;
}

.ab-logo__img {
	display: block;
	height: var(--ab-logo-height);
	width: auto;
	max-width: none;
	max-height: none;
	object-fit: contain;
}

.ab-header__title {
	font-weight: 700;
	font-size: 1.125rem;
	text-decoration: none;
}

.ab-header__center {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 0.5rem;
	min-width: 0;
}

.ab-header__center--empty {
	display: none;
}

.ab-header__purchase {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 1.15rem;
	border-radius: 10px;
	background: var(--ab-yellow);
	color: var(--ab-text);
	font-size: 0.8125rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.ab-header__purchase--muted {
	background: transparent;
	border: 1px solid var(--ab-border);
	font-weight: 600;
}

.ab-header__radio {
	text-transform: none;
	letter-spacing: 0;
	font-size: 0.8125rem;
	font-weight: 700;
}

body.ab-body--radio-guest .ab-page__title {
	display: none;
}

.ab-user-menu {
	position: relative;
}

.ab-user-menu__toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	max-width: min(220px, 42vw);
	padding: 0.45rem 0.7rem;
	border: 1px solid var(--ab-border);
	border-radius: 10px;
	background: #fff;
	color: var(--ab-text);
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 600;
	cursor: pointer;
}

.ab-user-menu.is-open .ab-user-menu__toggle {
	border-color: var(--ab-yellow);
	box-shadow: 0 2px 8px rgba(255, 204, 6, 0.2);
}

.ab-user-menu__email {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ab-user-menu__badge {
	flex-shrink: 0;
	padding: 0.1rem 0.45rem;
	border-radius: 10px;
	background: var(--ab-yellow);
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
}

.ab-user-menu__chevron {
	flex-shrink: 0;
	width: 0.45rem;
	height: 0.45rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	transition: transform 0.15s ease;
}

.ab-user-menu.is-open .ab-user-menu__chevron {
	transform: rotate(225deg) translateY(1px);
}

.ab-user-menu__panel {
	position: absolute;
	top: calc(100% + 0.45rem);
	right: 0;
	z-index: 120;
	min-width: 220px;
	padding: 0.35rem 0;
	border: 1px solid var(--ab-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.ab-user-menu__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ab-user-menu__list a {
	display: block;
	padding: 0.65rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	color: var(--ab-text);
}

.ab-user-menu__logout {
	margin-top: 0.25rem;
	border-top: 1px solid var(--ab-border);
}

.ab-user-menu__logout a {
	color: var(--ab-muted);
	font-size: 0.8125rem;
	font-weight: 600;
}

.ab-nav {
	display: flex;
	justify-content: center;
	min-width: 0;
}

.ab-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.15rem 0.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ab-nav__list > li > a {
	display: block;
	padding: 0.75rem 0.65rem;
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
}

.ab-nav__list > li.current-menu-item > a,
.ab-nav__list > li.current_page_item > a {
	color: var(--ab-accent-hover);
}

.ab-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.75rem;
	padding: 6px 0;
}

.ab-nav-toggle {
	display: none;
	margin-left: 0.25rem;
	padding: 0.5rem;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.ab-header__login {
	display: inline-flex;
	align-items: center;
	padding-block: 0.85rem;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
}

.ab-header__logout {
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
}

.ab-lang-switcher {
	display: flex;
	gap: 0.35rem;
}

.ab-lang-switcher__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	height: 2rem;
	padding: 0 0.35rem;
	border: 1px solid var(--ab-border);
	border-radius: 6px;
	font-size: 0.6875rem;
	font-weight: 700;
	text-decoration: none;
	color: var(--ab-muted);
}

.ab-lang-switcher__item.is-active {
	background: var(--ab-gray);
	color: var(--ab-text);
	border-color: #ddd;
}

.ab-nav-toggle__bar {
	display: block;
	width: 22px;
	height: 2px;
	margin: 4px 0;
	background: var(--ab-text);
}

/* Buttons — header register CTA is the reference for all yellow primary buttons */
.ab-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.4rem;
	border: 0;
	border-radius: 10px;
	font-family: var(--ab-font);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.ab-btn--primary {
	background: var(--ab-yellow);
	color: var(--ab-text);
}

/* MemberPress submit button — styled as primary CTA */
body.ab-theme .mepr-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.4rem;
	border: 0;
	border-radius: 10px;
	font-family: var(--ab-font);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
	cursor: pointer;
	background: var(--ab-yellow);
	color: var(--ab-text);
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
}

/* Plugin yellow CTAs — same as .ab-btn.ab-btn--primary */
body.ab-theme .ab-lic-btn:not(.ab-lic-btn--outline):not(.ab-lic-btn--buy):not(.ab-lic-btn--stripe) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.4rem;
	border: 0;
	border-radius: 10px;
	font-family: var(--ab-font);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	background: var(--ab-yellow);
	color: var(--ab-text);
	-webkit-appearance: none;
	appearance: none;
}

.ab-btn--lg {
	padding: 1rem 1.75rem;
	font-size: 0.9375rem;
}

/* Homepage */
.ab-main {
	min-height: 50vh;
}

.ab-hero {
	padding: 3rem 0 2rem;
}

.ab-hero__title {
	margin: 0 0 1.5rem;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	max-width: 900px;
	margin-inline: auto;
}

.ab-hero__benefits {
	max-width: 760px;
	margin: 0 auto 2rem;
	padding: 0;
	list-style: none;
}

.ab-hero__benefits li {
	position: relative;
	padding: 0.35rem 0 0.35rem 1.75rem;
	font-size: 1rem;
}

.ab-hero__benefits li::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: var(--ab-text);
	font-weight: 700;
}

.ab-hero__cta {
	text-align: center;
	margin: 0;
}

.ab-divider {
	width: min(100% - 2rem, var(--ab-container));
	height: 3px;
	margin: 0 auto;
	background: var(--ab-yellow);
	border-radius: 999px;
}

.ab-section {
	padding: 3rem 0;
}

.ab-section--intro {
	padding-top: 2.5rem;
}

.ab-section--highlight {
	background: var(--ab-yellow);
	padding: 4.5rem 0;
}

.ab-section--highlight .ab-section__title,
.ab-section--highlight p {
	margin-top: 0;
}

.ab-section--features {
	background: var(--ab-teal);
}

.ab-section--muted {
	background: var(--ab-gray);
}

.ab-section--cta {
	padding-bottom: 4rem;
}

.ab-section--license {
	background: #fff;
}

.ab-license-steps {
	margin: 1.25rem 0 0;
	padding-left: 1.25rem;
}

.ab-license-steps li {
	margin: 0.5rem 0;
	line-height: 1.6;
}

.ab-section--faq {
	background: var(--ab-gray);
}

.ab-faq__item {
	margin: 0 0 1.5rem;
}

.ab-faq__item:last-child {
	margin-bottom: 0;
}

.ab-faq__q {
	margin: 0 0 0.4rem;
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.35;
}

.ab-faq__a {
	margin: 0;
	line-height: 1.65;
}

.ab-faq__more {
	margin: 1.75rem 0 0;
}

.ab-section__title {
	margin: 0 0 1rem;
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 700;
	line-height: 1.25;
}

.ab-lead {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--ab-text);
}

.ab-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.ab-feature {
	background: rgba(255, 255, 255, 0.55);
	padding: 1.25rem;
	border-radius: var(--ab-radius);
}

.ab-feature__title {
	margin: 0 0 0.5rem;
	font-size: 1.0625rem;
	font-weight: 700;
}

.ab-feature__text {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--ab-muted);
}

/* Pages */
.ab-page-wrap {
	padding: 2.5rem 0 4rem;
}

.ab-page__title {
	margin: 0 0 1.5rem;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.ab-page__content {
	font-size: 1rem;
	line-height: 1.7;
	max-width: 820px;
	margin-inline: auto;
}

.ab-page__content > *:first-child {
	margin-top: 0;
}

.ab-page__content h2 {
	margin: 2rem 0 0.75rem;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.35;
}

.ab-page__content h2:first-child {
	margin-top: 0;
}

.ab-page__content ul,
.ab-page__content ol {
	margin: 0 0 1rem;
	padding-left: 1.25rem;
}

.ab-page__content li {
	margin-bottom: 0.4rem;
}

.ab-contact-page {
	max-width: 560px;
	margin-inline: auto;
}

.ab-contact-title {
	margin: 0 0 1.5rem;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.ab-contact-content {
	margin-bottom: 1.5rem;
	font-size: 1rem;
	line-height: 1.7;
}

.ab-contact-card {
	padding: 1.25rem 1.5rem;
	border: 1px solid var(--ab-border);
	border-radius: var(--ab-radius);
	background: #fff;
}

.ab-contact-card__title {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	font-weight: 700;
}

.ab-contact-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ab-contact-card__list li {
	margin-bottom: 0.4rem;
	font-size: 0.9375rem;
	color: var(--ab-muted);
}

.ab-contact-card__list a {
	color: inherit;
	text-decoration: none;
}

.ab-price {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin: 0 0 1rem;
}

.ab-price span {
	font-size: 1rem;
	font-weight: 500;
	color: var(--ab-muted);
}

/* Blog */
.ab-post-list {
	display: grid;
	gap: 1.5rem;
	margin: 2rem 0;
}

.ab-post-card {
	padding: 1.5rem;
	border: 1px solid var(--ab-border);
	border-radius: var(--ab-radius);
	background: var(--ab-white);
}

.ab-post-card__title {
	margin: 0 0 0.75rem;
	font-size: 1.25rem;
}

.ab-post-card__title a {
	text-decoration: none;
}

.ab-post-card__excerpt {
	margin: 0 0 1rem;
	color: var(--ab-muted);
}

.ab-link {
	font-weight: 600;
	text-decoration: none;
}

.ab-blog-cta {
	margin: 2.5rem 0 2rem;
	padding: 1.75rem 1.5rem;
	border: 3px solid var(--ab-yellow);
	border-radius: var(--ab-radius);
	background: var(--ab-white);
	text-align: center;
}

.ab-blog-cta__brand {
	margin: 0 0 0.5rem;
	font-size: 1.35rem;
	font-weight: 700;
}

.ab-blog-cta__text {
	margin: 0 0 1.25rem;
	color: var(--ab-muted);
}

.ab-blog-cta__action {
	margin: 0;
}

.ab-breadcrumb {
	margin: 0 0 1.5rem;
}

.ab-breadcrumb__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 0.5rem;
	font-size: 0.875rem;
	color: var(--ab-muted);
}

.ab-breadcrumb__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.ab-breadcrumb__item + .ab-breadcrumb__item::before {
	content: '/';
	color: var(--ab-muted);
}

.ab-breadcrumb__item a {
	color: var(--ab-muted);
	text-decoration: none;
}

.ab-breadcrumb__item--current {
	color: var(--ab-text);
}

/* Footer */
.ab-footer {
	background: var(--ab-gray);
	border-top: 1px solid var(--ab-border);
	padding: 3rem 0 2rem;
	margin-top: auto;
}

.ab-footer__columns {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem 3rem;
	margin-bottom: 0;
}

.ab-footer__col-title {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--ab-text);
}

.ab-footer__col-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ab-footer__col-links li {
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
}

.ab-footer__col-links a {
	text-decoration: none;
	color: var(--ab-muted);
}

.ab-footer__col--company {
	min-width: 0;
}

.ab-footer__brand {
	margin: 0 0 0.25rem;
	font-size: 1rem;
	font-weight: 700;
}

.ab-footer__tagline {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--ab-muted);
}

.ab-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ab-footer__contact li {
	margin-bottom: 0.25rem;
	font-size: 0.9375rem;
	color: var(--ab-muted);
}

.ab-footer__contact a {
	color: inherit;
	text-decoration: none;
}

.ab-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--ab-border);
}

.ab-footer__copy {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--ab-muted);
}

.ab-footer__bottom .ab-lang-switcher {
	flex-shrink: 0;
}

/* Pagination */
.navigation.pagination {
	margin: 2rem 0;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	padding: 0 0.5rem;
	border: 1px solid var(--ab-border);
	border-radius: 6px;
	text-decoration: none;
	font-size: 0.875rem;
}

.page-numbers.current {
	background: var(--ab-yellow);
	border-color: var(--ab-yellow);
}

/* Responsive */
@media (max-width: 960px) {
	.ab-header__inner {
		grid-template-columns: 1fr auto;
		grid-template-areas:
			"brand actions"
			"nav nav";
	}

	.ab-header--greek .ab-header__inner {
		grid-template-columns: auto 1fr auto;
		grid-template-areas: none;
		align-items: center;
	}

	.ab-header--greek .ab-header__purchase {
		padding: 0.45rem 0.75rem;
		font-size: 0.72rem;
	}

	.ab-header--greek .ab-user-menu__toggle {
		max-width: 38vw;
		padding: 0.4rem 0.55rem;
		font-size: 0.75rem;
	}

	.ab-header__brand {
		grid-area: brand;
	}

	.ab-header__actions {
		grid-area: actions;
	}

	.ab-nav {
		grid-area: nav;
		display: none;
		justify-content: stretch;
		width: 100%;
		padding-bottom: 0.75rem;
	}

	.ab-nav.is-open {
		display: flex;
	}

	.ab-nav-toggle {
		display: block;
	}

	.ab-nav__list {
		flex-direction: column;
		align-items: stretch;
	}

	.ab-nav__list > li > a {
		padding: 0.85rem 0.5rem;
		border-bottom: 1px solid var(--ab-border);
	}

	.ab-header__actions {
		gap: 0.5rem;
	}

	.ab-header__register {
		padding: 0.65rem 0.85rem;
		font-size: 0.75rem;
	}

	.ab-footer__columns {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.ab-features {
		grid-template-columns: 1fr;
	}

	.ab-footer__columns {
		grid-template-columns: 1fr;
	}

	:root {
		--ab-logo-height: 20px;
		--ab-header-pad-y: 16px;
	}

	/* Burger layout: logo left, burger right — override Greek specificity too */
	.ab-header__inner,
	.ab-header--greek .ab-header__inner {
		grid-template-columns: 1fr auto;
		grid-template-areas: none;
	}

	.ab-header__brand {
		grid-area: auto;
		grid-column: 1;
		grid-row: 1;
		padding: 4px 12px 4px 0;
	}

	.ab-nav-toggle {
		grid-area: auto;
		grid-column: 2;
		grid-row: 1;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.ab-header__center,
	.ab-header__actions {
		display: none;
	}

	.ab-hero {
		padding-top: 2rem;
	}

	.ab-hero__title {
		font-size: 1.4rem;
	}

	.ab-section {
		padding: 2rem 0;
	}

	.ab-section--highlight,
	.ab-section--muted,
	.ab-section--license {
		padding: 4.5rem 1.25rem;
	}

	.ab-btn {
		line-height: 1.35;
	}

	.ab-footer__columns {
		grid-template-columns: 1fr;
	}
}

/* Mobile nav panel */
.ab-mobile-nav {
	background: var(--ab-white);
	border-top: 1px solid var(--ab-border);
}

.ab-mobile-nav .ab-container {
	padding-block: 0.25rem 1rem;
}

.ab-mobile-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ab-mobile-nav__list > li {
	border-bottom: 1px solid var(--ab-border);
}

.ab-mobile-nav__list > li:last-child {
	border-bottom: none;
}

.ab-mobile-nav__list a {
	display: block;
	padding: 0.9rem 0;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--ab-text);
}

.ab-mobile-nav__register {
	padding: 0.75rem 0;
}

.ab-mobile-nav__register a {
	display: inline-flex;
	padding: 0.75rem 1.25rem;
	font-size: 0.875rem;
}

.ab-mobile-nav__logout a {
	color: var(--ab-muted);
	font-size: 0.875rem;
}

.ab-pairing-widget {
	text-align: center;
	padding: 3rem 1.5rem;
	max-width: 26rem;
	margin: 0 auto;
}

.ab-pairing-widget__title {
	margin: 0 0 0.5rem;
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--ab-text);
}

.ab-pairing-widget__notice {
	margin: 0 0 1rem;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
	color: var(--ab-text);
}

.ab-pairing-widget__lead {
	margin: 0 0 1.5rem;
	line-height: 1.6;
	color: var(--ab-muted);
}

.ab-pairing-widget__actions {
	margin: 0 0 1rem;
}

.ab-pairing-widget__code {
	font-size: 3.25rem;
	letter-spacing: 0.4rem;
	font-weight: 800;
	color: #00B4A0;
	background: #f0faf9;
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
	margin-bottom: 0.75rem;
	font-family: monospace;
}

.ab-pairing-widget__timer {
	color: #999;
	font-size: 0.875rem;
	min-height: 1.25rem;
	margin-bottom: 1.25rem;
}

.ab-pairing-widget__note {
	margin-top: 1rem;
	color: #aaa;
	font-size: 0.75rem;
}

/* No hover effects anywhere on the theme */
body.ab-theme a:hover {
	color: inherit;
	text-decoration-color: var(--ab-yellow);
}
