:root {
  --navy: #0E3A5E;
  --navy-deep: #08243B;
  --navy-mid: #12496F;
  --yellow: #FFC72C;
  --yellow-deep: #B98600;
  --yellow-lift: #FFD457;
  --bg: #F2F5F8;
  --surface: #FFFFFF;
  --surface-2: #E9EFF5;
  --ink: #0B2136;
  --muted: #54677A;
  --line: #D6E0EA;
  --hero-bg: #0E3A5E;
  --hero-ink: #EAF2F9;
  --hero-muted: #A8C2D8;
  --hero-line: #1E4C74;
  --hero-card: #0A2E4B;
  --radius: 10px;
  --maxw: 1140px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #071726;
    --surface: #0D2740;
    --surface-2: #12314F;
    --ink: #E7EEF5;
    --muted: #9DB2C5;
    --line: #1D4262;
    --yellow-deep: #FFC72C;
    --hero-bg: #061626;
    --hero-card: #0C2A45;
    --hero-line: #1D4262;
  }
}

:root[data-theme="dark"] {
  --bg: #071726;
  --surface: #0D2740;
  --surface-2: #12314F;
  --ink: #E7EEF5;
  --muted: #9DB2C5;
  --line: #1D4262;
  --yellow-deep: #FFC72C;
  --hero-bg: #061626;
  --hero-card: #0C2A45;
  --hero-line: #1D4262;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.12rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", Georgia, sans-serif;
  font-weight: 800;
  line-height: 1.16;
  text-wrap: balance;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

.wrap {
  width: min(100% - 2.5rem, var(--maxw));
  margin-inline: auto;
  min-width: 0;
}

.hazard {
  height: 6px;
  background: repeating-linear-gradient(115deg, var(--yellow) 0 14px, var(--navy-deep) 14px 28px);
}

.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .92rem;
  color: #ffc72c !important;
  margin: 0 0 .6rem;
}

.eyebrow.on-navy {
  color: var(--yellow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.35rem;
  border-radius: 6px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

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

.btn-primary {
  background: var(--yellow);
  color: #12232F;
}

.btn-primary:hover {
 background: #ffc72c;
    color: #000;
}

.btn-ghost {
  border-color: #fff;
  color: var(--hero-ink);
}

.btn-ghost:hover {
  border-color: #eff5fa;
  color: var(--yellow);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-dark:hover {
  background: var(--navy-deep);
}

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

:root[data-theme="dark"] .btn-outline,
:root:not([data-theme="light"]) .btn-outline {
  border-color: var(--muted);
  color: var(--ink);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

/* header */
.topbar {
  background: var(--navy-deep);
  color: #CBDDEB;
  font-family: "Barlow Condensed", sans-serif;
  font-size: .95rem;
  letter-spacing: .04em;
}

.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem 1.5rem;
  justify-content: space-between;
  padding: .5rem 0;
  text-transform: uppercase;
}

.topbar strong {
  color: var(--yellow);
  font-weight: 600;
}

.topbar .short {
  display: none;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.site-head .wrap {
  width: min(100% - 2rem, 1300px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  padding: .7rem 0;
  min-width: 0;
}

.mark {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex: none;
      background: transparent;
}

.mark-badge {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--navy);
  display: grid;
  place-items: center;
  flex: none;
}

.mark-badge svg {
  width: 22px;
  height: 22px;
}

.wordmark {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  letter-spacing: -.01em;
  line-height: 1;
  color: var(--ink);
}

.wordmark b {
  font-weight: 800;
}

.wordmark span {
  font-weight: 600;
  color: var(--muted);
}

.wordmark small {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap:21px;
  min-width: 0;
}

.nav a {
  font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: .02em;
    font-size: 19px;
    text-decoration: none;
    color: var(--muted);
    white-space: nowrap;
}
.btn-dark {
    color: #ffffff !important;
    font-size: 18px !important;
}
.nav a:hover {
  color: var(--ink);
}

.nav .btn {
  padding: .5rem .85rem;
  font-size: .9rem;
}

.burger {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: .5rem .7rem;
  color: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .9rem;
}

@media (max-width:1220px) {
  .nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 5rem 1.5rem 2rem;
    z-index: 80;
    overflow-y: auto;
  }

  .nav.open a {
    padding: 1rem .25rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.2rem;
    color: var(--ink);
  }

  .nav.open .btn {
    margin-top: 1.2rem;
    border-bottom: 0;
    justify-content: center;
    font-size: 1.05rem;
    padding: .9rem 1rem;
  }

  .nav.open .navclose {
    position: fixed;
    top: 1rem;
    right: 1.5rem;
    border: 1.5px solid var(--line);
    border-radius: 6px;
    padding: .5rem .8rem;
    background: var(--surface);
  }
}

.navclose {
  display: none;
}

.nav .mobonly {
  display: none;
}

@media (max-width:1220px) {
  .nav.open .mobonly {
    display: block;
  }
}

@media (max-width:1220px) {
  .nav.open .navclose {
    display: block;
  }
}

/* hero */
.hero {
  background: var(--hero-bg);
  color: var(--hero-ink);
  position: relative;
  overflow: hidden;
 
}
.aagalead-banner{
 background-image: url(../images/aaglad-banner-imgs.webp);
  background-size: cover;
    background-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background: radial-gradient(60% 80% at 85% 8%, rgba(255, 199, 44, .10), transparent 70%), linear-gradient(transparent 96%, rgba(255, 255, 255, .05) 96%) 0 0/100% 34px;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  padding: 3.25rem 0 2.5rem;
  /* max-width: min(100% - 2.5rem, 980px); */
}

.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.3rem);
  color: #fff;
  letter-spacing: -.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-lede {
  margin-top: 1rem;
  color: #fff;
  max-width: 62ch;
  font-size: 1.16rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.6rem;
}

.hero-cta .btn {
  padding: .95rem 1.5rem;
  font-size: 1.05rem;
}

.credstrip {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.6rem;
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid #fff;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em;
  color:#d4e9fa;
  font-size: .95rem;
}

.credstrip b {
  color: #fff;
  font-weight: 600;
}

/* sections */
section {
  padding: 3.75rem 0;
  scroll-margin-top: 76px;
}

@media (max-width:640px) {
  section {
    padding: 2.75rem 0;
  }
}

.alt {
  background: var(--surface);
}

.sec-head {
  max-width: 62ch;
  margin-bottom: 2rem;
}

.sec-head h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.45rem);
  letter-spacing: -.01em;
}

.sec-head p {
  color: var(--muted);
  margin-top: .8rem;
}

/* entry cards */
.entry-sec {
  padding-top: 2.5rem;
}

.entry {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

.ecard {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.ecard:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14, 58, 94, .12);
  border-color: var(--yellow);
}

.ecard h3 {
  font-size: 1.2rem;
}

.ecard p {
  color: var(--muted);
  font-size: 1.02rem;
}

.ecard .go {
  margin-top: auto;
  padding-top: .7rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .88rem;
  color: var(--yellow-deep);
}

.ecard .go::after {
  content: " →";
}

.compstrip {
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.cs-lead {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: .86rem;
  color: var(--muted);
  margin-bottom: .7rem;
}

.cs-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.cs-links a {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .45rem .9rem;
  text-decoration: none;
  color: var(--ink);
  font-size: .98rem;
}

.alt .cs-links a {
  background: var(--surface-2);
}

.cs-links a:hover {
  border-color: var(--yellow);
  color: var(--yellow-deep);
}

/* overlap */
.overlap {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  margin-top: 1.5rem;
}

.opill {
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
}

.alt .opill {
  background: var(--surface-2);
}

.opill h3 {
  font-size: 1.08rem;
  margin-bottom: .4rem;
}

.opill p {
  color: var(--muted);
  font-size: 1rem;
}

/* grant band */
.band {
  background: var(--navy);
  color: #EAF2F9;
  position: relative;
}

.band .wrap {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  padding: 3.25rem 0;
}

@media (max-width:900px) {
  .band .wrap {
    grid-template-columns: 1fr;
    padding: 2.5rem 0;
  }
}

.band h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
}

.band p {
  color: #BDD3E5;
  margin-top: .85rem;
}

.band ul {
  margin: 1.1rem 0 0;
  padding-left: 1.1rem;
  color: #BDD3E5;
  display: grid;
  gap: .35rem;
  font-size: 1.02rem;
}

.band ul li::marker {
  color: var(--yellow);
}

.bandbox {
  min-width: 0;
  background: var(--hero-card);
  border: 1px solid var(--hero-line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.bandbox h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: .8rem;
}

.bandbox .doc {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 0;
  border-bottom: 1px dashed var(--hero-line);
  color: #C3D7E7;
  font-size: 1rem;
}

.bandbox .doc:last-of-type {
  border-bottom: 0;
}

.bandbox .doc::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--yellow);
  flex: none;
}

.bandbox .btn {
  width: 100%;
  margin-top: 1rem;
}

/* workflow */
.flow7 {
  display: grid;
  gap: .6rem;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: 1.5rem;
}

@media (max-width:1000px) {
  .flow7 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:520px) {
  .flow7 {
    grid-template-columns: 1fr;
  }
}

.fstep {
  min-width: 0;
  overflow-wrap: anywhere;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .9rem .85rem;
  display: grid;
  gap: .3rem;
  align-content: start;
  position: relative;
}

.alt .fstep {
  background: var(--bg);
}

.fstep em {
  font-style: normal;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  color: var(--yellow-deep);
  font-size: .85rem;
  letter-spacing: .1em;
}

.fstep b {
  font-family: "Montserrat", sans-serif;
  font-size: .98rem;
  line-height: 1.25;
}

.fstep span {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.4;
}

/* recon */
.recon {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

@media (max-width:860px) {
  .recon {
    grid-template-columns: 1fr;
  }
}

.recon ul {
  margin: 1.1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: .35rem;
}

.recon ul li::marker {
  color: var(--yellow-deep);
}

.photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  border: 2px dashed var(--line);
  background: var(--surface-2);
  display: grid;
  place-content: center;
  text-align: center;
  gap: .3rem;
  padding: 10px;
}

.alt .photo {
  background: var(--bg);
}

.photo b {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .9rem;
  color: var(--muted);
}

.photo span {
  color: var(--muted);
  font-size: .95rem;
  opacity: .85;
  max-width: 32ch;
}

/* partners */
.partners {
  background: var(--surface-2);
}

.plist {
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  margin-top: 1.5rem;
}

.pcard {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}

.pcard h3 {
  font-size: 1.05rem;
  margin-bottom: .35rem;
}

.pcard p {
  color: var(--muted);
  font-size: .99rem;
}

/* credentials */
.credgrid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.05fr .95fr;
}

@media (max-width:860px) {
  .credgrid {
    grid-template-columns: 1fr;
  }
}

.credtable {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.02rem;
}

.credtable th,
.credtable td {
  text-align: left;
  padding: .75rem .5rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.credtable th {
  font-weight: 500;
  color: var(--muted);
  font-family: "Barlow", sans-serif;
}

.credtable td {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: .05em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.note {
  background: var(--surface-2);
  border-left: 4px solid var(--yellow);
  padding: 1.1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.alt .note {
  background: var(--bg);
}

.note strong {
  color: var(--ink);
}

/* about */
.about {
  display: grid;
  gap: 2rem;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
}

@media (max-width:860px) {
  .about {
    grid-template-columns: 1fr;
  }
}

.about p {
  color: var(--muted);
  margin-top: .9rem;
  max-width: 64ch;
}

.about .photo {
  aspect-ratio: 4/5;
}

/* areas */
.areas {
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
}

.county {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}

.alt .county {
  background: var(--bg);
}

.county h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.county p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.faqlist {
  display: grid;
  gap: .7rem;
  max-width: 80ch;
}

.faqlist details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1.25rem;
  min-width: 0;
}

.alt .faqlist details {
  background: var(--bg);
}

.faqlist summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faqlist summary::-webkit-details-marker {
  display: none;
}

.faqlist summary::after {
  content: "+";
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  color: var(--yellow-deep);
  line-height: 1;
  flex: none;
}

.faqlist details[open] summary::after {
  content: "\2013";
}

.faqlist p {
  color: var(--muted);
  padding: 0 0 1.15rem;
  font-size: 1.03rem;
}

/* contact */
.contact {
  background: var(--navy);
  color: var(--hero-ink);
}

.contact .wrap {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

@media (max-width:860px) {
  .contact .wrap {
    grid-template-columns: 1fr;
  }
}

.contact h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.6vw, 2.45rem);
}

.contact .lede {
  color: #BDD3E5;
  margin-top: .9rem;
}

.cinfo {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.1rem;
}

.cinfo a,
.cinfo span {
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 1.15rem;
}

.cinfo a:hover {
  color: var(--yellow);
}

.cinfo .lab {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .85rem;
  color: var(--hero-muted);
  margin-bottom: .1rem;
}

.uploadbox {
  min-width: 0;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--hero-line);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.uploadbox h3 {
  color: #fff;
  font-size: 1.15rem;
}

.uploadbox p {
  color: #BDD3E5;
  margin-top: .6rem;
  font-size: 1.02rem;
}

.uploadbox .docs {
  display: grid;
  gap: .35rem;
  margin-top: 1rem;
}

.uploadbox .docs div {
  color: #C3D7E7;
  font-size: .99rem;
  display: flex;
  gap: .55rem;
  align-items: center;
}

.uploadbox .docs div::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--yellow);
  flex: none;
}

.uploadbox .btn {
  width: 100%;
  margin-top: 1.2rem;
}

.uploadbox .small {
  color: var(--hero-muted);
  font-size: .93rem;
  margin-top: .8rem;
}

.contact-cols {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  min-width: 0;
}

.contact-cols>div {
  min-width: 0;
}

/* footer */
footer {
  background: var(--navy-deep);
  color: #9FBBD1;
  padding: 2.5rem 0 6.5rem;
  font-size: 1rem;
}

@media (min-width:721px) {
  footer {
    padding-bottom: 2rem;
  }
}

footer .wrap {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.3fr 1fr 1fr;
}

@media (max-width:760px) {
  footer .wrap {
    grid-template-columns: 1fr;
  }
}

footer h4 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .9rem;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: .6rem;
}

footer a {
  color: #CBDDEB;
  text-decoration: none;
  display: block;
  padding: .15rem 0;
}

footer a:hover {
  color: var(--yellow);
}

.legal {
  border-top: 1px solid #14405F;
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  font-size: .92rem;
  color: #7E9AB2;
  grid-column: 1/-1;
}

/* mobile sticky bar */
.stickybar {
  display: none;
}

@media (max-width:720px) {
  .stickybar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    gap: .5rem;
    padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
    background: var(--surface);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 18px rgba(8, 36, 59, .14);
  }

  .stickybar .btn {
    flex: 1;
    padding: .85rem .5rem;
    font-size: 1rem;
  }
}

@media (max-width:640px) {
  .topbar .wrap {
    padding: .4rem 0;
    font-size: .88rem;
  }

  .topbar .lic,
  .topbar .area {
    display: none;
  }

  .topbar .short {
    display: block;
  }

  .hero .wrap {
    padding: 2rem 0 2rem;
  }

  .hero .eyebrow {
    display: none;
  }

  .hero-lede {
    font-size: 1.05rem;
    margin-top: .8rem;
  }

  .hero-cta {
    margin-top: 1.2rem;
  }

  .hero-cta .btn {
    width: 100%;
    padding: .9rem 1rem;
  }

  .credstrip {
    margin-top: 1.2rem;
    padding-top: 1rem;
    gap: .35rem 1.1rem;
    font-size: .9rem;
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
.aagalead-banner:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000000;
}
.new-jersy-banner{
  background-image: url(../images/new-jersy-banner-images.webp);
      background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.new-jersy-banner .wrap {
    background: #fbf8f8d4;
    width: 55%;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
.new-jersy-banner .wrap .sec-head {
    max-width: 100% !important;
}
.new-jersy-banner .wrap .sec-head p {
    color: #000;
    font-weight: 700;
}