.site-support-trigger {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.site-support-trigger:hover,
.site-support-trigger[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.18);
}

.site-support-trigger:focus-visible {
  outline: 3px solid #1479b8;
  outline-offset: 3px;
}

.giving-modal {
  width: min(calc(100% - 32px), 560px);
  max-width: 560px;
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #24242a;
}

.giving-modal::backdrop {
  background: rgba(21, 12, 31, 0.68);
}

.giving-modal__surface {
  overflow: hidden;
  border: 1px solid #d8d8d2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.giving-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: #2e1a47;
  color: #fff;
}

.giving-modal__header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.15;
}

.giving-modal__close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font: 2rem/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.giving-modal__close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.giving-modal__close:focus-visible,
.giving-modal__continue:focus-visible {
  outline: 3px solid #1479b8;
  outline-offset: 3px;
}

.giving-modal__body {
  display: grid;
  gap: 20px;
  padding: 24px 20px;
}

.giving-modal__body p {
  margin: 0;
  color: #4e4e55;
  font-size: 1rem;
  line-height: 1.6;
}

.giving-modal__continue {
  justify-self: start;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 6px;
  background: #bd4e06;
  color: #fff;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.giving-modal__continue:hover {
  background: #9e3f04;
}

@media (min-width: 700px) {
  .site-support-trigger {
    margin-right: 4px;
  }
}

@media (max-width: 699px) {
  .site-support-trigger {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    margin-bottom: 8px;
    padding-inline: 12px;
  }
}

@media (max-width: 420px) {
  .giving-modal__header {
    padding: 16px;
  }

  .giving-modal__header h2 {
    font-size: 1.3rem;
  }

  .giving-modal__body {
    padding: 20px 16px;
  }

  .giving-modal__continue {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .giving-modal {
    scroll-behavior: auto;
  }
}
