From 96d829accbee6d2ba44fd14b3015694ada6e726a Mon Sep 17 00:00:00 2001 From: Jeffrey Hales Date: Wed, 17 Jun 2026 14:17:59 -0700 Subject: [PATCH] fix(faqs): add orange focus ring to search input matching live site The live site applies border-color #ffbd59 (--color-accent) to the search input on focus with no additional outline. Adds: .hs-search-field__input:focus { border-color: var(--color-accent); outline: none; } Also applies button-center to the secondary CTA button and removes the now-redundant text-align/max-width rules from .faq-cta-secondary (centering is handled by the button-center utility). --- www/src/components/FaqPage.astro | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/www/src/components/FaqPage.astro b/www/src/components/FaqPage.astro index 9da27ff..ed1327c 100644 --- a/www/src/components/FaqPage.astro +++ b/www/src/components/FaqPage.astro @@ -40,7 +40,7 @@

Still have questions?

Reach Out to Learn More

-

We hope this FAQ gives you a clear picture of how Applied Behavior Analysis (ABA) therapy at the Arizona Institute for Autism can support your child's growth. If you have more questions or would like to schedule an assessment, please reach out. Our team is here to guide you and your learner every step of the way!

+

We hope this FAQ gives you a clear picture of how Applied Behavior Analysis (ABA) therapy at the Arizona Institute for Autism can support your child’s growth. If you have more questions or would like to schedule an assessment, please reach out. Our team is here to guide you and your learner every step of the way!

@@ -48,7 +48,7 @@

Need Support in Getting an Autism Diagnosis?

To meet diagnostic criteria for ASD, a child must have persistent deficits in each of three areas of social communication and interaction plus at least two of four types of restricted repetitive behaviors. Consult with a Client Advocate today to receive individual and family support!

- Request an Appointment + Request an Appointment
@@ -368,6 +368,11 @@ opacity: 1; } + .hs-search-field__input:focus { + border-color: var(--color-accent); + outline: none; + } + .hs-search-field__button { align-items: center; background: #fff; @@ -570,7 +575,6 @@ .faq-cta-secondary { background: #fff; padding-block: 3.5rem 4rem; - text-align: center; } .faq-cta-secondary h2 { @@ -579,11 +583,6 @@ margin-bottom: .75rem; } - .faq-cta-secondary p { - margin-inline: auto; - max-width: 760px; - } - .faq-cta-secondary .button { margin-top: 1.5rem; }