body {
  padding-top: 0 !important;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  background: #f6f4ef;
  color: #14212b;
}

#header {
  position: static;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

#main {
  background: #f6f4ef;
}


/* =========================================================
   BANNER
   ========================================================= */

.ada-banner {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 8rem 0 4rem;
  min-height: 32vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(10, 22, 40, 0.9) 0%,
      rgba(18, 41, 70, 0.76) 42%,
      rgba(18, 41, 70, 0.42) 100%
    ),
    url("../../images/usa-flag.webp") center center / cover no-repeat;
}

.ada-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(8, 16, 31, 0.1) 0%,
      rgba(8, 16, 31, 0.32) 100%
    );
  pointer-events: none;
}

.ada-banner-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
}

.ada-banner h1 {
  margin: 0;
  border: 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.ada-banner p {
  margin: 1.1rem 0 0;
  max-width: 46rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
}


/* =========================================================
   BREADCRUMBS
   ========================================================= */

.ada-breadcrumbs {
  background: #ffffff;
  border-bottom: 1px solid #d8e0ea;
}

.ada-breadcrumbs-inner {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 0.9rem 0;
  color: #53616f;
  font-size: 0.92rem;
}

.ada-breadcrumbs a {
  color: #22537e;
  font-weight: 600;
  text-decoration: none;
}

.ada-breadcrumbs a:hover,
.ada-breadcrumbs a:focus {
  color: #13283f;
  text-decoration: underline;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.ada-main {
  padding: 3rem 0 4rem;
}

.ada-layout {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  grid-template-areas: "sidebar content";
  gap: 2.75rem;
  align-items: start;
}

.ada-content {
  grid-area: content;
  min-width: 0;
}

.ada-sidebar {
  grid-area: sidebar;
  min-width: 0;
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */

.ada-content > section {
  margin-bottom: 2.5rem;
}

.ada-content h2 {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  color: #335370;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ada-content h3 {
  color: #335370;
  font-weight: 700;
}

.ada-content p,
.ada-content li {
  color: #14212b;
  line-height: 1.75;
}


/* =========================================================
   INTRO CARD
   ========================================================= */

.ada-intro {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-left: 5px solid #6fa8dc;
  border-radius: 0 1rem 1rem 0;
  background: #ffffff;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.ada-intro p {
  margin: 0 0 1rem;
}

.ada-intro p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   ADA RESOURCE CARDS
   ========================================================= */

.ada-resources {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.ada-resource {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 1.6rem 1.5rem 3.25rem;
  border: 1px solid #5f9dd2;
  border-radius: 1rem;
  background: #f9f9f9;
  color: #335370;
  text-decoration: none;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
}

.ada-resource::after {
  content: "›";
  position: absolute;
  right: 1.35rem;
  bottom: 0.9rem;
  color: #5f9dd2;
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
}

.ada-resource:hover,
.ada-resource:focus {
  transform: translateY(-7px);
  border-color: #335370;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.28);
  color: #192936;
  text-decoration: none;
}

.ada-resource:focus-visible {
  outline: 3px solid #13283f;
  outline-offset: 3px;
}

.ada-resource-title {
  display: block;
  margin-bottom: 0.65rem;
  color: #335370;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
}

.ada-resource-description {
  display: block;
  color: #53616f;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.ada-sidebar {
  background: #ffffff;
  border: 1px solid #d8e0ea;
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.09);
}

.ada-sidebar > *:first-child {
  margin-top: 0;
}

.ada-sidebar h2,
.ada-sidebar h3,
.ada-sidebar h4 {
  color: #335370;
  border: 0;
}

.ada-sidebar h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

.ada-sidebar h3 {
  font-size: 1.1rem;
}

.ada-sidebar ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.ada-sidebar li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #d8e0ea;
}

.ada-sidebar li:last-child {
  border-bottom: 0;
}

.ada-sidebar li a {
  display: block;
  padding: 0.8rem 0.35rem;
  color: #22537e;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.ada-sidebar li a:hover,
.ada-sidebar li a:focus {
  color: #13283f;
  text-decoration: underline;
}

.ada-sidebar p {
  color: #53616f;
  line-height: 1.65;
}

.ada-sidebar img {
  max-width: 100%;
  height: auto;
}


/* =========================================================
   GENERAL LINKS
   ========================================================= */

a {
  color: #22537e;
}

a:hover {
  color: #1c3552;
}

a:focus-visible {
  outline: 3px solid #246eb5;
  outline-offset: 3px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .ada-banner {
    padding-top: 7rem;
  }

  .ada-layout {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 2rem;
  }

  .ada-resources {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 850px) {
  .ada-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "sidebar";
  }

  .ada-sidebar {
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .ada-banner {
    min-height: 38vh;
    padding: 6.5rem 0 3rem;
  }

  .ada-banner-inner,
  .ada-breadcrumbs-inner,
  .ada-layout {
    width: min(100%, calc(100% - 2rem));
  }

  .ada-main {
    padding: 2rem 0 3rem;
  }

  .ada-resources {
    grid-template-columns: 1fr;
  }

  .ada-resource {
    min-height: auto;
  }

  .ada-intro {
    padding: 1.25rem;
  }
}

@media (max-width: 520px) {
  .ada-banner {
    padding: 6rem 0 2.5rem;
  }

  .ada-banner h1 {
    font-size: 2.1rem;
  }

  .ada-sidebar {
    padding: 1.15rem;
  }
}

