@view-transition {
  navigation: auto;
}
@media (prefers-reduced-motion: reduce) {
  @view-transition {
    navigation: none;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

html,
body {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.5em;
  letter-spacing: 0.04rem;
}
html img,
body img {
  max-width: 100%;
  height: auto;
}
html h1, html h2, html h3, html h4, html h5, html h6, html strong, html b,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body strong,
body b {
  font-family: "Arial Black", "Arial Bold", "Gadget", sans-serif;
  margin: 0px;
}
html p,
body p {
  margin: 1rem 0;
}
html h1,
body h1 {
  font-size: 2.625rem;
  font-weight: 900;
  line-height: 1.12em;
}
@media screen and (min-width: 60em) {
  html h1,
  body h1 {
    font-size: 3rem;
    line-height: 1.23em;
  }
}
html h2,
body h2 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2em;
}
html h3,
body h3 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.3em;
}
html h4,
body h4 {
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.3em;
  text-transform: uppercase;
  letter-spacing: 0.045rem;
}
html .wrapper,
body .wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
html .wrapper-wide,
body .wrapper-wide {
  max-width: 1400px;
}
html .blockquote,
body .blockquote {
  font-style: italic;
  line-height: 1.4;
  color: #16334D;
  padding: 1rem;
  background-color: #f9f9f9;
  border-left: 4px solid #5091CD;
}

nav[role=breadcrumb] {
  margin: 1.5rem 0;
}
nav[role=breadcrumb] ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.25rem;
}
nav[role=breadcrumb] ol li {
  position: relative;
}
nav[role=breadcrumb] ol li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.85rem;
  transform: translateY(-50%);
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background-color: #3B3E3F;
}
nav[role=breadcrumb] ol li a {
  color: #3B3E3F;
  text-decoration: none;
  display: block;
}
nav[role=breadcrumb] ol li a:hover {
  text-decoration: underline;
}
nav[role=breadcrumb] ol li:first-child::before {
  display: none;
}

header {
  background-color: #004B8D;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  color: #fff;
  align-items: center;
  position: sticky;
  top: 0px;
  z-index: 1000;
}
header .menu-toggle label {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 0.5rem 1rem;
  gap: 0.75rem;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
}
header .menu-toggle label input {
  appearance: none;
  border: 0;
  background-image: url("/annual-report-2025/img/menu-open.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 24px;
  width: 24px;
}
header .menu-toggle label input:checked {
  background-image: url("/annual-report-2025-dev/img/menu-close.svg");
}
header .menu-toggle label span {
  color: #004B8D;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  pointer-events: none;
}
header .menu-toggle label:has(input:focus-visible), header .menu-toggle label:hover {
  background-color: #DDE9F4;
}
header .menu-toggle label:has(input:focus-visible) {
  border-color: #5091CD;
}
header nav {
  position: absolute;
  right: 0px;
  left: 0px;
  top: 100%;
  background-color: #DDE9F4;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  padding: 4rem;
}
header nav[inert] {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
header nav h4 {
  color: #16334D;
  transition: transform 0.3s ease-in-out;
}
header nav h4:is(details[open] h4), header nav h4:hover {
  color: #004B8D;
  transform: translateX(5px);
  transition: transform 0.3s ease-in-out;
}
header nav ul {
  margin: 0.5rem 5px;
  padding: 0px;
  list-style: none;
}
header nav ul li {
  padding: 0px;
  margin: 0px 5px;
}
header nav ul li a {
  color: #004B8D;
  text-decoration: none;
  display: block;
  display: inline-block;
  position: relative;
  padding: 0.25rem 0px;
}
header nav ul li a:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0px;
  height: 2px;
  background-color: #004B8D;
  transition: width 0.3s ease-in-out;
}
header nav ul li a:hover:after {
  width: 100%;
  transition: width 0.3s ease-in-out;
}
header nav details {
  padding: 1rem 0px;
  border-top: 1px solid #5091CD;
}
header nav details summary {
  cursor: pointer;
  list-style: none;
}
header nav details summary::-webkit-details-marker {
  display: none;
}
header nav details:last-child {
  border-bottom: 1px solid #5091CD;
}

@media screen and (min-width: 48em) {
  header #menu {
    max-width: 380px;
    left: auto;
  }
}
footer {
  background-color: #004B8D;
  color: #fff;
  padding: 4.5rem;
}
footer a {
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding: 0.25rem 0px;
  color: #fff;
}
footer a:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: width 0.3s ease-in-out;
}
footer a:hover:after {
  width: 100%;
  transition: width 0.3s ease-in-out;
}
footer p {
  margin: 0px 0px 1rem 0px;
}
footer .logo img {
  width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
}
footer ul {
  list-style: none;
  padding: 0.25rem 0px;
  margin: 0px;
}
footer .footer--upper .wrapper {
  border-bottom: 1px solid #fff;
}
footer .footer--upper .wrapper .col {
  padding: 0.75rem 0px;
}
footer .footer--upper .wrapper .col h4 {
  margin: 0px;
}
footer .footer--upper .wrapper .col:last-child {
  padding-bottom: 2rem;
}
footer .footer--lower {
  text-align: center;
  padding-top: 2.5rem;
}

@media screen and (min-width: 60em) {
  footer {
    padding: 4.5rem 0px 2rem;
  }
  footer .footer--upper .wrapper {
    display: flex;
    justify-content: space-between;
    gap: 6rem;
    border-bottom: none;
  }
  footer .footer--upper .wrapper .col {
    padding: 0px;
  }
  footer .footer--upper .wrapper .col:last-child {
    padding-bottom: 0rem;
  }
  footer .footer--lower {
    padding-top: 4.5rem;
  }
}
.button--standard {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5rem;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 2px;
  transition: all 0.3s ease-in-out;
}
.button--standard.download {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button--standard svg {
  margin-left: 0.75rem;
}
.button--standard.green {
  background-color: #0A423C;
  color: #F2F2F2;
  border: 4px solid #0A423C;
}
.button--standard.green:hover {
  background-color: #00816E;
  border-color: #00816E;
  border: 4px solid #00816E;
}
.button--standard.green:focus-visible {
  border-color: #0A423C;
  color: #0A423C;
  border: 4px solid #0A423C;
  background-color: #CBE2E0;
}
.button--standard.green:focus-visible svg * {
  fill: #0A423C;
}
.button--standard.blue {
  background-color: #0054A4;
  color: #F2F2F2;
  border: 4px solid #0054A4;
}
.button--standard.blue:hover {
  background-color: #16334D;
  border-color: #16334D;
  border: 4px solid #16334D;
  cursor: pointer !important;
}
.button--standard.blue:focus-visible {
  border-color: #16334D;
  color: #16334D;
  border: 4px solid #16334D;
  background-color: #DDE9F4;
}
.button--standard.blue:focus-visible svg * {
  fill: #16334D;
}
.button--standard.reverse-primary {
  background-color: #FAFDFF;
  color: #3B3E3F;
  border: 4px solid #FAFDFF;
}
.button--standard.reverse-primary svg * {
  fill: #3B3E3F;
}
.button--standard.reverse-primary:hover {
  border-color: #5091CD;
  background-color: #5091CD;
  color: #fff;
  cursor: pointer !important;
}
.button--standard.reverse-primary:hover svg * {
  fill: #fff;
}
.button--standard.reverse-primary:focus-visible {
  border-color: #16334D;
  color: #16334D;
  background-color: #DDE9F4;
}
.button--standard.reverse-primary:focus-visible svg * {
  fill: #16334D;
}
.button--standard.no-icon svg {
  display: none;
}
.button--standard:hover, .button--standard:focus-visible {
  transition: all 0.3s ease-in-out;
  outline: none;
}
.button--small {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  text-decoration: none;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
  margin: 1rem 0px;
}
.button--small.download {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.button--small.light-green {
  background-color: #CBE2E0;
  border: 4px solid #CBE2E0;
  color: #0A423C;
}
.button--small.light-green:is(a) :hover {
  background-color: #0E978A;
  border: 4px solid #0E978A;
  color: #fff;
}
.button--small.light-green:is(a):focus-visible {
  background-color: #CBE2E0;
  border: 4px solid #0A423C;
  color: #fff;
}
.button--small.darker-green {
  background-color: #0E978A;
  border: 4px solid #0E978A;
  color: #fff;
}
.button--small.darker-green:is(a):hover {
  background-color: #00816E;
  border: 4px solid #00816E;
  cursor: pointer !important;
}
.button--small.darker-green:is(a):focus-visible {
  background-color: #00816E;
  border: 4px solid #0A423C;
}
.button--small.darker-green.download:hover {
  background-color: #0A423C;
  border: 4px solid #0A423C;
  cursor: pointer !important;
}
.button--small.darker-green.download:hover svg * {
  fill: #0E978A;
}
.button--small.darker-green.download:focus-visible {
  background-color: #0A423C;
  border: 4px solid #0E978A;
}
.button--small.darker-green.download:focus-visible svg * {
  fill: #0E978A;
}
.button--small.light-blue {
  background-color: #DDE9F4;
  border: 4px solid #DDE9F4;
  color: #16334D;
}
.button--small.light-blue.download svg * {
  fill: #16334D;
}
.button--small.light-blue.download:hover {
  background-color: #16334D;
  border: 4px solid #16334D;
  color: #fff;
  cursor: pointer;
}
.button--small.light-blue.download:hover svg * {
  fill: #fff;
}
.button--small.light-blue.download:focus-visifble {
  background-color: #004B8D;
  border: 4px solid #5091CD;
}
.button--small.light-blue.download:focus-visifble svg * {
  fill: #5091CD;
}
.button--small.light-blue:is(a):hover {
  background-color: #16334D;
  border: 4px solid #16334D;
  color: #fff;
  cursor: pointer !important;
}
.button--small.light-blue:is(a):focus-visible {
  background-color: #004B8D;
  border: 4px solid #5091CD;
  color: #fff;
}
.button--small.middle-blue {
  background-color: #5091CD;
  border: 4px solid #5091CD;
  color: #fff;
}
.button--small.middle-blue:is(a):hover {
  background-color: #0054A4;
  border: 4px solid #0054A4;
  cursor: pointer !important;
}
.button--small.middle-blue:is(a):focus-visible {
  background-color: #5091CD;
  border: 4px solid #004B8D;
}
.button--small.dark-blue {
  background-color: #16334D;
  border: 4px solid #16334D;
  color: #fff;
}
.button--small.dark-blue:is(a):hover {
  background-color: #0054A4;
  border: 4px solid #0054A4;
  cursor: pointer !important;
}
.button--small.dark-blue:is(a):focus-visible {
  background-color: #DDE9F4;
  border: 4px solid #16334D;
  color: #16334D;
}
.button--small:hover, .button--small:focus-visible {
  transition: all 0.3s ease-in-out;
  outline: none;
}

.scroller {
  background-color: #DDE9F4;
}
.scroller .mobile-header {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 4rem;
  aspect-ratio: 4/3;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
}
.scroller--green {
  background-color: #CBE2E0;
}
.scroller--green .mobile-header::after {
  height: auto;
  aspect-ratio: 5/1;
  left: 0px;
  right: 0px;
  width: 100vw;
  top: 100%;
  position: absolute;
  background-image: url("/annual-report-2025/img/line-loop-1.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: auto 100%;
  content: "";
}
.scroller .wrapper {
  display: flex;
  position: relative;
  flex-wrap: wrap;
}
.scroller .wrapper .right img:not(.card img) {
  display: none;
}

@media screen and (min-width: 48em) {
  body .scroller--green {
    position: relative;
  }
  body .scroller--green::after {
    height: 213px;
    left: 0px;
    right: 0px;
    width: 100vw;
    top: -4px;
    position: absolute;
    background-image: url("/annual-report-2025/img/line-loop-1.svg");
    background-repeat: no-repeat;
    background-position: left;
    background-size: auto 213px;
    content: "";
  }
  body .scroller .mobile-header {
    display: none;
  }
  body .scroller .wrapper {
    flex-wrap: nowrap;
    max-width: 1200px;
    justify-content: space-between;
    gap: 2rem;
  }
  body .scroller .wrapper .right img:not(.card img) {
    display: block;
  }
  body .scroller .left,
  body .scroller .right {
    padding-top: 200px;
    max-width: 34rem;
    width: 100%;
  }
  body .scroller .left {
    height: 100dvh;
    left: 0;
    position: sticky;
    top: 0px;
  }
}
.card {
  padding: 2rem;
  position: relative;
  margin: 2rem 0px;
}
.card .content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.card .content .copy h3 {
  margin: 0;
  padding: 0;
}
.card .content .copy p {
  margin: 0.5rem 0px;
}
.card::after {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  background-color: #FAFDFF;
  z-index: 1;
}
.card::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 100%;
  height: 100%;
  background-color: #B8C8E3;
  z-index: 0;
}

.db-card {
  width: 100%;
  max-width: 400px;
  padding: 1rem 1rem;
  margin-bottom: 3rem;
  background-color: #FAFDFF;
}
.db-card:not(.results .db-card) {
  /* Enables container queries if we're not in the production snapshot */
  container-type: inline-size;
  container-name: card-container;
}
.db-card h3 {
  color: #0A423C;
}
.db-card .metric {
  color: #00816E;
  font-weight: 900;
  display: block;
  line-height: 1em;
}
.db-card .metric.small {
  font-size: 1rem;
}
.db-card .metric.large {
  font-size: 2.5rem;
  margin: 2rem 0px;
}
.db-card small {
  font-size: 1rem;
  color: #3B3E3F;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-start;
  padding: 0.5rem 0px;
  border-top: 1px solid #0A423C;
}
.db-card small svg * {
  fill: #0A423C;
}
.db-card.shadow {
  box-shadow: 10px 10px 0px 5px rgba(82, 113, 110, 0.5490196078);
}
.db-card:is(.alt .db-card) h3 {
  color: #16334D;
}
.db-card:is(.alt .db-card) small,
.db-card:is(.alt .db-card) .metric {
  color: #004B8D;
}
.db-card:is(.alt .db-card) small svg *,
.db-card:is(.alt .db-card) .metric svg * {
  fill: #004B8D;
}
.db-card.light-blue h3, .db-card.dark-blue h3, .db-card.middle-blue h3 {
  color: #DDE9F4 !important;
}
.db-card.light-blue .metric,
.db-card.light-blue small, .db-card.dark-blue .metric,
.db-card.dark-blue small, .db-card.middle-blue .metric,
.db-card.middle-blue small {
  color: #FAFDFF !important;
  border-top-color: #FAFDFF !important;
}
.db-card.light-blue .metric svg *,
.db-card.light-blue small svg *, .db-card.dark-blue .metric svg *,
.db-card.dark-blue small svg *, .db-card.middle-blue .metric svg *,
.db-card.middle-blue small svg * {
  fill: #FAFDFF !important;
}
.db-card.lightest-blue {
  background-color: #DDE9F4;
}
.db-card.lightest-blue h3 {
  color: #16334D;
}
.db-card.lightest-blue .metric {
  color: #004B8D;
}
.db-card.light-blue {
  background-color: #5091CD;
}
.db-card.dark-blue {
  background-color: #004B8D;
}
.db-card.middle-blue {
  background-color: #0054A4;
}
.db-card.lightest-green {
  background-color: #CBE2E0;
}
.db-card.lightest-green h3 {
  color: #0A423C;
}
.db-card.lightest-green .metric {
  color: #00816E;
}
.db-card.light-green h3,
.db-card.light-green .metric,
.db-card.light-green small, .db-card.dark-green h3,
.db-card.dark-green .metric,
.db-card.dark-green small, .db-card.deep-green h3,
.db-card.deep-green .metric,
.db-card.deep-green small {
  color: #FAFDFF !important;
}
.db-card.light-green small, .db-card.dark-green small, .db-card.deep-green small {
  border-top-color: #FAFDFF !important;
}
.db-card.light-green small svg *, .db-card.dark-green small svg *, .db-card.deep-green small svg * {
  fill: #FAFDFF !important;
}
.db-card.light-green {
  background-color: #0E978A;
}
.db-card.dark-green {
  background-color: #00816E;
}
.db-card.deep-green {
  background-color: #0A423C;
}

@container card-container (max-width: 300px) {
  .db-card .metric.large {
    font-size: 2.25rem;
  }
  .db-card small {
    font-size: 0.75rem;
  }
}
body.home .hero {
  position: relative;
}
body.home .hero .wrapper {
  display: flex;
  flex-direction: column-reverse;
}
body.home .hero .wrapper .left {
  padding: 6.25rem 0px 11.25rem 0px;
  position: relative;
}
body.home .hero .wrapper .left::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: -2px;
  background-image: url("/annual-report-2025/img/2025/2025Vector.webp");
  background-size: auto 100px;
  background-position: bottom right;
  background-repeat: no-repeat;
  pointer-events: none;
}
body.home .hero .wrapper .right {
  aspect-ratio: 430/383;
  background-image: url("/annual-report-2025/img/2025/DJI_0284.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
body.home .homes {
  background-color: #CBE2E0;
  background-image: url("/annual-report-2025/img/homes.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto 60px;
  padding: 4rem 0px;
}
body.home .homes .wrapper {
  display: flex;
  flex-direction: column-reverse;
}
body.home .homes .wrapper .left,
body.home .homes .wrapper .right {
  flex: 1;
  padding: 0px 2rem;
}
body.home .homes .wrapper .left a {
  margin-bottom: 40px;
}
body.home .homes .right .state-circle {
  border-radius: 50%;
  width: 50%;
  max-width: 400px;
  aspect-ratio: 1/1;
  display: block;
  margin: 0 auto;
  background-color: #16334D;
  background-image: url("/annual-report-2025/img/counties-label.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media screen and (min-width: 48em) {
  .scroller .wrapper .right a img {
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: 50% 78%;
  }
  body.home .homes {
    padding: 8rem 0px;
  }
  body.home .homes .wrapper {
    flex-direction: row;
    align-items: center;
  }
  body.home .homes .wrapper .left,
  body.home .homes .wrapper .right {
    flex: 1;
  }
  body.home .homes .wrapper .right .state-circle {
    width: 90%;
  }
  body.home .homes .wrapper .left a {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 60em) {
  body.home .hero .wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: max(7.71vw, 111px);
  }
  body.home .hero .wrapper .left {
    padding: 6.25rem 0px 11.25rem 0px;
    flex-basis: 50%;
  }
  body.home .hero .wrapper .left::before {
    background-position: bottom left;
  }
  body.home .hero .wrapper .right {
    flex-basis: 50%;
    margin: 0px;
    left: 0;
    right: 0;
    background-image: url("/annual-report-2025/img/2025/DJI_0284.webp");
    position: static;
  }
  body.home .hero .wrapper .right::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50vw;
    right: 0px;
    bottom: 0;
    background-image: url("/annual-report-2025/img/2025/DJI_0284.webp");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 50vw;
  }
}
body.production .hero {
  margin-top: 2rem;
}
body.production .hero .wrapper {
  background-color: #DDE9F4;
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}
body.production .hero .wrapper .left {
  padding: 3rem 1rem;
  position: relative;
}
body.production .hero .wrapper .left label {
  width: min(280px, 90%);
  border: 1px solid #004B8D;
  background-color: #FAFDFF;
  position: relative;
  height: 3rem;
  display: block;
  margin: 2rem 0px;
}
body.production .hero .wrapper .left label strong {
  position: absolute;
  top: -25%;
  left: 0rem;
  transform: translateY(-50%);
}
body.production .hero .wrapper .left label select {
  display: block;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0.625rem;
  background-color: transparent;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  font-size: 14px;
  letter-spacing: 0.04rem;
}
body.production .hero .wrapper .left .buttons {
  display: inline-flex;
  flex-direction: column;
  gap: 1rem;
}
body.production .hero .wrapper .left #popover {
  opacity: 0;
  background-color: #FAFDFF;
  padding: 1rem 2rem;
  border-radius: 1rem;
  box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.1490196078), 0px 1px 2px 0px rgba(0, 0, 0, 0.3019607843);
  transition: all 0.3s ease-in-out;
  color: #16334D;
}
body.production .hero .wrapper .left #popover h4 {
  margin-bottom: 1rem;
}
body.production .hero .wrapper .left #popover span {
  display: block;
}
body.production .hero .wrapper .left #popover em {
  font-weight: 900;
}
body.production .hero .wrapper .left #popover #units,
body.production .hero .wrapper .left #popover #amount {
  color: #5091CD;
}
body.production .hero .wrapper .left #popover button.close {
  display: block;
  background-image: url("../img/close-x.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  appearance: none;
  border: none;
  height: 1rem;
  width: 1rem;
  float: right;
  cursor: pointer;
}
body.production .hero .wrapper .left #popover:not([inert]) {
  opacity: 1;
}
body.production .hero .wrapper .right {
  aspect-ratio: 430/383;
  background-color: #16334D;
  overflow: scroll;
  padding: 1rem;
  display: flex;
}
body.production .hero .wrapper .right svg {
  width: 100%;
  height: auto;
}
body.production .hero .wrapper .right svg path {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
body.production .hero .wrapper .right svg path.active {
  fill: #004B8D;
}
body.production .hero .wrapper .right svg path:hover {
  fill: #5091CD;
  transition: all 0.3s ease-in-out;
}
body.production .results {
  padding: 2rem 1rem;
}
body.production .results h2 {
  color: #004B8D;
}
body.production .results-upper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body.production .results-upper .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
body.production .results-lower {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Single column by default */
  gap: 2rem;
  margin-top: 2rem;
}
body.production .results-lower .small,
body.production .results-lower .medium,
body.production .results-lower .large {
  grid-column-end: span 1;
}
body.production .results-lower .graph {
  width: 200px;
  height: 200px;
  max-width: 200px !important;
  display: block;
  margin: 3rem auto;
}
body.production .results-lower .graph.bar {
  width: 100%;
  max-width: 100% !important;
  aspect-ratio: 16/9;
  display: block;
  margin: 3rem auto;
}
body.production .results-lower .graph canvas {
  max-width: 100%;
}
body.production .results-lower .db-card {
  max-width: 100%;
  width: 100%;
  margin-bottom: 0px;
}
body.production .results-lower .db-card .metrics {
  padding: 1rem 0px;
}
body.production .results-lower .db-card .metrics .header strong {
  text-decoration: underline;
}
body.production .results-lower .db-card .metrics .metric {
  padding-left: 65px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 50px;
  margin-bottom: 1rem;
}
body.production .results-lower .db-card .metrics .metric.age {
  background-image: url("../img/db-account_circle.svg");
}
body.production .results-lower .db-card .metrics .metric.income {
  background-image: url("../img/db-line.svg");
}
body.production .results-lower .db-card .metrics .metric.loan {
  background-image: url("../img/db-paid.svg");
}
body.production .results-lower .db-card .metrics .metric.sale {
  background-image: url("../img/db-shoppingmode.svg");
}
body.production .results-lower .db-card figure {
  padding: 0px;
  margin: 0px;
}

@media screen and (min-width: 40em) {
  body.production .results-lower {
    grid-template-columns: repeat(12, 1fr); /* 12 columns */
  }
  body.production .results-lower .small:nth-child(1), body.production .results-lower .small:nth-child(2) {
    grid-column-end: span 6;
  }
  body.production .results-lower .small:nth-child(3) {
    grid-column-end: span 12;
  }
  body.production .results-lower .medium,
  body.production .results-lower .large {
    grid-column-end: span 12;
  }
  body.production .results-lower .medium .db-card figure {
    position: relative;
    display: grid;
    grid-template-rows: 2rem 1fr 2rem;
    grid-template-columns: repeat(6, 1fr);
  }
  body.production .results-lower .medium .db-card figure h3 {
    grid-column-start: 1;
    grid-column-end: 7;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  body.production .results-lower .medium .db-card figure .graph,
  body.production .results-lower .medium .db-card figure figcaption {
    grid-row-start: 2;
    grid-row-end: 3;
  }
  body.production .results-lower .medium .db-card figure .graph {
    grid-column-start: 1;
    grid-column-end: 4;
  }
  body.production .results-lower .medium .db-card figure figcaption {
    grid-column-start: 4;
    grid-column-end: 7;
  }
  body.production .results-lower .medium .db-card small {
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 0px;
  }
  body.production .results-lower .medium.first {
    position: relative;
    background-color: #DDE9F4;
    padding-bottom: 2rem;
  }
  body.production .results-lower .medium.first .db-card small {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1rem;
  }
  body.production .results-lower .db-card h3 {
    font-size: 1rem;
  }
  body.production .results-lower .db-card .metric.large {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 48em) {
  body.production .results-lower .small {
    grid-column-end: span 4;
  }
}
@media screen and (min-width: 60em) {
  body.production .hero {
    margin-top: 6rem;
  }
  body.production .hero .wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  body.production .hero .wrapper .left {
    padding: 3.125rem 64px 3.125rem 64px;
    flex-basis: 50%;
  }
  body.production .hero .wrapper .left .buttons {
    flex-direction: row;
  }
  body.production .hero .wrapper .right {
    flex-basis: 50%;
  }
  body.production .hero .wrapper .right #popover {
    top: 1rem;
    right: 1rem;
  }
  body.production .results {
    margin-top: 2rem;
  }
  body.production .results-upper {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
  body.production .results-upper .buttons {
    gap: 2rem;
  }
  body.production .results-lower .small:nth-child(1), body.production .results-lower .small:nth-child(2), body.production .results-lower .small:nth-child(3) {
    grid-column-end: span 4;
  }
  body.production .results-lower .medium {
    grid-column-end: span 6;
  }
  body.production .results-lower .medium.first {
    background-color: #DDE9F4;
  }
}
@media screen and (min-width: 64em) {
  body.production .results-lower {
    grid-template-columns: repeat(12, 1fr); /* 12 columns */
  }
  body.production .results-lower .db-card figure {
    display: grid;
  }
  body.production .results-lower .db-card figure figcaption .metric.large {
    font-size: 2rem;
  }
  body.production .results-lower .db-card figure figcaption small {
    position: absolute;
  }
}
@media screen and (min-width: 80em) {
  body.production .results-lower .db-card h3 {
    font-size: 1.5rem;
  }
  body.production .results-lower .db-card figure figcaption .metric.large {
    font-size: 2.5rem;
  }
}
body.mission .intro {
  position: relative;
}
body.mission .intro .wrapper {
  display: flex;
  flex-direction: column-reverse;
}
body.mission .intro .wrapper .left {
  padding: 1rem 0px 22vw 0px;
}
body.mission .intro .wrapper .left::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: -2px;
  background-image: url("/annual-report-2025/img/homes-blue.svg");
  background-size: auto 100px;
  background-position: bottom right;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.25;
}
body.mission .intro .wrapper .right {
  aspect-ratio: 430/383;
  background-image: url("/annual-report-2025/img/2025/WVHDF_Full-Color_Logo.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
body.mission .mission {
  position: relative;
  background-color: #5091CD;
  width: 100vw;
  overflow: hidden;
}
body.mission .mission .wrapper {
  display: flex;
  flex-direction: column;
}
body.mission .mission .wrapper .left {
  aspect-ratio: 430/383;
  background-image: url("/annual-report-2025/img/2025/CRD20972.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
body.mission .mission .wrapper .right {
  padding: 16% 0px 32% 0px;
}
body.mission .mission .wrapper .right::before {
  content: " ";
  aspect-ratio: 570/178;
  width: 100vw;
  background-image: url("/annual-report-2025/img/2025/Test_NewLoop_2025.svg");
  background-size: contain;
  background-position: bottom left;
  background-repeat: no-repeat;
  pointer-events: none;
  position: absolute;
  bottom: -1rem;
  left: 40px;
  right: 0px;
}
body.mission .values {
  position: relative;
  background-color: #0054A4;
}
body.mission .values .wrapper {
  display: flex;
  flex-direction: column-reverse;
}
body.mission .values .wrapper .left {
  padding: 6.25rem 0px 11.25rem 0px;
}
body.mission .values .wrapper .right {
  aspect-ratio: 430/383;
  background-image: url("/annual-report-2025/img/2025/Group 3.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
body.mission .mission,
body.mission .values {
  color: #FAFDFF;
}
body.mission .board {
  padding: clamp(112px, 20%, 10rem) 0px;
  position: relative;
  overflow: hidden;
}
body.mission .board .copy {
  width: 100%;
  max-width: 600px;
}
body.mission .board .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
  gap: 2rem;
  place-items: center; /* Horizontally center items in each column */
}
@media screen and (min-width: 592px) {
  body.mission .board .grid {
    align-items: start !important;
  }
}
body.mission .board::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: auto;
  right: -25vw;
  bottom: auto;
  background-image: url("/annual-report-2025/img/blue-swoop-zero.svg?v=2");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
  display: block;
  aspect-ratio: 489/152;
  width: 100vw;
  max-width: 968px;
  height: auto;
  transform: rotate(-134.85deg);
}
body.mission .brd img {
  width: 100%;
  max-width: 276px;
  background-color: #5091CD;
  margin-bottom: 0.5rem;
  max-height: 345px;
  object-fit: cover;
  object-position: center;
  min-height: 345px;
}
body.mission .brd .info {
  max-width: 276px;
}
body.mission .brd em {
  font-weight: bold;
}
body.mission .about {
  background-color: #CBE2E0;
  padding: 0px;
}
body.mission .about .wrapper {
  display: flex;
  flex-direction: column;
  flex-direction: column-reverse;
}
body.mission .about .left {
  padding: 8rem 0px 4rem 0px;
}
body.mission .about .right {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
body.mission .about .right img {
  width: 100%;
  height: auto;
  background-color: #5091CD;
}
body.mission .about .right::before {
  content: "";
  position: absolute;
  top: 105%;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-image: url("/annual-report-2025/img/line-about-green.svg?v=2");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  pointer-events: none;
  display: block;
  width: 100vw;
  aspect-ratio: 704/128;
  transform: scaleX(-1);
}

@media screen and (min-width: 60em) {
  body.mission .intro .wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: max(7.71vw, 111px);
  }
  body.mission .intro .wrapper .left {
    padding: 6.25rem 0px 15rem 0px;
    flex-basis: 50%;
    margin: 2vw 0px;
  }
  body.mission .intro .wrapper .right {
    flex-basis: 50%;
    margin: 0px;
    left: 0;
    right: 0;
    background-image: none;
    position: static;
  }
  body.mission .intro .wrapper .right::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50vw;
    right: 0px;
    bottom: 0;
    background-image: url("/annual-report-2025/img/2025/WVHDF_Full-Color_Logo.svg");
    background-size: contain;
    background-position: 50% 42%;
    background-repeat: no-repeat;
    width: 48vw;
  }
  body.mission .mission .wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: max(7.71vw, 111px);
  }
  body.mission .mission .wrapper .left {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0px;
    left: 0;
    right: 0;
    background-image: none;
    position: static;
    aspect-ratio: auto;
  }
  body.mission .mission .wrapper .left::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0vw;
    right: 50px;
    bottom: 0;
    background-image: url("/annual-report-2025/img/2025/CRD20972.webp");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 48vw;
    margin: 1vw 0px;
  }
  body.mission .mission .wrapper .right {
    padding: 14rem 0px;
    flex-basis: 45%;
  }
  body.mission .mission .wrapper .right::before {
    bottom: -1vw;
    left: 62vw;
    right: 0px;
    width: 40vw;
  }
  body.mission .values .wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: max(7.71vw, 111px);
  }
  body.mission .values .wrapper .left {
    padding: 7vw 0;
    flex-basis: 50%;
  }
  body.mission .values .wrapper .right {
    flex-basis: 50%;
    margin: 0px;
    left: 0;
    right: 0;
    background-image: none;
    position: static;
  }
  body.mission .values .wrapper .right::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50vw;
    right: 0px;
    bottom: 0;
    background-image: url("/annual-report-2025/img/2025/Group 3.webp");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 50vw;
  }
  body.mission .about {
    padding: 11rem 0px;
    position: relative;
  }
  body.mission .about .wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: max(10vw, 132px);
  }
  body.mission .about .wrapper .left,
  body.mission .about .wrapper .right {
    flex-basis: 50%;
  }
  body.mission .about .wrapper .right {
    width: auto;
    flex-basis: 50%;
    margin: 0px;
    left: 0;
    right: 0;
    position: static;
  }
  body.mission .about .wrapper .right::before {
    top: 2rem;
    transform: scaleX(1);
  }
}
section.articles {
  position: relative;
}
section.articles .wrapper {
  display: flex;
}
section.articles .creative {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
section.articles .creative img {
  display: none;
}
section.articles .creative::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  pointer-events: none;
  z-index: -1;
  left: 0px;
  right: 0px;
}
section.articles .cards {
  padding: 8rem 2rem;
  position: relative;
}
section.articles .cards::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 178px;
  background-image: url("/annual-report-2025/img/top-left-swoop-green.svg");
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
  pointer-events: none;
}
section.articles .copy img {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 3rem;
  z-index: -1;
}
section.articles:nth-of-type(1) .wrapper {
  flex-direction: column;
}
section.articles:nth-of-type(1) .creative::before {
  background-color: #0E978A;
}
section.articles:nth-of-type(1).alt .creative::before {
  background-color: #5091CD;
}
section.articles:nth-of-type(2) .wrapper {
  flex-direction: column-reverse;
}
section.articles:nth-of-type(2) .creative::before {
  background-color: #CBE2E0;
}
section.articles:nth-of-type(2).alt .creative::before {
  background-color: #DDE9F4;
}
section.articles:nth-of-type(2).alt .cards::before {
  display: none;
}
section.articles:nth-of-type(3) {
  background-color: #5091CD;
}
section.articles:nth-of-type(3) .wrapper {
  flex-direction: column-reverse;
}
section.articles:nth-of-type(3) .copy {
  color: #fff;
  padding: 16% 0px 32% 0px;
}
section.articles:nth-of-type(3) .copy::before {
  content: " ";
  aspect-ratio: 570/178;
  width: 100vw;
  background-image: url("/annual-report-2025/img/bottom-left-swoop-blue.svg");
  background-size: contain;
  background-position: bottom left;
  background-repeat: no-repeat;
  pointer-events: none;
  position: absolute;
  bottom: 2rem;
  left: 0px;
  right: 0px;
}
section.articles:nth-of-type(3) .creative {
  aspect-ratio: 4/3;
}
section.articles:nth-of-type(3) .creative::before {
  background-image: url("/annual-report-2025/img/Angela_Edited.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 1;
}
section.articles:nth-of-type(3) .second-image::before {
  background-image: url("/annual-report-2025/img/Habitat_House_Exterior.avif") !important;
  background-position: center;
}
section.articles:nth-of-type(3) .third-image::before {
  background-image: url("/annual-report-2025/img/2025/placeholder.webp") !important;
  background-position: center;
}
section.articles:nth-of-type(3) .prichard-image::before {
  background-image: url("/annual-report-2025/img/Prichard_Exterior_1.avif") !important;
  background-position: center;
}
section.articles:nth-of-type(3) .loganwood-image::before {
  background-image: url("/annual-report-2025/img/Ext_2_1.avif") !important;
  background-position: center;
}
section.articles:nth-of-type(3) .parkland-image::before {
  background-image: url("/annual-report-2025/img/Exterior_1.avif") !important;
  background-position: center;
}
section.articles:nth-of-type(3) .key-image::before {
  background-image: url("/annual-report-2025/img/3161ca464a6ffd99eabb12d32de3c065.avif") !important;
  background-position: center;
}
section.articles:nth-of-type(3) .beacon-for-hope-image::before {
  background-image: url("/annual-report-2025/img/2025/McDowell_County_Courthouse-4.webp") !important;
  background-position: center;
  background-size: contain;
}
section.articles:nth-of-type(3) .path-to-vets-image::before {
  background-image: url("/annual-report-2025/img/2025/Veterans_Program_Logo.webp") !important;
  background-position: center;
}
section.articles:nth-of-type(3) .housing-needs-assessment-image::before {
  background-image: url("/annual-report-2025/img/2025/Princeton_25-1.webp") !important;
  background-position: center;
}
section.articles:nth-of-type(3) .fund-mortgage-programs-image::before {
  background-image: url("/annual-report-2025/img/2025/NWilson_Edited.webp") !important;
  background-position: bottom;
}
section.articles:nth-of-type(3) .renovated-homes-image::before {
  background-image: url("/annual-report-2025/img/2025/ASP 1.webp") !important;
  background-position: center;
}
section.articles:nth-of-type(3).alt {
  background-color: #0E978A;
}
section.articles:nth-of-type(3).alt .copy::before {
  background-image: url("/annual-report-2025/img/bottom-left-swoop-green.svg");
}
section.articles:nth-of-type(3).alt .creative::before {
  background-image: url("/annual-report-2025/img/Exterior_1.avif");
}
section.articles .homes::before {
  background-image: url("/annual-report-2025/img/homes.svg");
  background-size: auto 50px;
  background-position: bottom right;
  background-repeat: no-repeat;
}

@media screen and (min-width: 48em) {
  section.articles .wrapper {
    flex-direction: row;
  }
  section.articles .wrapper .copy,
  section.articles .wrapper .creative {
    flex-basis: 50%;
  }
  section.articles .wrapper .creative {
    width: auto;
    max-width: 50%;
    margin-left: 0px;
    margin-right: 0px;
    left: 0;
    right: 0;
  }
  section.articles .cards {
    padding-top: 9rem;
    padding-left: min(5vw, 170px);
  }
  section.articles .wrapper .creative img {
    display: block;
    width: 50vw;
    max-width: 50vw;
    height: 400px;
    object-fit: cover;
  }
  section.articles .wrapper .copy img {
    display: none;
  }
  section.articles .copy {
    padding: 4rem 0px 4rem 0px;
  }
  section.articles:nth-of-type(1) .wrapper {
    flex-direction: row;
  }
  section.articles:nth-of-type(1) .creative {
    padding: 0px;
  }
  section.articles:nth-of-type(1) .creative img {
    left: 0px;
    right: auto;
  }
  section.articles:nth-of-type(1) .creative::before {
    left: 0px;
    width: 50vw;
  }
  section.articles:nth-of-type(1) .copy {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: min(8vw, 130px);
  }
  section.articles:nth-of-type(1).alt .wrapper {
    flex-direction: row-reverse;
  }
  section.articles:nth-of-type(1).alt .wrapper .creative {
    padding-top: 400px;
    position: static;
  }
  section.articles:nth-of-type(1).alt .wrapper .creative img {
    position: absolute;
    left: 0px;
    right: auto;
    top: 0px;
  }
  section.articles:nth-of-type(1).alt .wrapper .creative::before {
    left: 0px;
    right: auto;
    width: 50vw;
  }
  section.articles:nth-of-type(1).alt .wrapper .creative .cards {
    position: static;
  }
  section.articles:nth-of-type(1).alt .wrapper .creative .cards::before {
    top: 400px;
  }
  section.articles:nth-of-type(1).alt .wrapper .copy {
    padding-left: min(8vw, 130px);
    padding-right: 0px;
  }
  section.articles:nth-of-type(2) .wrapper {
    flex-direction: row;
  }
  section.articles:nth-of-type(2) .creative {
    padding-top: 475px;
  }
  section.articles:nth-of-type(2) .creative::before {
    right: 0px;
    left: auto;
    width: 50vw;
  }
  section.articles:nth-of-type(2) .creative img {
    top: 0px;
    right: 0px;
    left: auto;
    position: absolute;
  }
  section.articles:nth-of-type(2) .copy {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: min(8vw, 130px);
  }
  section.articles:nth-of-type(2).alt .wrapper {
    flex-direction: row-reverse;
  }
  section.articles:nth-of-type(2).alt .wrapper .creative {
    position: static;
  }
  section.articles:nth-of-type(2).alt .wrapper .copy {
    padding-left: 0px;
    padding-right: min(8vw, 130px);
  }
  section.articles:nth-of-type(3) .wrapper {
    flex-direction: row;
  }
  section.articles:nth-of-type(3) .copy {
    padding-right: min(8vw, 130px);
    padding-top: min(25%, 240px);
    padding-bottom: 25%;
  }
  section.articles:nth-of-type(3) .copy::before {
    width: 60vw;
  }
  section.articles:nth-of-type(3) .creative {
    aspect-ratio: auto;
  }
  section.articles:nth-of-type(3) .creative::before {
    left: 0px;
    width: 50vw;
  }
  section.articles:nth-of-type(3).alt .wrapper {
    flex-direction: row-reverse;
  }
  section.articles:nth-of-type(3).alt .wrapper .copy {
    padding-left: min(8vw, 130px);
    padding-right: 0px;
  }
  section.articles:nth-of-type(3).alt .wrapper .creative {
    position: static;
  }
  section.articles:nth-of-type(3) .beacon-for-hope-image::before {
    left: 60px !important;
    width: 45vw !important;
  }
  section.articles .homes::before {
    background-image: url("/annual-report-2025/img/homes.svg");
    background-size: auto 100px;
    background-position: bottom right;
    background-repeat: no-repeat;
  }
}
body.single-family-overview .hero {
  position: relative;
}
body.single-family-overview .hero .wrapper {
  display: flex;
  flex-direction: column-reverse;
}
body.single-family-overview .hero .wrapper .left {
  padding: 6.25rem 0px 11.25rem 0px;
  position: relative;
}
body.single-family-overview .hero .wrapper .left::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: -2px;
  background-image: url("/annual-report-2025/img/2024.svg");
  background-size: auto 100px;
  background-position: bottom right;
  background-repeat: no-repeat;
  pointer-events: none;
}
body.single-family-overview .hero .wrapper .right {
  aspect-ratio: 430/383;
  background-image: url("/annual-report-2025/img/hero.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
body.single-family-overview .homes {
  background-color: #CBE2E0;
  background-image: url("/annual-report-2025/img/homes.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto 60px;
  padding: 4rem 0px;
}
body.single-family-overview .homes.reverse {
  background-color: white;
  background-image: url("/annual-report-2025/img/homes-blue.svg");
}
body.single-family-overview .homes .wrapper {
  display: flex;
  flex-direction: column;
}
body.single-family-overview .homes .wrapper .left,
body.single-family-overview .homes .wrapper .right {
  flex: 1;
  padding: 0px 2rem;
}
body.single-family-overview .homes .wrapper .left a {
  margin-bottom: 40px;
}
@media screen and (min-width: 48em) {
  body.single-family-overview .homes {
    padding: 8rem 0px;
  }
  body.single-family-overview .homes .wrapper {
    flex-direction: row;
    align-items: center;
  }
  body.single-family-overview .homes .wrapper .left,
  body.single-family-overview .homes .wrapper .right {
    flex: 1;
  }
  body.single-family-overview .homes .wrapper .right .state-circle {
    width: 90%;
  }
  body.single-family-overview .homes .wrapper .right a img {
    aspect-ratio: 4/3;
    object-fit: cover;
  }
  body.single-family-overview .homes .wrapper .left a {
    margin-bottom: 0px;
  }
  body.single-family-overview .reverse .wrapper {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 60em) {
  body.single-family-overview .hero .wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: max(7.71vw, 111px);
  }
  body.single-family-overview .hero .wrapper .left {
    padding: 6.25rem 0px 11.25rem 0px;
    flex-basis: 50%;
  }
  body.single-family-overview .hero .wrapper .left::before {
    background-position: bottom left;
  }
  body.single-family-overview .hero .wrapper .right {
    flex-basis: 50%;
    margin: 0px;
    left: 0;
    right: 0;
    background-image: none;
    position: static;
  }
  body.single-family-overview .hero .wrapper .right::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50vw;
    right: 0px;
    bottom: 0;
    background-image: url("/annual-report-2025/img/Single_Family_Group_1.avif'");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 50vw;
  }
}
body.multi-family-overview .hero {
  position: relative;
}
body.multi-family-overview .hero .wrapper {
  display: flex;
  flex-direction: column-reverse;
}
body.multi-family-overview .hero .wrapper .left {
  padding: 6.25rem 0px 11.25rem 0px;
  position: relative;
}
body.multi-family-overview .hero .wrapper .left::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: -2px;
  background-image: url("/annual-report-2025/img/2024.svg");
  background-size: auto 100px;
  background-position: bottom right;
  background-repeat: no-repeat;
  pointer-events: none;
}
body.multi-family-overview .hero .wrapper .right {
  aspect-ratio: 430/383;
  background-image: url("/annual-report-2025/img/Exterior_1.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
body.multi-family-overview .homes {
  background-color: #CBE2E0;
  background-image: url("/annual-report-2025/img/homes.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto 60px;
  padding: 4rem 0px;
}
body.multi-family-overview .homes.reverse {
  background-color: white;
  background-image: url("/annual-report-2025/img/homes-blue.svg");
}
body.multi-family-overview .homes .wrapper {
  display: flex;
  flex-direction: column;
}
body.multi-family-overview .homes .wrapper .left,
body.multi-family-overview .homes .wrapper .right {
  flex: 1;
  padding: 0px 2rem;
}
body.multi-family-overview .homes .left a {
  margin-bottom: 40px;
}
@media screen and (min-width: 48em) {
  body.multi-family-overview .homes {
    padding: 8rem 0px;
  }
  body.multi-family-overview .homes .wrapper {
    flex-direction: row;
    align-items: center;
  }
  body.multi-family-overview .homes .wrapper .left,
  body.multi-family-overview .homes .wrapper .right {
    flex: 1;
  }
  body.multi-family-overview .homes .wrapper .right .state-circle {
    width: 90%;
  }
  body.multi-family-overview .homes .wrapper .right a img {
    aspect-ratio: 4/3;
    object-fit: cover;
  }
  body.multi-family-overview .homes .wrapper .left a {
    margin-bottom: 0px;
  }
  body.multi-family-overview .reverse .wrapper {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 60em) {
  body.multi-family-overview .hero .wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: max(7.71vw, 111px);
  }
  body.multi-family-overview .hero .wrapper .left {
    padding: 6.25rem 0px 11.25rem 0px;
    flex-basis: 50%;
  }
  body.multi-family-overview .hero .wrapper .left::before {
    background-position: bottom left;
  }
  body.multi-family-overview .hero .wrapper .right {
    flex-basis: 50%;
    margin: 0px;
    left: 0;
    right: 0;
    background-image: none;
    position: static;
  }
  body.multi-family-overview .hero .wrapper .right::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50vw;
    right: 0px;
    bottom: 0;
    background-image: url("/annual-report-2025/img/Exterior_1.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 50vw;
  }
}
body.building-home-together-overview .hero {
  position: relative;
}
body.building-home-together-overview .hero .wrapper {
  display: flex;
  flex-direction: column-reverse;
}
body.building-home-together-overview .hero .wrapper .left {
  padding: 6.25rem 0px 11.25rem 0px;
  position: relative;
}
body.building-home-together-overview .hero .wrapper .left::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: -2px;
  background-image: url("/annual-report-2025/img/2025/2025Vector.webp");
  background-size: auto 100px;
  background-position: bottom right;
  background-repeat: no-repeat;
  pointer-events: none;
}
body.building-home-together-overview .hero .wrapper .right {
  aspect-ratio: 430/383;
  background-image: url("/annual-report-2025/img/2025/CRD20180.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
body.building-home-together-overview .homes {
  background-color: #CBE2E0;
  background-image: url("/annual-report-2025/img/homes.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto 60px;
  padding: 4rem 0px;
}
body.building-home-together-overview .homes.reverse {
  background-color: white;
  background-image: url("/annual-report-2025/img/homes-blue.svg");
}
body.building-home-together-overview .homes .wrapper {
  display: flex;
  flex-direction: column;
}
body.building-home-together-overview .homes .wrapper .left,
body.building-home-together-overview .homes .wrapper .right {
  flex: 1;
  padding: 0px 2rem;
}
body.building-home-together-overview .homes .wrapper .left a img,
body.building-home-together-overview .homes .wrapper .right a img {
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: 50% 78%;
}
body.building-home-together-overview .homes .wrapper .left a {
  margin-bottom: 40px;
}
@media screen and (min-width: 48em) {
  body.building-home-together-overview .homes {
    padding: 8rem 0px;
  }
  body.building-home-together-overview .homes .wrapper {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  body.building-home-together-overview .homes .wrapper .left,
  body.building-home-together-overview .homes .wrapper .right {
    flex: 1;
    padding: 0px !important;
  }
  body.building-home-together-overview .homes .wrapper .right .state-circle {
    width: 90%;
  }
  body.building-home-together-overview .homes .wrapper .right a img {
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: 50% 78%;
  }
  body.building-home-together-overview .homes .wrapper .left a {
    margin-bottom: 0px;
  }
  body.building-home-together-overview .reverse .wrapper {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 60em) {
  body.building-home-together-overview .hero .wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: max(7.71vw, 111px);
  }
  body.building-home-together-overview .hero .wrapper .left {
    padding: 6.25rem 0px 11.25rem 0px;
    flex-basis: 50%;
  }
  body.building-home-together-overview .hero .wrapper .left::before {
    background-position: bottom left;
  }
  body.building-home-together-overview .hero .wrapper .right {
    flex-basis: 50%;
    margin: 0px;
    left: 0;
    right: 0;
    background-image: none;
    position: static;
  }
  body.building-home-together-overview .hero .wrapper .right::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50vw;
    right: 0px;
    bottom: 0;
    background-image: url("/annual-report-2025/img/2025/CRD20180.webp");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 50vw;
  }
}
body.multi-family-programs-overview .hero {
  position: relative;
}
body.multi-family-programs-overview .hero .wrapper {
  display: flex;
  flex-direction: column-reverse;
}
body.multi-family-programs-overview .hero .wrapper .left {
  padding: 6.25rem 0px 11.25rem 0px;
  position: relative;
}
body.multi-family-programs-overview .hero .wrapper .left::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: -2px;
  background-image: url("/annual-report-2025/img/2025/2025Vector.webp");
  background-size: auto 100px;
  background-position: bottom right;
  background-repeat: no-repeat;
  pointer-events: none;
}
body.multi-family-programs-overview .hero .wrapper .right {
  aspect-ratio: 430/383;
  background-image: url("/annual-report-2025/img/2025/DSCF3655_1.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
body.multi-family-programs-overview .homes {
  background-color: #CBE2E0;
  background-image: url("/annual-report-2025/img/homes.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto 60px;
  padding: 4rem 0px;
}
body.multi-family-programs-overview .homes.reverse {
  background-color: white;
  background-image: url("/annual-report-2025/img/homes-blue.svg");
}
body.multi-family-programs-overview .homes .wrapper {
  display: flex;
  flex-direction: column;
}
body.multi-family-programs-overview .homes .wrapper .left,
body.multi-family-programs-overview .homes .wrapper .right {
  flex: 1;
  padding: 0px 2rem;
}
body.multi-family-programs-overview .homes .left a {
  margin-bottom: 40px;
}
@media screen and (min-width: 48em) {
  body.multi-family-programs-overview .homes {
    padding: 8rem 0px;
  }
  body.multi-family-programs-overview .homes .wrapper {
    flex-direction: row;
    align-items: center;
  }
  body.multi-family-programs-overview .homes .wrapper .left,
  body.multi-family-programs-overview .homes .wrapper .right {
    flex: 1;
  }
  body.multi-family-programs-overview .homes .wrapper .right .state-circle {
    width: 90%;
  }
  body.multi-family-programs-overview .homes .wrapper .right a img {
    aspect-ratio: 4/3;
    object-fit: contain;
  }
  body.multi-family-programs-overview .homes .wrapper .left a {
    margin-bottom: 0px;
  }
  body.multi-family-programs-overview .reverse .wrapper {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 60em) {
  body.multi-family-programs-overview .hero .wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: max(7.71vw, 111px);
  }
  body.multi-family-programs-overview .hero .wrapper .left {
    padding: 6.25rem 0px 11.25rem 0px;
    flex-basis: 50%;
  }
  body.multi-family-programs-overview .hero .wrapper .left::before {
    background-position: bottom left;
  }
  body.multi-family-programs-overview .hero .wrapper .right {
    flex-basis: 50%;
    margin: 0px;
    left: 0;
    right: 0;
    background-image: none;
    position: static;
  }
  body.multi-family-programs-overview .hero .wrapper .right::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50vw;
    right: 0px;
    bottom: 0;
    background-image: url("/annual-report-2025/img/2025/DSCF3655_1.webp");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 50vw;
  }
}
body.single-family-programs-overview .hero {
  position: relative;
}
body.single-family-programs-overview .hero .wrapper {
  display: flex;
  flex-direction: column-reverse;
}
body.single-family-programs-overview .hero .wrapper .left {
  padding: 6.25rem 0px 11.25rem 0px;
  position: relative;
}
body.single-family-programs-overview .hero .wrapper .left::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: -2px;
  background-image: url("/annual-report-2025/img/2025/2025Vector.webp");
  background-size: auto 100px;
  background-position: bottom right;
  background-repeat: no-repeat;
  pointer-events: none;
}
body.single-family-programs-overview .hero .wrapper .right {
  aspect-ratio: 430/383;
  background-image: url("/annual-report-2025/img/2025/group_4_crop.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
body.single-family-programs-overview .homes {
  background-color: #CBE2E0;
  background-image: url("/annual-report-2025/img/homes.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto 60px;
  padding: 4rem 0px;
}
body.single-family-programs-overview .homes.reverse {
  background-color: white;
  background-image: url("/annual-report-2025/img/homes-blue.svg");
}
body.single-family-programs-overview .homes .wrapper {
  display: flex;
  flex-direction: column;
}
body.single-family-programs-overview .homes .wrapper .left,
body.single-family-programs-overview .homes .wrapper .right {
  flex: 1;
  padding: 0px 2rem;
}
body.single-family-programs-overview .homes .wrapper .left a {
  margin-bottom: 40px;
}
@media screen and (min-width: 48em) {
  body.single-family-programs-overview .homes {
    padding: 8rem 0px;
  }
  body.single-family-programs-overview .homes .wrapper {
    flex-direction: row;
    align-items: center;
  }
  body.single-family-programs-overview .homes .wrapper .left,
  body.single-family-programs-overview .homes .wrapper .right {
    flex: 1;
  }
  body.single-family-programs-overview .homes .wrapper .right .state-circle {
    width: 90%;
  }
  body.single-family-programs-overview .homes .wrapper .right a img {
    aspect-ratio: 4/3;
    object-fit: cover;
  }
  body.single-family-programs-overview .homes .wrapper .left a {
    margin-bottom: 0px;
  }
  body.single-family-programs-overview .reverse .wrapper {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 60em) {
  body.single-family-programs-overview .hero .wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: max(7.71vw, 111px);
  }
  body.single-family-programs-overview .hero .wrapper .left {
    padding: 6.25rem 0px 11.25rem 0px;
    flex-basis: 50%;
  }
  body.single-family-programs-overview .hero .wrapper .left::before {
    background-position: bottom left;
  }
  body.single-family-programs-overview .hero .wrapper .right {
    flex-basis: 50%;
    margin: 0px;
    left: 0;
    right: 0;
    background-image: none;
    position: static;
  }
  body.single-family-programs-overview .hero .wrapper .right::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50vw;
    right: 0px;
    bottom: 0;
    background-image: url("/annual-report-2025/img/2025/group_4_crop.webp'");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 50vw;
  }
}