@charset "UTF-8";
@import url("https://use.typekit.net/bpv6pzj.css");
@layer lucy-reset, lucy-core, lucy-utilities;
/* --- Grid Mixins --- */
@layer lucy-reset {
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
  }
  img,
  svg {
    display: block;
    max-width: 100%;f
  }
  button {
    border: none;
  }
}
:root {
  --base_font_size: clamp(12px, calc(10px + .5vw), 16px);
  --spacer_xs: 1.125rem;
  --spacer_s: 1.875rem;
  --spacer_m: 2.5rem;
  --spacer_l: 3.75rem;
  --spacer_xl: 5rem;
  --spacer_2xl: 7.5rem;
  --fs_xs: 13px;
  --fs_s: 14px;
  --fs_m: max(16px, 1rem);
  --fs_l: max(18px, 1.125rem);
  --fs_xl: max(18px, 1.375rem);
  --fs_2xl: max(18px, 1.5rem);
  --fs_3xl: max(20px, 1.75rem);
  --fs_4xl: max(28px, 2.875rem);
  --fs_5xl: 3.625rem;
  --fs_6xl: 6.25rem;
  --grid_gutter: 1rem;
  --color_primary: #EB0029;
  --color_dark_red: #8D120E;
  --color_secondary: #197D91;
  --color_dark: #3C3636;
  --color_dark_alt: #656565;
  --color_light: #F3F3F3;
  --color_text: #191919;
  --color_success: var(--color_secondary);
  --color_error: var(--color_primary);
  --color_warning: #DBA01C;
  --color_border: #D4CFC8;
  --color_button_hover: var(--color_dark_red);
  --transition_speed: .3s;
  --transition_timing: ease;
  --font_primary: Arial, sans-serif;
  --font_secondary: "trade-gothic-next-compressed", serif;
  --font_accent: "marydale", sans-serif;
  --button_height: max(40px, 2.75rem);
  --button_cta_height: 60px;
  --alert_height: 130px;
  --input_height: 60px;
  --input_border_radius: .625rem;
  --border_color: var(--color_border);
  --border_width: 1px;
  --border_radius: 20px;
  --border_style: solid;
  --underline_offset: 6px;
  --header_height: 108px;
  --header_spacing: 40px;
  --overlay_color: #000;
  --overlay_opacity: .4;
  --tear_mask_size: 1500px;
  --tear_mask_padding: 2.88rem;
}
@media only screen and (max-width: 900px) {
  :root {
    --header_height: 65px;
    --header_spacing: 8px;
  }
}

.block-link {
  position: relative;
}
.block-link a[href]::after {
  content: "";
  z-index: 1;
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 25;
  padding: 0.75rem 2rem;
  text-decoration: none;
  line-height: 1;
  font-size: var(--base_font_size);
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  background-color: var(--color_primary);
  translate: -50% calc(-100% - 1rem);
}
.skip-link:focus {
  translate: -50% 0;
  outline: none;
  -moz-outline: none;
}

#lucy-content:has(aside), .container {
  margin-inline: auto;
  max-width: 1360px;
  width: 100%;
}
@media only screen and (max-width: 1400px) {
  #lucy-content:has(aside), .container {
    max-width: 1360px;
    padding-inline: max(20px, 4dvw);
  }
}
:is(header:has(.page-header) + #lucy-content) {
  padding-block: 6.125rem;
}
:is(header:has(.page-header) + #lucy-content).no-padding {
  padding-block: 0;
}
:is(header:has(.page-header) + #lucy-content).no-padding-start {
  padding-block-start: 0;
}
@media only screen and (max-width: 1000px) {
  :is(header:has(.page-header) + #lucy-content) {
    padding-block: 1.5rem 3rem;
  }
}

.lucy-layout {
  display: grid;
  grid-template-areas: "main";
  gap: 2rem 8.3cqi;
  grid-template-columns: 1fr;
}
.lucy-layout:has(aside) {
  grid-template-areas: "sidenav main";
  grid-template-columns: minmax(0, 20.25rem) minmax(0, 56.25rem);
}
.lucy-layout:has(aside).sidebar-mobile-only {
  grid-template-areas: "main";
  grid-template-columns: 1fr;
}
.lucy-layout:has(aside).sidebar-mobile-only aside {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .lucy-layout:has(aside) {
    grid-template-areas: "sidenav" "main";
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 700px) {
  .lucy-layout:has(aside) {
    grid-template-columns: 1fr;
    grid-template-areas: "sidenav" "main";
  }
}
.lucy-layout aside:has(.full-sidebar) {
  padding-inline-end: 0;
  border-image-slice: unset;
}
.lucy-layout main {
  grid-area: main;
}

header {
  display: contents;
}

.page-header {
  position: relative;
  display: grid;
  align-items: center;
  width: 100%;
  color: #FFF;
  text-align: center;
  background-color: #1E1A1A;
  background-image: url(/image/noise-bg.png), url(/image/food-bg-large.png);
  background-size: 200px, cover;
}
.page-header:has(.bg)::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  background-image: url("/image/noise-bg.png");
  background-size: 200px;
}
.page-header .header-inner-bg {
  display: grid;
  align-items: center;
  height: 100%;
  min-height: 576px;
  padding-block: 3rem 8rem;
}
.page-header .header-inner-bg:has(.map-page-header) {
  min-height: 420px;
}
@media only screen and (max-width: 910px) {
  .page-header .header-inner-bg {
    min-height: 420px;
  }
}
.page-header:not(:has(.bg)) .header-inner-bg {
  background-blend-mode: multiply;
  background-color: rgba(30, 26, 26, 0.75);
}
.page-header.large-header {
  min-height: min(1130px, 100dvh);
  min-height: min(70.63rem, 100dvh);
}
@media only screen and (max-width: 910px) {
  .page-header.large-header {
    min-height: min(50rem, 100dvh);
  }
}
.page-header.donate-header {
  padding-block-end: 10rem;
}
.page-header {
  position: relative; 
  z-index: 0; 
}  
.page-header .page-header-img { 
  position: absolute; 
  inset:0; 
  z-index:0; 
}

.page-header .container {
  position: relative;
  z-index: 1;
  margin-block-start: calc(var(--header_height) + var(--header_spacing));
}
.page-header.tear-block-end-mask::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1; /* above image, below text if needed */
  background: #000; /* any fill; this is what the mask reveals */
  mask-image: url("/image/tear-up.svg"), linear-gradient(#000 0 0);
  mask-position: 100% calc(100% + 2px);
  mask-size: var(--tear_mask_size);
  mask-repeat: repeat-x;
  mask-composite: exclude;
  /* Safari/WebKit */
  -webkit-mask-image: url("/image/tear-up.svg"), linear-gradient(#000 0 0);
  -webkit-mask-repeat: repeat-x;
  /* try -webkit-mask-composite: xor; if needed */
}
.page-header .intro {
  max-width: 700px;
  margin-inline: auto;
}
.page-header .intro:last-child {
  margin-block-end: 0;
}
.crumb-trail a:focus-visible {
  text-decoration: underline;
}

body:has(#navbar.hide) .sidebar .inner {
  top: calc(var(--header_spacing) * 2);
}
.sidebar .sidebar-nav li:has([aria-current]) {
  font-weight: bold;
  background-color: var(--color_light);
}
.sidebar .sidebar-nav a:focus-visible {
  text-decoration: underline;
  font-weight: bold;
}
@media (pointer: fine) {
  #mobile-page-nav-toggle:focus-visible, .mobile-page-nav-toggle:focus-visible {
    background-color: #e6e6e6;
  }
}

@media only screen and (max-width: 1000px) {
  .mobile-nav-wrapper:not(:has(~ .active)) {
    margin-block-end: 4rem;
  }
}
.navbar {
  --navbar_inline_space: 4dvw;
  position: fixed;
  z-index: 4;
  top: var(--header_spacing);
  left: var(--navbar_inline_space);
  right: var(--navbar_inline_space);
  display: grid;
  grid-template-rows: var(--header_height) 0fr;
  width: 100%;
  width: calc(100% - var(--navbar_inline_space) * 2);
  max-width: 1507px;
  margin-inline: auto;
  border-radius: 20px 0 20px 0;
  background-color: #FFF;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: grid-template-rows 0.3s ease-in-out, border-radius 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.navbar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px;
  padding-inline: 10px 30px;
}
.navbar .logo-wrap {
  flex-basis: 184px;
  display: grid;
  justify-content: start;
  align-items: center;
}
.navbar .logo-wrap a:hover svg, .navbar .logo-wrap a:focus-visible svg {
  color: var(--color_dark_red);
}
@media only screen and (max-width: 1200px) {
  .navbar .logo-wrap {
    flex-basis: auto;
  }
}
.navbar .logo {
  width: clamp(80px, 1rem + 7dvw, 130px);
}
.navbar .logo svg {
  color: var(--color_primary);
  transition: color 0.2s;
}
.navbar .navbar-nav {
  --navbar_gap: 2rem;
  display: flex;
  gap: var(--navbar_gap);
  align-items: center;
  margin: 0;
  font-family: var(--font_secondary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  list-style: none;
}
.navbar .navbar-nav li {
  display: flex;
  gap: var(--navbar_gap);
  align-items: center;
}
.navbar .navbar-nav li:not(:last-child)::after {
  display: inline-block;
  width: 1px;
  height: 2rem;
  background-color: var(--color_border);
  content: "";
}
.navbar .navbar-nav a:hover, .navbar .navbar-nav a:focus-visible {
  text-decoration: underline;
}
@media only screen and (max-width: 1100px) {
  .navbar .navbar-nav {
    --navbar_gap: 1rem;
    font-size: var(--fs_m);
  }
}
@media only screen and (max-width: 900px) {
  .navbar .navbar-nav {
    display: none;
  }
}
.navbar .navbar-agency-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color_secondary);
  transition: color 0.2s;
}
.navbar .navbar-agency-link svg {
  width: 18px;
}
.navbar .navbar-agency-link:hover, .navbar .navbar-agency-link:focus-visible {
  color: var(--color_primary);
}
.navbar .navbar-end {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 1100px) {
  .navbar .navbar-end {
    gap: 20px;
  }
}
@media only screen and (max-width: 1600px) {
  .navbar .container {
    padding-inline: 4dvw;
    width: 100%;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 600px) {
  .navbar .container {
    padding-inline: 25px;
  }
}
@media only screen and (max-width: 600px) {
  .navbar {
    --navbar_inline_space: 8px;
  }
}

.navbar-menu {
  max-height: calc(100dvh - (var(--header_height) + var(--header_spacing) + var(--header_spacing)));
  overflow-x: scroll;
}
.navbar-menu #menu-search-form {
  margin-block: 3.75rem;
}
@media only screen and (max-width: 525px) {
  .navbar-menu #menu-search-form {
    margin-block: 2.5rem;
  }
}
.navbar-menu #menu-search-form .field-wrap button {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.navbar-menu #menu-search-form input {
  --input_height: 5.25rem;
  padding-inline-start: 3.5rem;
  font-size: var(--fs_xl);
  font-weight: bold;
}
@media only screen and (max-width: 525px) {
  .navbar-menu #menu-search-form input {
    font-size: var(--fs_l);
  }
}
.navbar-menu #menu-search-form input:focus-visible {
  border: 2px solid var(--color_secondary);
}
.navbar-menu #menu-search-form svg {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  width: 1.25rem;
  transform: translateY(-50%);
}
.navbar-menu .menu-nav {
  display: grid;
  grid-template-columns: 2fr minmax(390px, 1fr);
  align-items: start;
  gap: 3rem min(5.2cqi, 5.625rem);
  margin-block-end: 5rem;
}
@media only screen and (max-width: 1160px) {
  .navbar-menu .menu-nav {
    grid-template-columns: 2fr minmax(290px, 1fr);
  }
}
@media only screen and (max-width: 1000px) {
  .navbar-menu .menu-nav {
    grid-template-columns: 1fr;
    margin-block-end: 3rem;
  }
}
.navbar-menu .menu-accordions .accordion-wrap {
  display: grid;
  grid-template-rows: auto 0fr;
  transition: grid-template-rows 0.3s ease-in-out;
  border-image-source: url(/image/dotted-line-horizontal.png);
  border-image-slice: 0 0 6 0;
  border-image-width: 4px;
  border-image-repeat: repeat;
}
.navbar-menu .menu-accordions .accordion-wrap:first-child {
  border-image-slice: 6 0 6 0;
}
.navbar-menu .menu-accordions .accordion-wrap:has([aria-expanded=true]) {
  grid-template-rows: auto 1fr;
}
.navbar-menu .menu-accordions .accordion-wrap:has([aria-expanded=true]) .hide-active {
  display: none;
}
.navbar-menu .menu-accordions .accordion-wrap ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px 0;
  list-style: none;
  margin-block-start: -0.7rem;
  padding-block-start: 0.7rem;
}
@media only screen and (max-width: 700px) {
  .navbar-menu .menu-accordions .accordion-wrap ul {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.navbar-menu .menu-accordions .accordion-wrap a {
  position: relative;
  display: block;
  padding-block: 0.4rem 0.3rem;
  padding-inline: 15px 30px;
  border-radius: 8px;
  line-height: 1.5;
}
@media only screen and (max-width: 700px) {
  .navbar-menu .menu-accordions .accordion-wrap a {
    font-size: 16px;
  }
}
.navbar-menu .menu-accordions .accordion-wrap a:is(:hover, :focus-visible) {
  font-weight: bold;
  background-color: var(--color_light);
}
.navbar-menu .menu-accordions .accordion-wrap a:is(:hover, :focus-visible)::after {
  position: absolute;
  width: 12px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  content: url(/image/icons/arrow-right.svg);
}
.navbar-menu .menu-accordions .accordion-wrap [data-disclosed] {
  margin: 0;
  overflow: hidden;
}
.navbar-menu .menu-accordions button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-block: 1.375rem 1.6rem;
}
.navbar-menu .menu-accordions button svg {
  width: 14px;
}
@media only screen and (max-width: 1000px) {
  .navbar-menu .menu-accordions button {
    font-size: 36px;
  }
}
.navbar-menu .menu-accordions h2 {
  margin: 0;
}
.navbar-menu .menu-accordions .toggle-marker {
  display: grid;
  place-content: center;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  border-radius: 50%;
  transition: background-color var(--transition_speed) var(--transition_timing), color var(--transition_speed) var(--transition_timing);
}
.navbar-menu .menu-nav-aside {
  border: 1px solid var(--color_border);
  border-radius: 20px;
  overflow: hidden;
}
.navbar-menu .menu-nav-aside > div {
  padding-block: 1.875rem;
  padding-inline: 40px;
}
.navbar-menu .menu-nav-aside > div:hover, .navbar-menu .menu-nav-aside > div:focus {
  background-color: var(--color_light);
}
.navbar-menu .menu-nav-aside > div:hover h2, .navbar-menu .menu-nav-aside > div:focus h2 {
  text-decoration: underline;
}
.navbar-menu .menu-nav-aside > div h2 {
  margin-block-end: 0.25rem;
}
.navbar-menu .menu-nav-aside > div p {
  margin: 0;
  line-height: 1.5;
}
.navbar-menu .menu-nav-aside > div:not(:last-child) {
  border-bottom: 1px solid var(--color_border);
}
@media only screen and (max-width: 600px) {
  .navbar-menu .menu-nav-aside > div {
    padding-inline: 22px;
  }
  .navbar-menu .menu-nav-aside > div h2 {
    font-size: 20px;
  }
  .navbar-menu .menu-nav-aside > div p {
    font-size: 16px;
    line-height: 1.5;
  }
}
.navbar-menu .menu-nav-end {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block-end: 3.375rem;
}
.navbar-menu .menu-nav-end .start {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.navbar-menu .menu-nav-end .end {
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 1040px) {
  .navbar-menu .menu-nav-end .end {
    flex-wrap: wrap;
    width: 100%;
  }
  .navbar-menu .menu-nav-end .end .button {
    width: 100%;
  }
}
.navbar-menu .menu-nav-end .button-link {
  font-size: 1.375rem;
}
@media only screen and (max-width: 1040px) {
  .navbar-menu .menu-nav-end {
    flex-wrap: wrap;
    gap: 3rem;
  }
}
.navbar-menu .mobile-end-section {
  padding-block-start: var(--spacer_m);
  border-image-source: url(/image/dotted-line-horizontal.png);
  border-image-slice: 6 0 0 0;
  border-image-width: 4px;
  border-image-repeat: repeat;
}
.navbar-menu .mobile-end-section h2 {
  margin: 0;
}
.navbar-menu .mobile-end-section a:is(:hover, :focus-visible) {
  text-decoration: underline;
}
.navbar-menu .mobile-social-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color_primary);
  list-style: none;
}
.navbar-menu .mobile-social-wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: 0.2s;
}
.navbar-menu .mobile-social-wrap a:hover, .navbar-menu .mobile-social-wrap a:focus-visible {
  color: #FFF;
  background-color: var(--color_primary);
}
.navbar-menu .mobile-social-wrap svg {
  width: 34px;
}
.navbar-menu .mobile-only {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .navbar-menu .mobile-only {
    display: block;
  }
}
.page-footer .footer-section {
  margin-block-end: 5rem;
}
.page-footer .footer-section:first-of-type {
  padding-block-start: 5rem;
}
.page-footer .footer-section:last-of-type {
  padding-block-end: 5rem;
  margin-block-end: 0;
}
@media only screen and (max-width: 600px) {
  .page-footer .footer-section:last-of-type {
    padding-block-end: 3rem;
  }
}
.page-footer .footer-nav-start a:is(:hover, :focus) {
  text-decoration: underline;
}
.page-footer .mission-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.page-footer .mission-wrap ul, .page-footer .mission-wrap p {
  margin: 0;
}
.page-footer .mission-wrap p {
  max-width: 827px;
}
@media only screen and (max-width: 660px) {
  .page-footer .mission-wrap {
    display: grid;
    justify-items: center;
    text-align: center;
  }
}
.page-footer .social-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color_secondary);
  list-style: none;
}
.page-footer .social-wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: 0.2s;
}
.page-footer .social-wrap a:hover, .page-footer .social-wrap a:focus-visible {
  color: #FFF;
  background-color: var(--color_secondary);
}
.page-footer .social-wrap svg {
  width: 34px;
}
.page-footer .footer-sponsors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  align-items: center;
  gap: 4.18755rem;
  padding-block: 4.125rem;
}
.page-footer .footer-sponsors img {
  display: block;
  margin-inline: auto;
  max-height: 180px;
}
@media only screen and (max-width: 540px) {
  .page-footer .footer-sponsors {
    grid-template-columns: 1fr 1fr;
  }
  .page-footer .footer-sponsors img {
    max-height: 120px;
  }
}
.page-footer .footer-bottom {
  margin-block-end: 16px;
  padding-block: 2rem;
  background-color: var(--color_light);
}
.page-footer .footer-bottom .inner, .page-footer .footer-bottom .inner > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-footer .footer-bottom .inner p, .page-footer .footer-bottom .inner > div p {
  margin: 0;
}
.page-footer .footer-bottom .inner .by-form svg {
  width: 290px;
}
.page-footer .footer-bottom .inner > div {
  gap: 1rem;
}
@media only screen and (max-width: 860px) {
  .page-footer .footer-bottom .inner > div {
    justify-content: center;
    flex-wrap: wrap;
  }
  .page-footer .footer-bottom .inner > div :first-child {
    width: 100%;
  }
  .page-footer .footer-bottom .inner > div span:first-of-type {
    display: none;
  }
  .page-footer .footer-bottom .inner > div a {
    font-weight: bold;
  }
}
@media only screen and (max-width: 510px) {
  .page-footer .footer-bottom .inner > div {
    display: grid;
  }
  .page-footer .footer-bottom .inner > div span {
    display: none;
  }
}
@media only screen and (max-width: 1220px) {
  .page-footer .footer-bottom .inner {
    display: grid;
    justify-content: center;
    justify-items: center;
    gap: 2rem;
    text-align: center;
  }
  .page-footer .footer-bottom .inner > div {
    gap: 16px;
  }
}
@container pages-list (max-width: 540px) {
}
@container callout (max-width: 720px) {
}
@container callout (max-width: 500px) {
}
.faqs-wrapper .faq-article:has(button:hover), .faqs-wrapper .faq-article:focus-within:has(:focus-visible) {
  background-color: var(--color_light);
}
.faqs-wrapper .faq-article:has(button:hover) .disclosure-heading, .faqs-wrapper .faq-article:focus-within:has(:focus-visible) .disclosure-heading {
  text-decoration: underline;
  text-decoration-color: var(--color_primary);
  text-underline-offset: var(--underline_offset);
}
.faqs-wrapper .faq-article:has([aria-expanded=true]) {
  grid-template-rows: auto 1fr;
}
.faqs-wrapper .faq-article:has([aria-expanded=true]) .toggle-marker {
  background-color: var(--color_dark);
}
.faqs-wrapper .faq-article:has([aria-expanded=true]) .toggle-marker svg .hide-active {
  display: none;
}
.faqs-wrapper .faq-article:has([aria-expanded=true]) .toggle-marker:hover, .faqs-wrapper .faq-article:has([aria-expanded=true]) .toggle-marker:focus-visible {
  background-color: var(--color_dark);
}
.faqs-wrapper .toggle-marker:focus-visible {
  background-color: var(--color_dark);
}
@container faqs (max-width: 540px) {
}
.resources-list .resource-article:has(a:hover) svg {
  color: var(--color_primary);
}
@container resources-list (max-width: 540px) {
}
@container event-item (max-width: 680px) {
}
@container event-item (max-width: 540px) {
}
.gallery-wrapper .gallery-controls .circle-button:focus-visible {
  scale: 1.1;
}
@container gallery (max-width: 540px) {
}
.text-plugin a:not(.button):focus-visible, .plugin-content > p a:not(.button):focus-visible {
  text-decoration: none;
}

.lucy-box-inner:has(.plugin .empty) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  justify-content: center;
}
.lucy-box-inner:has(.plugin .empty) .plugin {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 1rem !important;
}
.lucy-box-inner:has(.plugin .empty) .plugin img {
  display: inline-block;
  width: auto !important;
  max-height: 22px;
}
.lucy-box-inner:has(.plugin .empty) .empty {
  display: grid;
  place-items: center;
}
.lucy-box-inner:has(.plugin .empty) .empty br {
  display: none;
}

/* --- General Font Styles (limited to #lucy-content) --- */
@layer lucy-core {
  a {
    color: inherit;
    text-decoration: none;
  }
  @media (pointer: fine) {
    a.back-to span:focus-visible {
      background-size: 0 1px, 100% 1px;
    }
  }
  a.back-to:focus-visible span {
    background-size: 0 1px, 100% 1px;
  }
  :where(#lucy-page, #lucy-content, .lucy-content) h1, :where(#lucy-page, #lucy-content, .lucy-content) h2, :where(#lucy-page, #lucy-content, .lucy-content) h3, :where(#lucy-page, #lucy-content, .lucy-content) h4, :where(#lucy-page, #lucy-content, .lucy-content) .display-6xl, :where(#lucy-page, #lucy-content, .lucy-content) .display-5xl, :where(#lucy-page, #lucy-content, .lucy-content) .display-4xl, :where(#lucy-page, #lucy-content, .lucy-content) .display-3xl, :where(#lucy-page, #lucy-content, .lucy-content) .display-2xl {
    margin-block-end: var(--spacer_s);
    font-family: var(--font_secondary);
    text-transform: uppercase;
    font-weight: normal;
  }
  :where(#lucy-page, #lucy-content, .lucy-content) h1, :where(#lucy-page, #lucy-content, .lucy-content) .display-6xl {
    font-size: var(--fs_6xl);
    line-height: 1.04;
    letter-spacing: -0.0625rem;
  }
  @media only screen and (max-width: 910px) {
    :where(#lucy-page, #lucy-content, .lucy-content) h1, :where(#lucy-page, #lucy-content, .lucy-content) .display-6xl {
      font-size: 3.925rem;
      line-height: 1.04;
    }
  }
  :where(#lucy-page, #lucy-content, .lucy-content) .display-5xl {
    font-size: var(--fs_5xl);
    line-height: 1.04;
    letter-spacing: -0.0625rem;
  }
  :where(#lucy-page, #lucy-content, .lucy-content) h2, :where(#lucy-page, #lucy-content, .lucy-content) .display-4xl {
    font-size: var(--fs_4xl);
    line-height: 1.08;
  }
  @media only screen and (max-width: 910px) {
    :where(#lucy-page, #lucy-content, .lucy-content) h2, :where(#lucy-page, #lucy-content, .lucy-content) .display-4xl {
      font-size: max(28px, 2.2rem);
      line-height: 1.25;
    }
  }
  :where(#lucy-page, #lucy-content, .lucy-content) h3, :where(#lucy-page, #lucy-content, .lucy-content) .display-3xl {
    font-size: var(--fs_3xl);
    line-height: 1.21;
  }
  :where(#lucy-page, #lucy-content, .lucy-content) h4, :where(#lucy-page, #lucy-content, .lucy-content) .display-2xl {
    font-size: var(--fs_2xl);
    line-height: 1.21;
    letter-spacing: 0.3px;
  }
  :where(#lucy-page, #lucy-content, .lucy-content) h5, :where(#lucy-page, #lucy-content, .lucy-content) .display-xl {
    font-size: var(--fs_xl);
    line-height: 1.27;
    font-family: var(--font_primary);
    font-weight: bold;
    text-transform: none;
  }
  :where(#lucy-page, #lucy-content, .lucy-content) .display-l {
    font-size: var(--fs_l);
    font-family: var(--font_primary);
    font-weight: bold;
    text-transform: none;
    line-height: 1.33;
  }
  :where(#lucy-page, #lucy-content, .lucy-content) .display-m {
    font-family: var(--font_primary);
    font-size: var(--fs_m);
    font-weight: normal;
    line-height: 1.875;
    text-transform: none;
  }
  :where(#lucy-page, #lucy-content, .lucy-content) .display-s {
    font-size: var(--fs_s);
    font-family: var(--font_primary);
    text-transform: none;
    line-height: 1.375;
  }
  :where(#lucy-page, #lucy-content, .lucy-content) .display-xs {
    font-size: var(--fs_xs);
    font-family: var(--font_primary);
    text-transform: none;
    line-height: 1.375;
  }
  :where(#lucy-page, #lucy-content, .lucy-content) p, :where(#lucy-page, #lucy-content, .lucy-content) blockquote, :where(#lucy-page, #lucy-content, .lucy-content) ul, :where(#lucy-page, #lucy-content, .lucy-content) ol, :where(#lucy-page, #lucy-content, .lucy-content) .page-image {
    margin-bottom: var(--spacer_s);
  }
  :where(#lucy-page, #lucy-content, .lucy-content) .page-image {
    border-radius: 20px;
  }
  :where(#lucy-page, #lucy-content, .lucy-content) p, :where(#lucy-page, #lucy-content, .lucy-content) ul, :where(#lucy-page, #lucy-content, .lucy-content) ol, :where(#lucy-page, #lucy-content, .lucy-content) dl {
    font-size: var(--fs_m);
    font-weight: normal;
    line-height: 1.875;
  }
  :where(#lucy-page, #lucy-content, .lucy-content) blockquote {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    font-size: var(--fs_l);
    font-weight: bold;
    line-height: 1.66;
  }
  :where(#lucy-page, #lucy-content, .lucy-content) blockquote::before {
    position: relative;
    top: -0.75rem;
    font-size: 2.625rem;
    color: #A2001C;
    content: "“";
  }
  :where(#lucy-page, #lucy-content, .lucy-content) .intro {
    font-family: var(--font_primary);
    font-size: var(--fs_2xl);
    font-weight: normal;
    line-height: 1.66;
  }
  :where(#lucy-page, #lucy-content, .lucy-content) .body-small {
    font-size: var(--fs_s);
    font-weight: normal;
    letter-spacing: 0.009rem;
    line-height: 1.857;
  }
  :where(#lucy-page, #lucy-content, .lucy-content) .sub-header {
    font-family: var(--font_secondary);
    font-size: var(--fs_l);
    font-weight: normal;
    line-height: 1.33;
    letter-spacing: 0.125rem;
    text-transform: uppercase;
  }
  :where(#lucy-page, #lucy-content, .lucy-content) .caption, :where(#lucy-page, #lucy-content, .lucy-content) .photo-caption {
    font-size: var(--fs_xs);
    font-weight: bold;
    line-height: 1.375;
  }
}
/* --- Buttons and Links --- */
@layer lucy-core {
  :where(button) {
    font: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    color: inherit;
    background-color: transparent;
    cursor: pointer;
  }
  .button {
    --button_text_color: #FFF;
    --button_inline_padding: 2.5rem;
    --button_gap: 8px;
    --button_icon_size: .75rem;
    --button_indent: calc((var(--button_icon_size) * -.5) - 1px);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: var(--button_gap);
    height: var(--button_height);
    padding-inline: var(--button_inline_padding) calc(var(--button_inline_padding) - var(--button_gap) - var(--button_icon_size));
    color: var(--button_text_color);
    font-family: var(--font_primary);
    font-size: var(--fs_s);
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
    text-indent: 0rem;
    text-align: center;
    border-radius: 0.625rem;
    background-color: var(--color_primary);
    transition: background-color 0.3s ease, padding-inline 0.15s ease, text-indent 0.15s ease;
    cursor: pointer;
  }
  .button::after {
    content: url(/image/icons/button-arrow-white.svg);
    flex-shrink: 0;
    display: block;
    width: var(--button_icon_size);
    opacity: 0;
    transform: translateX(var(--button_indent));
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  }
  .button:has(svg) {
    padding-inline: var(--button_inline_padding);
    text-indent: 0 !important;
  }
  .button:has(svg)::after {
    content: none !important;
  }
  .button:has(svg):hover, .button:has(svg):focus-visible {
    text-indent: 0 !important;
  }
  .button:has(svg) svg {
    width: 1em;
    color: #FFF;
  }
  .button.cta {
    --button_icon_size: .9rem;
    height: var(--button_cta_height);
    font-family: var(--font_secondary);
    font-size: max(18px, var(--fs_l));
    text-transform: uppercase;
    letter-spacing: 3px;
  }
  .button:not(:where(.disabled, [disabled], [aria-disabled=true])):hover, .button:not(:where(.disabled, [disabled], [aria-disabled=true])):focus-visible, .block-link:has(.button:not(:where(.disabled, [disabled], [aria-disabled=true]))):is(:hover, :focus-visible) .button:not(:where(.disabled, [disabled], [aria-disabled=true])) {
    background-color: var(--color_button_hover);
  }
  .button:not(:where(.disabled, [disabled], [aria-disabled=true])):hover:not(:where(:has(svg))), .button:not(:where(.disabled, [disabled], [aria-disabled=true])):focus-visible:not(:where(:has(svg))), .block-link:has(.button:not(:where(.disabled, [disabled], [aria-disabled=true]))):is(:hover, :focus-visible) .button:not(:where(.disabled, [disabled], [aria-disabled=true])):not(:where(:has(svg))) {
    padding-inline: var(--button_inline_padding) calc(var(--button_inline_padding) - var(--button_gap) - var(--button_icon_size) - var(--button_indent));
    text-indent: var(--button_indent);
  }
  .button:not(:where(.disabled, [disabled], [aria-disabled=true])):hover.outline-white, .button:not(:where(.disabled, [disabled], [aria-disabled=true])):focus-visible.outline-white, .block-link:has(.button:not(:where(.disabled, [disabled], [aria-disabled=true]))):is(:hover, :focus-visible) .button:not(:where(.disabled, [disabled], [aria-disabled=true])).outline-white {
    --button_text_color: var(--color_text);
  }
  .button:not(:where(.disabled, [disabled], [aria-disabled=true])):hover.outline-white::after, .button:not(:where(.disabled, [disabled], [aria-disabled=true])):focus-visible.outline-white::after, .block-link:has(.button:not(:where(.disabled, [disabled], [aria-disabled=true]))):is(:hover, :focus-visible) .button:not(:where(.disabled, [disabled], [aria-disabled=true])).outline-white::after {
    filter: invert(1);
  }
  .button:not(:where(.disabled, [disabled], [aria-disabled=true])):hover.heart-button svg, .button:not(:where(.disabled, [disabled], [aria-disabled=true])):focus-visible.heart-button svg, .block-link:has(.button:not(:where(.disabled, [disabled], [aria-disabled=true]))):is(:hover, :focus-visible) .button:not(:where(.disabled, [disabled], [aria-disabled=true])).heart-button svg {
    color: var(--color_primary);
  }
  .button:not(:where(.disabled, [disabled], [aria-disabled=true])):hover::after, .button:not(:where(.disabled, [disabled], [aria-disabled=true])):focus-visible::after, .block-link:has(.button:not(:where(.disabled, [disabled], [aria-disabled=true]))):is(:hover, :focus-visible) .button:not(:where(.disabled, [disabled], [aria-disabled=true]))::after {
    transform: translateX(0);
    opacity: 1;
  }
  :is(.button-link, .circle-button) {
    --button_img: url(/image/icons/button-arrow-white.svg);
    --button_size: 45px;
    --button_bg: var(--color_primary);
    cursor: pointer;
  }
  :is(.button-link, .circle-button):hover:not(.disabled, [disabled], [aria-disabled=true])::before, :is(.button-link, .circle-button):focus-visible:not(.disabled, [disabled], [aria-disabled=true])::before, .block-link:has(:is(.button-link, .circle-button)):is(:hover, :focus-visible) :is(.button-link, .circle-button):not(.disabled, [disabled], [aria-disabled=true])::before {
    background-color: var(--color_button_hover);
  }
  :is(.button-link, .circle-button).disabled, :is(.button-link, .circle-button)[disabled], :is(.button-link, .circle-button)[aria-disabled=true] {
    opacity: 0.5;
    cursor: not-allowed;
  }
  :is(.button-link, .circle-button).dark {
    --color_button_hover: #1E1A1A;
    --button_bg: var(--color_dark);
  }
  :is(.button-link, .circle-button).white {
    --color_button_hover: var(--color_light);
    --button_bg: #FFF;
    color: var(--color_text);
  }
  :is(.button-link, .circle-button).white::after {
    filter: invert(1);
  }
  @media only screen and (max-width: 525px) {
    :is(.button-link, .circle-button) {
      --button_size: 40px;
    }
  }
  .button-link::before, .circle-button::before {
    content: "";
    display: block;
    width: var(--button_size);
    height: var(--button_size);
    padding: 0.85rem;
    line-height: 0;
    transition: 0.3s ease;
    border-radius: 50%;
    background-color: var(--button_bg);
    background-image: var(--button_img);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 33%;
  }
  .button-link {
    --underline_color: var(--color_primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs_m);
    font-weight: bold;
  }
  .button-link:is(:hover, :focus-visible), .block-link:has(.button-link):is(:hover, :focus-visible) .button-link {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--underline_color);
    text-underline-offset: var(--underline_offset);
  }
  .circle-button {
    display: inline-block;
  }
  .news-button {
    --button_img: url(/image/icons/news-white.svg);
  }
  .phone-button {
    --button_img: url(/image/icons/phone-white.svg);
  }
}
/* --- Form + Label Styles --- */
@layer lucy-forms {
  #lucy-page input[type=text] {
    width: 100%;
    font-size: 16px;
    font-family: var(--font_primary);
    border: 1px solid var(--border_color);
    background-color: #FFF;
    color: var(--color_text);
    border-radius: var(--input_border_radius);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
  }
  #lucy-page input[type=text]:not(textarea) {
    height: var(--input_height);
    padding: 0 1rem;
  }
  #lucy-page input[type=text][required]:not(:placeholder-shown):not(:focus):invalid, #lucy-page input[type=email][required]:not(:placeholder-shown):not(:focus):invalid, #lucy-page input[type=tel][required]:not(:placeholder-shown):not(:focus):invalid, #lucy-page input[type=password][required]:not(:placeholder-shown):not(:focus):invalid, #lucy-page input[type=number][required]:not(:placeholder-shown):not(:focus):invalid, #lucy-page input[type=date][required]:not(:placeholder-shown):not(:focus):invalid, #lucy-page input[type=datetime-local][required]:not(:placeholder-shown):not(:focus):invalid, #lucy-page select[required]:not(:placeholder-shown):not(:focus):invalid, #lucy-page textarea[required]:not(:placeholder-shown):not(:focus):invalid, #lucy-content input[type=text][required]:not(:placeholder-shown):not(:focus):invalid, #lucy-content input[type=email][required]:not(:placeholder-shown):not(:focus):invalid, #lucy-content input[type=tel][required]:not(:placeholder-shown):not(:focus):invalid, #lucy-content input[type=password][required]:not(:placeholder-shown):not(:focus):invalid, #lucy-content input[type=number][required]:not(:placeholder-shown):not(:focus):invalid, #lucy-content input[type=date][required]:not(:placeholder-shown):not(:focus):invalid, #lucy-content input[type=datetime-local][required]:not(:placeholder-shown):not(:focus):invalid, #lucy-content select[required]:not(:placeholder-shown):not(:focus):invalid, #lucy-content textarea[required]:not(:placeholder-shown):not(:focus):invalid, .lucy-content input[type=text][required]:not(:placeholder-shown):not(:focus):invalid, .lucy-content input[type=email][required]:not(:placeholder-shown):not(:focus):invalid, .lucy-content input[type=tel][required]:not(:placeholder-shown):not(:focus):invalid, .lucy-content input[type=password][required]:not(:placeholder-shown):not(:focus):invalid, .lucy-content input[type=number][required]:not(:placeholder-shown):not(:focus):invalid, .lucy-content input[type=date][required]:not(:placeholder-shown):not(:focus):invalid, .lucy-content input[type=datetime-local][required]:not(:placeholder-shown):not(:focus):invalid, .lucy-content select[required]:not(:placeholder-shown):not(:focus):invalid, .lucy-content textarea[required]:not(:placeholder-shown):not(:focus):invalid {
    color: var(--color_error);
    border-color: currentcolor;
  }
  #lucy-page input[type=text][required]:not(:placeholder-shown):not(:focus):invalid + label, #lucy-page input[type=email][required]:not(:placeholder-shown):not(:focus):invalid + label, #lucy-page input[type=tel][required]:not(:placeholder-shown):not(:focus):invalid + label, #lucy-page input[type=password][required]:not(:placeholder-shown):not(:focus):invalid + label, #lucy-page input[type=number][required]:not(:placeholder-shown):not(:focus):invalid + label, #lucy-page input[type=date][required]:not(:placeholder-shown):not(:focus):invalid + label, #lucy-page input[type=datetime-local][required]:not(:placeholder-shown):not(:focus):invalid + label, #lucy-page select[required]:not(:placeholder-shown):not(:focus):invalid + label, #lucy-page textarea[required]:not(:placeholder-shown):not(:focus):invalid + label, #lucy-content input[type=text][required]:not(:placeholder-shown):not(:focus):invalid + label, #lucy-content input[type=email][required]:not(:placeholder-shown):not(:focus):invalid + label, #lucy-content input[type=tel][required]:not(:placeholder-shown):not(:focus):invalid + label, #lucy-content input[type=password][required]:not(:placeholder-shown):not(:focus):invalid + label, #lucy-content input[type=number][required]:not(:placeholder-shown):not(:focus):invalid + label, #lucy-content input[type=date][required]:not(:placeholder-shown):not(:focus):invalid + label, #lucy-content input[type=datetime-local][required]:not(:placeholder-shown):not(:focus):invalid + label, #lucy-content select[required]:not(:placeholder-shown):not(:focus):invalid + label, #lucy-content textarea[required]:not(:placeholder-shown):not(:focus):invalid + label, .lucy-content input[type=text][required]:not(:placeholder-shown):not(:focus):invalid + label, .lucy-content input[type=email][required]:not(:placeholder-shown):not(:focus):invalid + label, .lucy-content input[type=tel][required]:not(:placeholder-shown):not(:focus):invalid + label, .lucy-content input[type=password][required]:not(:placeholder-shown):not(:focus):invalid + label, .lucy-content input[type=number][required]:not(:placeholder-shown):not(:focus):invalid + label, .lucy-content input[type=date][required]:not(:placeholder-shown):not(:focus):invalid + label, .lucy-content input[type=datetime-local][required]:not(:placeholder-shown):not(:focus):invalid + label, .lucy-content select[required]:not(:placeholder-shown):not(:focus):invalid + label, .lucy-content textarea[required]:not(:placeholder-shown):not(:focus):invalid + label {
    color: var(--color_error);
  }
  #lucy-page input[type=text][required]:not(:placeholder-shown):not(:focus):invalid + label:after, #lucy-page input[type=email][required]:not(:placeholder-shown):not(:focus):invalid + label:after, #lucy-page input[type=tel][required]:not(:placeholder-shown):not(:focus):invalid + label:after, #lucy-page input[type=password][required]:not(:placeholder-shown):not(:focus):invalid + label:after, #lucy-page input[type=number][required]:not(:placeholder-shown):not(:focus):invalid + label:after, #lucy-page input[type=date][required]:not(:placeholder-shown):not(:focus):invalid + label:after, #lucy-page input[type=datetime-local][required]:not(:placeholder-shown):not(:focus):invalid + label:after, #lucy-page select[required]:not(:placeholder-shown):not(:focus):invalid + label:after, #lucy-page textarea[required]:not(:placeholder-shown):not(:focus):invalid + label:after, #lucy-content input[type=text][required]:not(:placeholder-shown):not(:focus):invalid + label:after, #lucy-content input[type=email][required]:not(:placeholder-shown):not(:focus):invalid + label:after, #lucy-content input[type=tel][required]:not(:placeholder-shown):not(:focus):invalid + label:after, #lucy-content input[type=password][required]:not(:placeholder-shown):not(:focus):invalid + label:after, #lucy-content input[type=number][required]:not(:placeholder-shown):not(:focus):invalid + label:after, #lucy-content input[type=date][required]:not(:placeholder-shown):not(:focus):invalid + label:after, #lucy-content input[type=datetime-local][required]:not(:placeholder-shown):not(:focus):invalid + label:after, #lucy-content select[required]:not(:placeholder-shown):not(:focus):invalid + label:after, #lucy-content textarea[required]:not(:placeholder-shown):not(:focus):invalid + label:after, .lucy-content input[type=text][required]:not(:placeholder-shown):not(:focus):invalid + label:after, .lucy-content input[type=email][required]:not(:placeholder-shown):not(:focus):invalid + label:after, .lucy-content input[type=tel][required]:not(:placeholder-shown):not(:focus):invalid + label:after, .lucy-content input[type=password][required]:not(:placeholder-shown):not(:focus):invalid + label:after, .lucy-content input[type=number][required]:not(:placeholder-shown):not(:focus):invalid + label:after, .lucy-content input[type=date][required]:not(:placeholder-shown):not(:focus):invalid + label:after, .lucy-content input[type=datetime-local][required]:not(:placeholder-shown):not(:focus):invalid + label:after, .lucy-content select[required]:not(:placeholder-shown):not(:focus):invalid + label:after, .lucy-content textarea[required]:not(:placeholder-shown):not(:focus):invalid + label:after {
    font-size: clamp(14px, 0.778rem, 0.778rem);
    font-weight: normal;
    letter-spacing: 0.009rem;
    line-height: 1.571;
    content: attr(data-error);
  }
  #lucy-page input[type=text]:focus {
    border-color: var(--color_secondary);
    outline: none;
    -moz-outline: none;
    -webkit-outline: none;
  }
  #lucy-page ::-ms-input-placeholder, #lucy-content ::-ms-input-placeholder {
    color: var(--color_text);
  }
  @container lucy-form (min-width: 1000px) {
  }
  @container lucy-form (max-width: 1000px) {
  }
  @container lucy-form (min-width: 700px) {
  }
}
.field-wrap {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.33rem;
}
.field-wrap > * {
  margin-bottom: 0;
}

/* --- Form Grid Display --- */
@container form-grid (max-width: 600px) {
}

#lucy-content:has(.home-main-ctas) {
  padding-block-end: 0;
}
.featured-event-wrap .inner:has(img) {
  grid-template-columns: 1fr 1fr;
}
@container news-filters (width < 574px) {
}
.news-article:has(.news-image) {
  display: grid;
  grid-template-columns: 1fr 23.9375rem;
  gap: 1rem 4.625rem;
}

:is(.news-article, .news-page-header) .news-meta .separator {
  margin-inline: 0.5rem;
}

.news-grid:has(~ *) {
  margin-block-end: 3.125rem;
}
.share-aside-wrap a:focus-visible {
  color: #FFF;
  background-color: var(--color_dark);
}

.donate-page {
  position: relative;
  z-index: 1;
  margin-block-start: -12rem;
  top: -300px;
  padding-block-end: var(--spacer_xl);
  background-image: linear-gradient(to bottom, rgba(60, 54, 54, 0) 0%, #3C3636 10rem);
}
.donate-page .donate-form-wrap {
  width: 100%;
  min-height: 400px;
  padding: 2rem;
  text-align: center;
  background-color: #FFF;
  border-radius: 20px;
}
.location-article .inner:not(:has(.location-img)) {
  grid-template-columns: 1fr;
}
.staff-article .inner:has(.staff-img) {
  grid-template-columns: 170px 1fr auto;
  gap: 40px;
}
.story-article .inner:has(.story-img) {
  grid-template-columns: 18.125rem 1fr;
}
@container story-article (max-width: 768px) {
}
@container story-article (max-width: 520px) {
}
@media only screen and (max-width: 1000px) {
  .sidebar-callout .callout-inner:has(+ .callout-img)::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 200px);
  }
}
.map-section .map-sidebar .map-location-listing:has(.active) {
  border-inline-start-color: var(--category_color);
}
.map-section .map .location-icon-list div:has(dd:empty) {
  display: none;
}
.event-detail-header a:focus-visible {
  text-decoration: underline;
}
.event-detail-header:has(> :nth-child(2)) {
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 700px) {
  .event-detail-header:has(> :nth-child(2)) {
    grid-template-columns: 1fr;
  }
}
.sponsorship-cards-dialog:has(.sponsor-card.in-view:first-of-type) .circle-button[data-prev] {
  display: none;
}
.sponsorship-cards-dialog:has(.sponsor-card.in-view:last-of-type) .circle-button[data-next] {
  display: none;
}
#search-results .result-container a:focus-visible {
  text-decoration: none;
}
#search-results .result-container p.result-title a:any-link {
  font-weight: 700;
}

html {
  line-height: 1.875;
  font-size: var(--base_font_size);
  font-family: var(--font_primary);
  overflow-x: hidden;
}
.page-card .page-card-heading:not(:has(+ p)) {
  margin-block-end: 0;
}
@media only screen and (max-width: 1080px) {
  .page-card:has(img) {
    grid-template-columns: clamp(40px, 18dvw, 180px) 1fr;
  }
}