/* ==========================================================================
   Shared components - buttons, section headings, floating rails, modal
   ========================================================================== */

.fda-icon {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.fda-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 0 34px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-family: var(--fda-font-body);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color var(--fda-speed) var(--fda-ease),
		color var(--fda-speed) var(--fda-ease),
		border-color var(--fda-speed) var(--fda-ease),
		transform var(--fda-speed) var(--fda-ease);
}

.fda-btn:hover,
.fda-btn:focus {
	transform: translateY(-1px);
}

.fda-btn__icon {
	display: inline-flex;
	align-items: center;
}

.fda-btn__icon .fda-icon {
	width: 16px;
	height: 16px;
}

.fda-btn:hover .fda-btn__icon {
	transform: translateX(3px);
	transition: transform var(--fda-speed) var(--fda-ease);
}

.fda-btn--fill {
	background: var(--fda-palette2);
	border-color: var(--fda-palette2);
	color: var(--fda-palette9);
}

.fda-btn--fill:hover,
.fda-btn--fill:focus {
	background: var(--fda-brick-hover);
	border-color: var(--fda-brick-hover);
	color: var(--fda-palette9);
}

.fda-btn--outline-primary {
	background: transparent;
	border-color: rgba(60, 70, 85, 0.35);
	color: var(--fda-ink);
}

.fda-btn--outline-primary:hover,
.fda-btn--outline-primary:focus {
	background: #892943;
	border-color: #892943;
	color: #ffffff;
}

.link-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(60, 70, 85, 0.4);
	font-family: var(--fda-font-body);
	font-size: 13px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--fda-palette2);
	transition: color var(--fda-speed), border-color var(--fda-speed);
}

.link-btn__icon .fda-icon {
	width: 16px;
	height: 16px;
	stroke: currentColor;
}

.link-btn--primary,
.link-btn--muted {
	color: var(--fda-palette2);
}

.link-btn:hover,
.link-btn:focus {
	color: var(--fda-palette3);
	border-bottom-color: var(--fda-palette3);
}

.fda-btn--outline {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--fda-palette9);
}

.fda-btn--outline:hover,
.fda-btn--outline:focus {
	background: var(--fda-palette9);
	border-color: var(--fda-palette9);
	color: var(--fda-palette3);
}

.fda-btn--outline-dark {
	background: transparent;
	border-color: rgba(21, 38, 65, 0.3);
	color: var(--fda-palette3);
}

.fda-btn--outline-dark:hover,
.fda-btn--outline-dark:focus {
	background: var(--fda-palette3);
	border-color: var(--fda-palette3);
	color: var(--fda-palette9);
}

.fda-btn--brick {
	background: var(--fda-brick);
	border-color: var(--fda-brick);
	color: var(--fda-palette9);
}

.fda-btn--brick:hover,
.fda-btn--brick:focus {
	background: var(--fda-brick-hover);
	border-color: var(--fda-brick-hover);
	color: var(--fda-palette9);
}

.fda-btn--navy {
	background: var(--fda-navy);
	border-color: var(--fda-navy);
	color: var(--fda-palette9);
}

.fda-btn--navy:hover,
.fda-btn--navy:focus {
	background: var(--fda-navy-hover);
	border-color: var(--fda-navy-hover);
	color: var(--fda-palette9);
}

/* --------------------------------------------------------------------------
   Section headings
   -------------------------------------------------------------------------- */

.section-head__eyebrow {
	margin: 0 0 12px;
	font-family: var(--fda-font-body);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--fda-palette2);
}

.section-head__title {
	margin: 0;
	font-family: var(--fda-font-heading);
	font-size: clamp(30px, 1.6rem + 1.6vw, 46px);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.01em;
	color: var(--fda-palette3);
}

.section-head__mark {
	background: none;
	color: var(--fda-palette2);
}

.section-head__rule {
	display: block;
	width: 64px;
	height: 3px;
	margin: 22px 0;
	background: var(--fda-palette2);
}

.section-head__text {
	margin: 0;
	max-width: 62ch;
	font-size: 17px;
	line-height: 1.65;
	color: var(--fda-palette5);
}

.section-head--center {
	text-align: center;
}

.section-head--center .section-head__rule {
	margin-left: auto;
	margin-right: auto;
}

.section-head--center .section-head__text {
	margin-left: auto;
	margin-right: auto;
}

.section-head--light .section-head__eyebrow {
	color: var(--fda-palette7);
}

.section-head--light .section-head__title {
	color: var(--fda-palette9);
}

.section-head--light .section-head__mark {
	color: var(--fda-palette7);
}

.section-head--light .section-head__rule {
	background: var(--fda-palette7);
}

.section-head--light .section-head__text {
	color: var(--fda-palette7);
}

/* --------------------------------------------------------------------------
   Fixed bottom bar
   -------------------------------------------------------------------------- */

.bottom-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: #ffffff;
	border-top: 1px solid #e8e0cf;
	box-shadow: 0 -4px 20px rgba(60, 70, 85, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	animation: fdaSlideUpBar 0.5s ease;
}

.bottom-bar[hidden] {
	display: none;
}

.bottom-bar__content {
	display: flex;
	align-items: center;
	gap: 18px;
	text-decoration: none;
	color: var(--fda-palette2);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	transition: all var(--fda-speed) ease;
}

.bottom-bar__arrow {
	font-size: 26px;
	line-height: 2;
	transition: transform var(--fda-speed) ease;
}

.bottom-bar__content:hover {
	color: var(--fda-brick-hover);
}

.bottom-bar__content:hover .bottom-bar__arrow {
	transform: translateX(5px);
}

.bottom-bar__close {
	position: absolute;
	right: 35px;
	border: none;
	background: transparent;
	color: var(--fda-muted);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	opacity: 0.8;
	transition: all var(--fda-speed) ease;
}

.bottom-bar__close:hover {
	opacity: 1;
	transform: scale(1.1);
}

@keyframes fdaSlideUpBar {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.bottom-bar {
		height: auto;
		padding: 18px 60px 18px 20px;
	}

	.bottom-bar__content {
		font-size: 11px;
		letter-spacing: 0;
		gap: 10px;
		text-align: center;
	}

	.bottom-bar__arrow {
		font-size: 20px;
	}

	.bottom-bar__close {
		right: 18px;
		font-size: 22px;
	}
}

/* --------------------------------------------------------------------------
   Vertical quick-link rail
   -------------------------------------------------------------------------- */

.sticky-rail {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 99999;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.sticky-rail__btn {
	position: relative;
	width: 44px;
	min-height: 150px;
	padding: 18px 3px 18px 0;
	border-radius: 8px 0 0 8px;
	background: #c2a878;
	color: #ffffff;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(60, 70, 85, 0.18);
	transition: all 0.35s ease;
}

.sticky-rail__btn:hover {
	background: #a98d5c;
	width: 50px;
	color: #ffffff;
}

.sticky-rail__icon {
	display: block;
	margin-bottom: 12px;
	z-index: 2;
}

.sticky-rail__icon .fda-icon {
	width: 15px;
	height: 15px;
	fill: currentColor;
}

.sticky-rail__label {
	writing-mode: vertical-rl;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.5px;
	line-height: 1.2;
	text-transform: uppercase;
	white-space: nowrap;
	z-index: 2;
}

.sticky-rail__btn::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
	.sticky-rail__btn {
		width: 42px;
		min-height: 130px;
	}

	.sticky-rail__btn:hover {
		width: 46px;
	}

	.sticky-rail__icon .fda-icon {
		width: 14px;
		height: 14px;
	}

	.sticky-rail__icon {
		margin-bottom: 10px;
	}

	.sticky-rail__label {
		font-size: 10px;
		letter-spacing: 0.5px;
	}
}

/* --------------------------------------------------------------------------
   Modal
   -------------------------------------------------------------------------- */

.fda-modal {
	position: fixed;
	inset: 0;
	z-index: 1000000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.fda-modal[hidden] {
	display: none;
}

.fda-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(21, 38, 65, 0.72);
	backdrop-filter: blur(2px);
}

.fda-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 40px;
	border-radius: 10px;
	background: var(--fda-palette9);
	box-shadow: 0 30px 80px rgba(21, 38, 65, 0.22);
}

.fda-modal__close {
	position: absolute;
	top: 14px;
	right: 18px;
	border: 0;
	background: transparent;
	font-size: 30px;
	line-height: 1;
	color: var(--fda-palette5);
	cursor: pointer;
}

.fda-modal__close:hover {
	color: var(--fda-palette2);
}

.fda-modal__title {
	margin: 0 0 10px;
	font-family: var(--fda-font-heading);
	font-size: 28px;
	font-weight: 700;
	color: var(--fda-palette3);
}

.fda-modal__intro {
	margin: 0 0 24px;
	font-size: 15px;
	color: var(--fda-palette5);
}

.fda-modal__alt {
	margin: 20px 0 0;
	font-size: 14px;
	color: var(--fda-palette5);
}

/* --------------------------------------------------------------------------
   Legacy snippets
   The old site injected a bottom bar and a quick-link rail from a code-snippet
   plugin. The theme renders both now, so the injected copies are hidden here to
   avoid duplicates. Delete those two snippets and this block can go with them.
   -------------------------------------------------------------------------- */

.vertical-sticky-buttons,
body > #fixed-bottom-bar {
	display: none !important;
}

/* --------------------------------------------------------------------------
   Conversion CTA blocks
   -------------------------------------------------------------------------- */

.fda-response-cta {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
	gap: 34px;
	align-items: start;
	max-width: var(--fda-content-width);
	margin: 0 auto;
	padding: 56px 24px;
	background: var(--fda-palette9);
	color: var(--fda-palette3);
}

.fda-response-cta--home {
	width: 100%;
	max-width: none;
	margin: 0;
	padding-top: 44px;
	padding-right: max(24px, calc((100vw - var(--fda-content-width)) / 2));
	padding-bottom: 44px;
	padding-left: max(24px, calc((100vw - var(--fda-content-width)) / 2));
	background: #ffffff;
}

.fda-response-cta--article {
	margin-top: 44px;
	padding-right: 0;
	padding-left: 0;
}

.fda-response-cta__copy,
.fda-response-cta__form,
.fda-newsletter-spotlight {
	border: 1px solid rgba(21, 38, 65, 0.12);
	border-radius: 8px;
	background: #f6f4ee;
	box-shadow: 0 18px 44px rgba(21, 38, 65, 0.08);
}

.fda-response-cta__copy {
	padding: 34px 38px;
	border-top: 5px solid var(--fda-brick);
}

.fda-response-cta__form {
	padding: 30px 32px;
	background: var(--fda-palette9);
}

.fda-response-cta__eyebrow,
.fda-newsletter-spotlight__eyebrow {
	margin: 0 0 12px;
	font-family: var(--fda-font-body);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--fda-palette2);
}

.fda-response-cta__title,
.fda-newsletter-spotlight__title {
	margin: 0 0 16px;
	font-family: var(--fda-font-heading);
	font-size: clamp(28px, 1.2rem + 1.15vw, 40px);
	font-weight: 900;
	line-height: 1.12;
	color: var(--fda-palette3);
}

.fda-response-cta__text,
.fda-newsletter-spotlight__text {
	max-width: 68ch;
	margin: 0 0 22px;
	font-size: 16px;
	line-height: 1.65;
	color: var(--fda-palette5);
}

.fda-response-cta__list {
	display: grid;
	gap: 8px;
	margin: 0 0 26px;
	padding: 0;
	list-style: none;
}

.fda-response-cta__list li {
	position: relative;
	padding-left: 20px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
	color: var(--fda-palette3);
}

.fda-response-cta__list li::before {
	content: "";
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--fda-palette2);
	transform: translateY(-50%);
}

.fda-response-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.fda-response-cta__actions .fda-btn {
	min-height: 48px;
	padding-right: 22px;
	padding-left: 22px;
}

.fda-response-cta__phone {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	font-size: 18px;
	font-weight: 900;
	color: var(--fda-palette2);
	text-decoration: none;
}

.fda-response-cta__phone:hover,
.fda-response-cta__phone:focus {
	color: var(--fda-palette3);
}

.fda-response-cta__form h3 {
	margin: 0 0 20px;
	font-family: var(--fda-font-heading);
	font-size: 24px;
	font-weight: 900;
	line-height: 1.18;
	color: var(--fda-palette3);
}

.fda-emergency-form {
	gap: 14px;
}

.fda-emergency-form textarea {
	min-height: 112px;
}

.fda-newsletter-spotlight {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(330px, 0.58fr);
	gap: 34px;
	align-items: center;
	max-width: var(--fda-content-width);
	margin: 0 auto;
	padding: 34px;
}

.fda-newsletter-spotlight--home {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 44px max(24px, calc((100vw - var(--fda-content-width)) / 2));
	background: var(--fda-palette7);
	border-right: 0;
	border-left: 0;
	border-radius: 0;
	box-shadow: none;
}

.fda-newsletter-spotlight--article {
	margin-top: 28px;
	padding: 28px;
}

.fda-newsletter-spotlight__text {
	margin-bottom: 0;
}

.fda-newsletter-spotlight__form .newsletter-form,
.fda-newsletter-spotlight__form .mc4wp-newsletter-wrap {
	max-width: none;
}

.fda-newsletter-spotlight__form .newsletter-form {
	justify-content: flex-end;
}

.fda-newsletter-spotlight__form .newsletter-form input[type="email"] {
	min-width: 240px;
}

.newsletter-form .fda-alert {
	flex: 1 0 100%;
}

.fda-help-content-container {
	max-width: none;
	padding-right: 0;
	padding-left: 0;
}

.fda-help-page {
	background: var(--fda-palette9);
}

.fda-help-hero {
	background: var(--fda-palette3);
	color: var(--fda-palette9);
}

.fda-help-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 48px;
	align-items: center;
	max-width: var(--fda-content-width);
	margin: 0 auto;
	padding: 72px 24px;
}

.fda-help-hero__eyebrow,
.fda-offers__eyebrow {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--fda-brick);
}

.fda-help-hero__title {
	max-width: 820px;
	margin: 0 0 18px;
	font-family: var(--fda-font-heading);
	font-size: 48px;
	font-weight: 900;
	line-height: 1.08;
	color: var(--fda-palette9);
}

.fda-help-hero__text {
	max-width: 720px;
	margin: 0 0 28px;
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.86);
}

.fda-help-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.fda-help-hero .fda-btn--outline-primary {
	border-color: rgba(255, 255, 255, 0.68);
	color: var(--fda-palette9);
}

.fda-help-hero .fda-btn--outline-primary:hover,
.fda-help-hero .fda-btn--outline-primary:focus {
	border-color: var(--fda-palette9);
	background: var(--fda-palette9);
	color: var(--fda-palette1);
}

.fda-help-hero__panel {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-top: 5px solid var(--fda-palette2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.fda-help-hero__panel strong {
	display: block;
	margin-bottom: 16px;
	font-family: var(--fda-font-heading);
	font-size: 22px;
	font-weight: 900;
	line-height: 1.18;
	color: var(--fda-palette9);
}

.fda-help-hero__panel ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fda-help-hero__panel li {
	position: relative;
	padding-left: 20px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.88);
}

.fda-help-hero__panel li::before {
	content: "";
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--fda-palette2);
	transform: translateY(-50%);
}

.fda-offers {
	width: 100%;
	padding: 58px max(24px, calc((100vw - var(--fda-content-width)) / 2));
	background: #ffffff;
}

.fda-offers--money-page {
	padding-top: 50px;
	padding-bottom: 46px;
	background: var(--fda-palette7);
}

.fda-offers--article,
.fda-offers--service-inline {
	background: var(--fda-palette9);
}

.fda-offers--home {
	background: var(--fda-palette1);
}

.fda-offers--home .fda-offers__eyebrow,
.fda-offers--home .fda-offers__title {
	color: var(--fda-palette9);
}

.fda-offers--article {
	margin-top: 34px;
	padding: 34px 0;
}

.fda-offers--service-inline {
	padding: 0 0 46px;
}

.fda-offers__head {
	max-width: 720px;
	margin-bottom: 24px;
}

.fda-offers__title {
	margin: 0;
	font-family: var(--fda-font-heading);
	font-size: 34px;
	font-weight: 900;
	line-height: 1.15;
	color: var(--fda-palette3);
}

.fda-offers__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 18px;
}

.fda-offers--money-page .fda-offers__grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	align-items: stretch;
}

.fda-offer-card {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-height: 100%;
	padding: 24px;
	border: 1px solid rgba(21, 38, 65, 0.12);
	border-top: 5px solid var(--fda-brick);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(21, 38, 65, 0.08);
}

.fda-offers--money-page .fda-offer-card {
	padding: 22px 20px;
	box-shadow: 0 14px 34px rgba(21, 38, 65, 0.07);
}

.fda-offer-card__top {
	display: grid;
	gap: 8px;
}

.fda-offer-card__price {
	margin: 0;
	font-size: 15px;
	font-weight: 900;
	color: var(--fda-brick);
}

.fda-offer-card__title {
	margin: 0;
	font-family: var(--fda-font-heading);
	font-size: 24px;
	font-weight: 900;
	line-height: 1.15;
	color: var(--fda-palette3);
}

.fda-offers--money-page .fda-offer-card__title {
	font-size: 21px;
}

.fda-offer-card__details {
	display: grid;
	gap: 12px;
	margin: 0;
}

.fda-offers--money-page .fda-offer-card__details {
	gap: 10px;
}

.fda-offer-card__details div {
	display: grid;
	gap: 4px;
}

.fda-offer-card__details dt {
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	color: var(--fda-palette2);
}

.fda-offer-card__details dd {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--fda-palette5);
}

.fda-offers--money-page .fda-offer-card__details dd {
	font-size: 13px;
	line-height: 1.45;
}

.fda-offer-card__next {
	margin: auto 0 0;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.45;
	color: var(--fda-palette3);
}

.fda-offer-card .fda-btn {
	width: 100%;
	justify-content: center;
}

.fda-help-intake {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
	gap: 32px;
	align-items: start;
	padding: 46px max(24px, calc((100vw - var(--fda-content-width)) / 2)) 68px;
	background: var(--fda-palette9);
}

.fda-help-intake__copy,
.fda-help-intake__form,
.fda-offer-confirmation {
	padding: 28px;
	border: 1px solid rgba(21, 38, 65, 0.12);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(21, 38, 65, 0.08);
}

.fda-help-intake__copy h2,
.fda-offer-confirmation h2 {
	margin: 0 0 14px;
	font-family: var(--fda-font-heading);
	font-size: 30px;
	font-weight: 900;
	line-height: 1.15;
	color: var(--fda-palette3);
}

.fda-help-intake__copy p,
.fda-offer-confirmation p {
	margin: 0 0 18px;
	font-size: 16px;
	line-height: 1.65;
	color: var(--fda-palette5);
}

.fda-offer-confirmation {
	margin: 28px 0;
}

@media (max-width: 900px) {
	.fda-response-cta,
	.fda-newsletter-spotlight,
	.fda-help-intake {
		grid-template-columns: minmax(0, 1fr);
	}

	.fda-help-hero__inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.fda-offers--money-page .fda-offers__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fda-newsletter-spotlight__form .newsletter-form {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.fda-response-cta {
		padding: 34px 20px;
	}

	.fda-response-cta--home {
		padding-right: 20px;
		padding-left: 20px;
	}

	.fda-response-cta--article {
		padding-right: 0;
		padding-left: 0;
	}

	.fda-response-cta__copy,
	.fda-response-cta__form,
	.fda-newsletter-spotlight,
	.fda-newsletter-spotlight--article {
		padding: 24px;
	}

	.fda-response-cta__actions,
	.fda-response-cta__actions .fda-btn,
	.fda-response-cta__phone {
		width: 100%;
		justify-content: center;
	}

	.fda-newsletter-spotlight {
		margin-right: 20px;
		margin-left: 20px;
	}

	.fda-newsletter-spotlight--home {
		margin-right: 0;
		margin-left: 0;
		padding-right: 20px;
		padding-left: 20px;
	}

	.fda-help-hero__inner,
	.fda-offers,
	.fda-help-intake {
		padding-right: 20px;
		padding-left: 20px;
	}

	.fda-help-hero__title {
		font-size: 36px;
	}

	.fda-offers--money-page .fda-offers__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.fda-newsletter-spotlight--article {
		margin-right: 0;
		margin-left: 0;
	}
}

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */

.navigation.pagination {
	margin-top: 48px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border: 1px solid rgba(21, 38, 65, 0.15);
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	color: var(--fda-palette3);
	text-decoration: none;
	transition: all var(--fda-speed) var(--fda-ease);
}

.page-numbers:hover,
.page-numbers:focus {
	border-color: var(--fda-palette2);
	color: var(--fda-palette2);
}

.page-numbers.current {
	background: var(--fda-palette2);
	border-color: var(--fda-palette2);
	color: var(--fda-palette9);
}

.page-numbers.dots {
	border-color: transparent;
}
