:root {
  --flyer-gold: #f0c040;
  --flyer-orange: #e89f2f;
  --flyer-red: #e01020;
  --flyer-deep-red: #8f101f;
  --flyer-teal: #006090;
  --flyer-cream: #fff8e8;
  --paper-rip-width: clamp(220px, 24vw, 360px);
  --home-left-max: 1080px;
  --home-right-gap: clamp(12px, 1.1vw, 20px);
  --home-right-rail-width: clamp(210px, calc(var(--paper-rip-width) - 28px), 320px);
  --home-mission-width: clamp(250px, 22vw, 340px);
  --home-mission-gap: clamp(14px, 1.4vw, 24px);
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url("/media/site_background.jpg") center center / cover no-repeat fixed;
  color: #fff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: var(--paper-rip-width);
  height: 100vh;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.2) 0 20%, transparent 42%),
    radial-gradient(circle at 70% 74%, rgba(255, 255, 255, 0.16) 0 16%, transparent 36%),
    linear-gradient(180deg, #f8bd4b 0%, #eea63c 52%, #df6f2f 100%);
  box-shadow: inset 8px 0 18px rgba(115, 52, 22, 0.14);
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  right: var(--paper-rip-width);
  width: 78px;
  height: 100vh;
  background:
    linear-gradient(90deg, rgba(248, 189, 75, 0) 0%, rgba(248, 189, 75, 0.56) 62%, rgba(248, 189, 75, 0.84) 100%),
    linear-gradient(180deg, #f8bd4b 0%, #eea63c 52%, #df6f2f 100%);
  clip-path: polygon(
    100% 0%,
    100% 100%,
    58% 100%,
    71% 97%,
    49% 93%,
    74% 88%,
    46% 83%,
    68% 77%,
    44% 71%,
    73% 65%,
    47% 59%,
    75% 52%,
    42% 46%,
    70% 40%,
    45% 34%,
    72% 28%,
    48% 22%,
    70% 16%,
    52% 10%,
    66% 4%,
    57% 0%
  );
  filter: drop-shadow(-1px 0 0 rgba(105, 58, 28, 0.12));
  z-index: 0;
  pointer-events: none;
}

.navbar,
.page,
.site-footnote,
.weather-rotator-widget {
  position: relative;
  z-index: 1;
}

.flyer-banner {
  width: 100%;
  background: linear-gradient(176deg, #ffd972 0%, #f7c24b 58%, #f2af2e 100%);
  border-radius: 16px;
  border: 2px solid rgba(143, 16, 31, 0.3);
  padding: 16px 18px 18px;
  margin: 0 0 20px;
  box-shadow: 0 12px 24px rgba(70, 20, 10, 0.25);
  position: relative;
  overflow: hidden;
}

.flyer-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  width: 46%;
  height: 44px;
  background: var(--flyer-red);
  transform: skewX(-22deg);
  transform-origin: right top;
  opacity: 0.96;
}

.flyer-kicker {
  margin: 0 0 10px;
  color: var(--flyer-deep-red);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

.flyer-stem {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.stem-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 100px;
  border-radius: 10px;
  border: 3px solid #111;
  box-shadow: 5px 5px 0 #111;
  color: #fff;
  font-size: 4.3rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.35);
}

.stem-s { background: #f24822; transform: rotate(-8deg); }
.stem-t { background: #89c83f; transform: rotate(3deg); }
.stem-e { background: #1f7fbe; transform: rotate(-1deg); }
.stem-m { background: #f4bc2e; transform: rotate(-7deg); }

.stem-day {
  margin-left: 6px;
  margin-bottom: 8px;
  color: var(--flyer-deep-red);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1;
}

.flyer-conference {
  margin: 6px 0 0;
  text-transform: uppercase;
  color: #fffaf0;
  letter-spacing: 0.08em;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  text-shadow:
    -2px -2px 0 var(--flyer-deep-red),
    2px -2px 0 var(--flyer-deep-red),
    -2px 2px 0 var(--flyer-deep-red),
    2px 2px 0 var(--flyer-deep-red);
}

.weather-rotator-widget {
  margin-left: auto;
  width: min(520px, 36vw);
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(8, 25, 43, 0.86);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.26);
  z-index: 2;
  backdrop-filter: blur(2px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.weather-widget-row {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.weather-line {
  flex: 1;
  min-width: 0;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #eaf5ff;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.weather-station-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-left: 5px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  color: #d9ecff;
  font-size: 0.78rem;
}

.weather-station-label {
  font-weight: 700;
}

.weather-station-select {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
}

.weather-station-select:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 1px;
}

.weather-radio-toggle {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(35, 132, 57, 0.35);
  color: #f4fbff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  cursor: pointer;
}

.weather-radio-toggle.muted {
  background: rgba(117, 131, 145, 0.35);
}

.weather-radio-audio {
  display: none;
}

.weather-radio-toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 1px;
}

.top-instagram-link {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #fd1d1d 0%, #f56040 35%, #f77737 55%, #fcaf45 75%, #833ab4 100%);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
  z-index: 952;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.2s ease;
}

.top-instagram-link.is-positioned {
  opacity: 1;
  pointer-events: auto;
}

.top-instagram-link:hover {
  transform: translateX(-50%) translateY(-1px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.33);
}

.top-instagram-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.session-timeout-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(7, 18, 31, 0.62);
  z-index: 1400;
  padding: 20px;
}

.session-timeout-modal.is-visible {
  display: flex;
}

.session-timeout-card {
  width: min(480px, calc(100vw - 30px));
  background: #fff8ed;
  color: #3a2212;
  border-radius: 14px;
  border: 2px solid rgba(143, 16, 31, 0.35);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
  padding: 18px 20px;
  text-align: center;
}

.session-timeout-card h3 {
  margin: 0 0 8px;
  color: #7f0f1f;
}

.session-timeout-card p {
  margin: 0 0 16px;
  color: #513120;
}

#session-timeout-countdown {
  font-weight: 900;
  color: #a10f1f;
  font-size: 1.2rem;
}

#session-timeout-stay {
  margin-top: 0;
}

.weather-rotator-widget.weather-severe {
  background: rgba(130, 8, 8, 0.9);
  border-color: rgba(255, 170, 170, 0.55);
  box-shadow: 0 8px 22px rgba(120, 0, 0, 0.45);
}

.navbar,
.site-header {
  padding-right: min(650px, 42vw);
}

@media (max-width: 1200px) {
  :root {
    --paper-rip-width: clamp(150px, 28vw, 220px);
  }

  .weather-rotator-widget {
    width: min(420px, 52vw);
    padding: 7px 11px;
  }

  .weather-line {
    font-size: 0.78rem;
  }

  .navbar,
  .site-header {
    padding-right: min(470px, 56vw);
  }
}

@media (max-width: 900px) {
  .weather-rotator-widget {
    width: 100%;
    margin-left: 0;
    margin-top: 6px;
    border-radius: 12px;
    white-space: normal;
  }

  .weather-widget-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .weather-line {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .weather-station-inline {
    border-left: 0;
    padding-left: 0;
  }

  .navbar,
  .site-header {
    padding-right: 12px;
  }
}

.site-footnote {
  position: fixed;
  right: 10px;
  bottom: 8px;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  pointer-events: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

/* ── Slot status messages ─────────────────────────────────────── */
.slot-status-msg {
  margin: 8px 0 0;
  font-size: 0.92rem;
  min-height: 1.2em;
}
.slot-status-msg.ok    { color: #1a7a3e; font-weight: 600; }
.slot-status-msg.error { color: #c0392b; font-weight: 600; }

.session-note {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: #3a4f63;
  line-height: 1.35;
}

.directions-page {
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
}

.directions-backdrop {
  position: fixed;
  inset: 68px 0 0 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
}

.directions-backdrop svg {
  width: 100%;
  height: 100%;
  display: block;
}

.directions-backdrop .map-roads {
  fill: none;
  stroke: rgba(210, 226, 239, 0.55);
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 10 16;
  filter: url(#mapRoadGlow);
}

.directions-backdrop .route-glow {
  fill: none;
  stroke: rgba(255, 245, 200, 0.95);
  stroke-width: 32;
  filter: url(#routeGlow);
}

.directions-backdrop .route-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.directions-backdrop .route-start {
  fill: rgba(28, 124, 138, 0.9);
}

.directions-backdrop .route-end {
  fill: rgba(224, 16, 32, 0.9);
}

.secondary-page-shell {
  width: min(
    980px,
    calc(100vw - var(--paper-rip-width) - var(--home-right-rail-width) - (var(--home-right-gap) * 2) - 56px)
  );
  display: block;
  align-items: start;
  margin-right: auto;
}

.secondary-page-main {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.secondary-page-quick {
  position: fixed;
  top: calc(18px + 1in);
  right: var(--home-right-gap);
  width: var(--home-right-rail-width);
  z-index: 60;
}

.directions-card {
  width: 100%;
}

.directions-form {
  margin-top: 16px;
}

.directions-actions {
  margin-top: 4px;
}

.directions-map-frame {
  margin-top: 18px;
  border: 1px solid rgba(15, 61, 94, 0.16);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
}

.directions-map-frame iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
}

.directions-steps-card {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(15, 61, 94, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: #1a2b3f;
}

.directions-steps-card h3 {
  margin: 0 0 8px;
  color: #0f3d5e;
}

.directions-stats {
  margin: 0 0 12px;
  color: #4c5f75;
  font-weight: 700;
}

.directions-steps {
  margin: 0;
  padding-left: 22px;
}

.directions-steps li {
  margin-bottom: 10px;
  line-height: 1.45;
}

.directions-empty,
.directions-error {
  margin: 0;
  line-height: 1.45;
}

.directions-error {
  color: #a32121;
  font-weight: 700;
}

@media (max-width: 980px) {
  .secondary-page-shell {
    width: min(880px, calc(100vw - 28px));
  }

  .secondary-page-quick {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .directions-backdrop {
    display: none;
  }
}

/* ── Conflict warning modal ───────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 24px;
}

.modal-box {
  background: #fff;
  color: #1a1a2e;
  border-radius: 14px;
  padding: 32px 36px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
  animation: modal-pop 0.18s ease-out;
}

@keyframes modal-pop {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.modal-icon {
  font-size: 2.8rem;
  color: #e67e22;
  margin-bottom: 8px;
  line-height: 1;
}

.modal-box h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  color: #0f3d5e;
}

.modal-message {
  margin: 0 0 24px;
  color: #444;
  line-height: 1.6;
  font-size: 1rem;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.modal-actions .button {
  margin-top: 0;
  min-width: 160px;
}

.windows-popup-backdrop {
  background: rgba(12, 20, 32, 0.72);
  overflow: hidden;
}

.windows-popup-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/media/LOGOAAUW.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(560px, 80vw) auto;
  opacity: 0.28;
  pointer-events: none;
}

.windows-popup-box {
  position: relative;
  z-index: 1;
  padding: 0;
  max-width: 560px;
  border-radius: 8px;
  border: 1px solid #7a9ac2;
  background: #f4f4f4;
  color: #111;
  text-align: left;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.windows-popup-titlebar {
  background: linear-gradient(180deg, #e8f1fe 0%, #c7ddf8 100%);
  color: #0c2d53;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 9px 12px;
  border-bottom: 1px solid #9eb8d9;
}

.windows-popup-content {
  padding: 18px 18px 8px;
}

.windows-popup-message {
  margin: 0;
  color: #1f2d3d;
  line-height: 1.45;
}

.windows-popup-actions {
  justify-content: flex-end;
  padding: 8px 16px 14px;
}

.windows-popup-actions .button {
  min-width: 96px;
}

@media (max-width: 480px) {
  .modal-box {
    padding: 24px 20px;
  }

  .windows-popup-box {
    padding: 0;
  }

  .modal-actions {
    flex-direction: column;
  }

  .windows-popup-actions {
    flex-direction: row;
  }

  .modal-actions .button {
    width: 100%;
  }

  .windows-popup-actions .button {
    width: auto;
  }
}

/* ── Members-only navbar highlight ───────────────────────────── */
.navbar-members-link {
  background: rgba(28, 124, 138, 0.45);
  font-style: italic;
}

.navbar-members-link:hover {
  background: rgba(28, 124, 138, 0.8) !important;
}

/* ── Itinerary page layout ────────────────────────────────────── */
.itinerary-page {
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
}

.itinerary-page.secondary-page-shell {
  width: min(
    1180px,
    calc(100vw - var(--paper-rip-width) - var(--home-right-rail-width) - (var(--home-right-gap) * 2) - 36px)
  );
}

.itinerary-container {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.itinerary-header {
  background: rgba(255, 255, 255, 0.95);
  color: #0f3d5e;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.itinerary-header h1 {
  margin: 0 0 6px;
  font-size: 2rem;
  color: #0f3d5e;
}

.itinerary-header p {
  margin: 0;
  color: #555;
  font-size: 1.05rem;
}

.itinerary-empty {
  background: rgba(255, 255, 255, 0.95);
  color: #555;
  padding: 20px 28px;
  border-radius: 10px;
  font-style: italic;
  font-size: 1.05rem;
}

.itinerary-empty a {
  color: #1c7c8a;
  font-weight: 600;
}

.itinerary-print-note {
  margin: 0;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 248, 214, 0.94);
  color: #5b3d16;
  border: 1px solid rgba(164, 118, 47, 0.4);
  font-weight: 700;
  text-align: center;
}

/* ── Calendar grid ────────────────────────────────────────────── */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.cal-day {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.cal-day-header {
  background: #0f3d5e;
  color: #fff;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
}

.cal-day-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.cal-session {
  background: #eef8fa;
  border-left: 4px solid #1c7c8a;
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cal-time {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1c7c8a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cal-workshop {
  font-size: 0.95rem;
  color: #0f3d5e;
  font-weight: 600;
  line-height: 1.3;
}

.itinerary-remove-form {
  margin-top: 8px;
}

.itinerary-remove-button {
  margin-top: 0;
}

.cal-free {
  color: #bbb;
  font-style: italic;
  font-size: 0.9rem;
  margin: 0;
  padding: 6px 0;
  text-align: center;
}

.itinerary-footer {
  display: flex;
  justify-content: flex-start;
}

.itinerary-footer .button {
  margin-top: 0;
}

/* Calendar responsive ──────────────────────────────────────────── */
@media (max-width: 1000px) {
  .calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .itinerary-header h1 {
    font-size: 1.5rem;
  }

  .itinerary-page {
    padding: 14px;
  }
}

/* ── Admin page layout ────────────────────────────────────────── */
.admin-page {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
}

.admin-shell {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 0;
  align-items: stretch;
  min-height: calc(100vh - 64px);
}

.admin-nav-frame {
  background: rgba(255, 248, 232, 0.96);
  border-radius: 0;
  border-right: 4px solid rgba(15, 61, 94, 0.3);
  box-shadow: none;
  padding: 20px 16px;
  position: relative;
}

.admin-nav-frame h2 {
  margin: 0 0 12px;
  color: #0f3d5e;
  font-size: 1.2rem;
}

.admin-nav-user {
  margin: -6px 0 14px;
  color: #2a4d6d;
  font-weight: 700;
  font-size: 0.95rem;
}

.admin-nav-link {
  display: block;
  text-decoration: none;
  width: 100%;
  text-align: left;
  margin-bottom: 8px;
  border: 1px solid #aac5da;
  border-radius: 8px;
  background: #fff;
  color: #13334f;
  font-weight: 700;
  padding: 10px 12px;
  cursor: pointer;
}

.admin-nav-link.is-active {
  background: #0f3d5e;
  color: #fff;
  border-color: #0f3d5e;
}

.admin-nav-actions {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.admin-content-frame {
  min-width: 0;
  padding: 14px;
  position: relative;
  height: calc(100vh - 64px);
  overflow: hidden;
}

.hidden-panel {
  display: none;
}

.admin-panel {
  position: absolute;
  inset: 14px;
  min-height: 0;
  height: auto;
  overflow: auto;
}

.admin-welcome-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border: 1px solid #d5e2ee;
  border-radius: 12px;
  padding: 12px;
  min-height: calc(100vh - 100px);
}

.admin-welcome-title {
  margin: 0;
  color: #0f3d5e;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.admin-welcome-embed {
  width: 100%;
  height: calc((100vh - 130px) * 0.9);
  border: 0;
  border-radius: 10px;
  background: #0b1a2a;
  object-fit: contain;
}

.admin-welcome-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-welcome-fallback p {
  margin: 0;
  color: #2d4a66;
}

.admin-card {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.admin-notice {
  margin: 10px 0 16px;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.admin-notice.success {
  background: #d9f2de;
  border: 1px solid #7ac38a;
  color: #1e5f2d;
}

.admin-notice.error {
  background: #f9e0e0;
  border: 1px solid #d88a8a;
  color: #8a2020;
}

.admin-manage-card h2 {
  margin-top: 0;
}

.admin-manage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-manage-form {
  background: #f6fbff;
  border: 1px solid #d6e5f2;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-manage-form h3 {
  margin: 0;
  color: #0f3d5e;
}

.admin-manage-form p {
  margin: 0;
  color: #40576f;
  font-size: 0.92rem;
}

.admin-manage-form label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #274768;
}

.admin-manage-form select {
  min-height: 38px;
  border: 1px solid #b6cde3;
  border-radius: 8px;
  padding: 7px 10px;
  background: #fff;
  color: #18354f;
}

.admin-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 8px 12px;
  max-height: 320px;
  overflow: auto;
  padding: 10px;
  border: 1px solid #d3e1ef;
  background: #fff;
  border-radius: 8px;
}

.admin-slot-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #16344f;
  font-size: 0.9rem;
}

.button.danger {
  background: #b73030;
}

.button.danger:hover {
  background: #8f1f1f;
}

.admin-nuke-zone {
  margin-top: 18px;
  padding: 14px;
  border: 2px dashed #c6a400;
  border-radius: 10px;
  background: #fff8bf;
}

.admin-nuke-zone h3 {
  margin: 0 0 8px;
  color: #292200;
}

.admin-nuke-zone p {
  margin: 0 0 12px;
  color: #4d4200;
}

.admin-nuke-manual-tools {
  margin-top: 12px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #d0b64f;
  background: rgba(255, 255, 255, 0.65);
}

.admin-nuke-manual-tools p {
  margin: 0 0 10px;
  color: #352d00;
}

.nuke-trigger {
  background: #111;
  color: #ffe84f;
  border: 1px solid #ffe84f;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.nuke-trigger:hover {
  background: #000;
}

.nuke-icon,
.nuke-corner-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
}

.nuke-icon svg,
.nuke-corner-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nuke-icon .nuke-base,
.nuke-corner-icon .nuke-base {
  fill: #f9d400;
}

.nuke-icon .nuke-outline,
.nuke-corner-icon .nuke-outline,
.nuke-icon .nuke-blade,
.nuke-corner-icon .nuke-blade,
.nuke-icon .nuke-center,
.nuke-corner-icon .nuke-center {
  fill: #111;
  stroke: none;
}

.nuke-warning-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.nuke-warning-modal[hidden] {
  display: none;
}

.nuke-warning-dialog {
  position: relative;
  width: min(460px, 100%);
  background: #fff;
  border: 3px solid #111;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.nuke-warning-dialog h3 {
  margin: 0 0 8px;
  color: #1d1d1d;
}

.nuke-warning-dialog p {
  margin: 0 0 16px;
  color: #2d2d2d;
}

.nuke-corner-icon {
  position: absolute;
  top: 10px;
  right: 10px;
}

.nuke-warning-actions {
  display: flex;
  gap: 10px;
}

.nuke-confirm-yes {
  background: #1e8f36;
}

.nuke-confirm-yes:hover {
  background: #167128;
}

.nuke-confirm-no {
  background: #bf2b2b;
}

.nuke-confirm-no:hover {
  background: #9c1d1d;
}

.email-audit-card h2 {
  margin-top: 0;
}

.email-audit-table td,
.email-audit-table th {
  vertical-align: top;
}

.audit-status-sent {

.email-monitor-row.is-selected {
  background: rgba(15, 61, 94, 0.12);
}

.email-monitor-row.is-unread {
  font-weight: 700;
}

.email-monitor-detail {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #d7e3ef;
  border-radius: 10px;
  background: #f8fcff;
}

.email-monitor-body {
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #d7e3ef;
  border-radius: 8px;
  background: #fff;
  color: #1a2b3f;
  line-height: 1.4;
  max-height: 320px;
  overflow: auto;
  white-space: normal;
}
  color: #1f7a3a;
  font-weight: 700;
}

.audit-status-failed {
  color: #a32121;
  font-weight: 700;
}

@media (max-width: 980px) {
  .admin-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .admin-nav-frame {
    position: static;
    border-right: 0;
    border-bottom: 3px solid rgba(15, 61, 94, 0.3);
  }

  .admin-content-frame {
    padding: 10px;
    position: static;
    height: auto;
    overflow: visible;
  }

  .admin-panel {
    position: static;
    inset: auto;
    overflow: visible;
  }

  .admin-welcome-embed {
    height: 72vh;
  }
}

.roster-card h2 {
  margin-top: 0;
  color: #0f3d5e;
}

/* ── Roster workshop title ────────────────────────────────────── */
.roster-workshop-title {
  color: #0f3d5e;
  font-size: 1.25rem;
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 3px solid #1c7c8a;
}

.roster-workshop-title:first-child {
  margin-top: 8px;
}

/* ── Individual session block ─────────────────────────────────── */
.roster-session {
  margin-bottom: 20px;
  border: 1px solid #dce7f0;
  border-radius: 8px;
  overflow: hidden;
}

.roster-session-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eef5fb;
  padding: 10px 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.roster-session-label {
  font-weight: 700;
  color: #0f3d5e;
  font-size: 0.98rem;
}

.roster-badge {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.badge-open { background: #d4edda; color: #155724; }
.badge-low  { background: #fff3cd; color: #856404; }
.badge-full { background: #f8d7da; color: #721c24; }

/* ── Roster table ─────────────────────────────────────────────── */
.roster-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.roster-table th,
.roster-table td {
  padding: 8px 16px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.roster-table th {
  background: #f8f9fa;
  color: #0f3d5e;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.roster-table tr:last-child td { border-bottom: none; }
.roster-table tr:hover td      { background: #f0f8ff; }

.roster-empty {
  color: #999;
  font-style: italic;
  padding: 10px 16px;
  margin: 0;
}

.name-tags-section h2 {
  margin-top: 0;
}

.name-tags-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.name-tags-select-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1f2b3d;
  font-weight: 700;
}

.name-tags-selected-count {
  color: #38506e;
  font-size: 0.9rem;
  font-weight: 700;
}

.name-tags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(3in, 1fr));
  gap: 10px;
}

.name-tag-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.name-tag-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #21395b;
  font-weight: 700;
  font-size: 0.9rem;
}

.name-tag-picker input {
  width: 16px;
  height: 16px;
}

.name-tag {
  width: 3in;
  min-height: 4in;
  border: 1px solid #111;
  border-radius: 6px;
  padding: 6px 8px;
  background: #fff;
  color: #111;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  transition: opacity 0.15s ease, box-shadow 0.15s ease;
}

.name-tag-item.is-selected .name-tag {
  box-shadow: 0 0 0 2px rgba(46, 105, 163, 0.2);
}

.name-tag-item:not(.is-selected) .name-tag {
  opacity: 0.56;
}

.name-tag-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.name-tag-sessions {
  font-size: 10px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

/* Navigation Menu Bar */
.navbar,
.site-header {
  background: linear-gradient(90deg, #2b1a14 0%, var(--flyer-deep-red) 45%, var(--flyer-teal) 100%);
  padding: 0 12px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  position: sticky;
  top: 0;
  z-index: 100;
  flex-wrap: wrap;
}

.site-nav,
.navbar {
  position: sticky;
  top: 0;
  z-index: 1800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-secondary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  padding: 8px 12px;
  background: rgba(43, 26, 20, 0.42);
}

.nav-secondary a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.nav-secondary a:hover {
  text-decoration: underline;
}

.navbar a,
.site-nav a,
.site-header .brand {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 16px 22px;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.site-header .brand {
  font-weight: 700;
}

.navbar a,
.site-nav a {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar a:hover,
.site-nav a:hover,
.site-header .brand:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar a:first-child,
.site-nav a:first-child,
.site-header .brand {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar a:last-child,
.site-nav a:last-child {
  border-right: none;
}

.navbar a.navbar-donate-link {
  margin: 6px 4px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(156, 81, 2, 0.85);
  background: linear-gradient(180deg, #ffd777 0%, #f6b52e 100%);
  color: #3a1f0b;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, filter 0.18s ease, background 0.2s ease;
}

.navbar a.navbar-donate-link:hover,
.navbar a.navbar-donate-link:focus-visible {
  background: linear-gradient(180deg, #ffe4a1 0%, #f5c44f 100%) !important;
  color: #2a1507;
  transform: translateY(-1px);
}

.below-nav-logo {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  z-index: 850;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px 4px;
  background: transparent;
  border: none;
  box-shadow: none;
  pointer-events: none;
}

.below-nav-logo-svg {
  width: clamp(180px, 34vw, 360px);
  max-width: calc(100vw - 28px);
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: none;
  background: transparent;
}
.below-nav-logo .flyer-banner {
  width: clamp(300px, 30vw, 440px);
  margin: 0;
  overflow: visible;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 8px 12px;
  pointer-events: auto;
}
.below-nav-logo .flyer-banner::before,
.below-nav-logo .flyer-banner::after {
  display: none !important;
}


.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.event-page {
  background: #071018;
}

.video-background-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 42, 0.55);
}

.event-page .card {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero, .card {
  background: rgba(255, 248, 232, 0.96);
  color: #123;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  width: 100%;
}

.home-page {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: 0 0 12px;
}

.home-hero-strip {
  width: min(
    980px,
    calc(100vw - var(--paper-rip-width) - var(--home-right-rail-width) - var(--home-mission-width) - var(--home-mission-gap) - (var(--home-right-gap) * 2) - 72px)
  );
  min-height: 250px;
  display: flex;
  overflow: hidden;
  margin-bottom: 12px;
  margin-right: auto;
}

.home-strip-left {
  background: linear-gradient(135deg, #f7cc53 0%, #f5bc3f 52%, #eea631 100%);
  width: 100%;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 10px 10px;
}

.home-strip-left .flyer-banner {
  width: min(560px, 100%);
  margin: 0;
}

.home-register-btn {
  margin-top: 12px;
  padding: 10px 22px;
  font-weight: 800;
}

.home-cards {
  width: min(
    980px,
    calc(100vw - var(--paper-rip-width) - var(--home-right-rail-width) - var(--home-mission-width) - var(--home-mission-gap) - (var(--home-right-gap) * 2) - 72px)
  );
  display: block;
  margin-right: auto;
}

.home-card {
  background: rgba(255, 255, 255, 0.95);
  color: #1a2430;
  border-radius: 14px;
  border: 1px solid rgba(10, 20, 35, 0.12);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
  padding: 12px;
}

.home-card h2 {
  margin: 0 0 8px;
  color: #1c2f4a;
  font-size: 1.75rem;
}

.home-card p {
  margin: 0;
  color: #333;
}

.home-about-card h2,
.home-news-card h2,
.home-right-menu h2 {
  font-size: 1.45rem;
  line-height: 1;
}

.home-about-card p,
.home-news-card p,
.home-right-menu p {
  font-size: 0.92rem;
  line-height: 1.4;
}

.home-static-photo {
  margin-top: 12px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(35, 24, 18, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home-static-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.home-center-carousel-wrap {
  position: fixed;
  top: 60%;
  left: 51%;
  transform: translate(-50%, -50%);
  width: min(
    1900px,
    calc(100vw - var(--paper-rip-width) - var(--home-right-rail-width) - var(--home-mission-width) - var(--home-mission-gap) - (var(--home-right-gap) * 2) - 70px)
  );
  z-index: 45;
  pointer-events: none;
}

.home-center-carousel {
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  pointer-events: auto;
  position: relative;
  height: clamp(420px, 62vh, 1000px);
  overflow: hidden;
  isolation: isolate;
}

.home-center-carousel::after {
  display: none;
}

.home-center-carousel .center-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.home-center-carousel .center-carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.home-center-carousel .center-carousel-slide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0.88) 72%, rgba(0, 0, 0, 0.52) 86%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0.88) 72%, rgba(0, 0, 0, 0.52) 86%, rgba(0, 0, 0, 0) 100%);
}

.home-mission { display: none !important; /* burned into background image */
  position: fixed;
  top: 54%;
  right: calc(var(--home-right-gap) + var(--home-right-rail-width) + var(--home-mission-gap));
  left: auto;
  transform: translateY(-50%);
  width: var(--home-mission-width);
  z-index: 75;
  pointer-events: none;
}

.home-mission p {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  color: rgba(44, 18, 7, 0.56);
  font-family: "Lucida Calligraphy", "Palace Script MT", "URW Chancery L", "Book Antiqua", cursive;
  font-size: clamp(1.85rem, 2.5vw, 2.8rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(255, 220, 130, 0.18);
  box-shadow: none;
  backdrop-filter: none;
  transform: rotate(-2.5deg);
}

.home-right-rail {
  position: fixed;
  top: calc(18px + 1in);
  right: var(--home-right-gap);
  width: var(--home-right-rail-width);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 60;
}

.home-right-photo-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(32, 22, 16, 0.28);
  background: #fff;
}

.home-right-photo-card img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  display: block;
}

.home-news-item {
  padding: 10px 0;
  border-bottom: 1px solid #d8dfe8;
}

.home-news-item:last-child {
  border-bottom: none;
}

.home-news-item a {
  display: inline-block;
  margin-top: 6px;
  color: var(--flyer-deep-red);
  font-weight: 700;
  text-decoration: none;
}

.home-news-item a:hover {
  text-decoration: underline;
}

.home-right-menu {
  display: flex;
  flex-direction: column;
}

.home-news-card {
  background: linear-gradient(165deg, rgba(255, 247, 221, 0.96) 0%, rgba(247, 206, 128, 0.95) 54%, rgba(233, 132, 71, 0.92) 100%);
}

.home-news-card h2,
.home-news-card p,
.home-news-card a {
  color: #3d1f14;
}

.home-right-menu {
  background: linear-gradient(165deg, rgba(255, 242, 211, 0.96) 0%, rgba(247, 188, 115, 0.9) 58%, rgba(0, 96, 144, 0.3) 100%);
}

.home-right-menu h2 {
  color: var(--flyer-deep-red);
}

.home-right-menu p {
  margin-bottom: 12px;
  color: #5f4d3e;
}

.home-right-menu nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-right-menu nav a {
  text-decoration: none;
  color: #2f1f17;
  font-weight: 700;
  background: linear-gradient(90deg, #f7d2a7 0%, #f8c892 100%);
  border: 1px solid rgba(194, 120, 45, 0.55);
  border-radius: 999px;
  padding: 9px 14px;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.home-right-menu nav a:hover {
  transform: translateX(2px);
  filter: brightness(0.98);
}

@media (max-width: 1800px) {
  .home-page {
    --home-right-rail-width: clamp(200px, calc(var(--paper-rip-width) - 28px), 290px);
    --home-mission-width: clamp(220px, 20vw, 300px);
    --home-mission-gap: clamp(12px, 1.1vw, 18px);
  }

  .home-center-carousel-wrap {
    width: min(
      1900px,
      calc(100vw - var(--paper-rip-width) - var(--home-right-rail-width) - var(--home-mission-width) - var(--home-mission-gap) - (var(--home-right-gap) * 2) - 56px)
    );
  }

  .home-center-carousel {
    height: clamp(360px, 52vw, 760px);
  }

  .home-mission {
    top: 55%;
  }

  .home-mission p {
    transform: rotate(-1.5deg);
    font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  }

}

@media (max-width: 1400px) {
  .home-page {
    --home-right-rail-width: clamp(185px, calc(var(--paper-rip-width) - 32px), 250px);
    --home-mission-width: clamp(190px, 19vw, 250px);
    --home-mission-gap: clamp(8px, 0.9vw, 14px);
  }

  .home-card h2 {
    font-size: 1.5rem;
  }

  .home-about-card h2,
  .home-news-card h2,
  .home-right-menu h2 {
    font-size: 1.35rem;
  }

  .home-center-carousel-wrap {
    width: min(
      3040px,
      calc(100vw - var(--paper-rip-width) - var(--home-right-rail-width) - var(--home-mission-width) - var(--home-mission-gap) - (var(--home-right-gap) * 2) - 48px)
    );
  }

  .home-center-carousel .center-carousel-slide {
    height: 100%;
  }

  .home-center-carousel {
    height: clamp(300px, 46vw, 640px);
  }

  .home-mission p {
    font-size: clamp(1.3rem, 1.95vw, 1.85rem);
  }
}

@media (max-width: 1600px) and (min-width: 1001px) {
  .home-page {
    --home-right-rail-width: clamp(200px, 18vw, 250px);
    --home-mission-width: clamp(220px, 18vw, 280px);
    --home-mission-gap: clamp(8px, 0.8vw, 14px);
  }

  .home-right-rail {
    top: 78px;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding-right: 4px;
  }

  .home-mission {
    top: 50%;
  }

  .home-mission p {
    transform: none;
    line-height: 1.15;
    font-size: clamp(1.2rem, 1.45vw, 1.65rem);
  }

  .home-center-carousel {
    height: clamp(280px, 40vw, 560px);
  }
}

.speaker-teaser .speaker-teaser-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.speaker-thumb {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid rgba(15, 61, 94, 0.2);
}

.speaker-teaser-copy h3 {
  margin: 0 0 8px;
}

.speaker-teaser-copy h3 a {
  color: #0f3d5e;
  text-decoration: none;
}

.speaker-teaser-copy h3 a:hover {
  text-decoration: underline;
}

.speaker-detail-card {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 16px;
}

.speaker-detail-card img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  min-height: 320px;
}

.speaker-detail-copy h2 {
  margin-top: 0;
}

@media (max-width: 840px) {
  .speaker-detail-card {
    grid-template-columns: 1fr;
  }

  .speaker-thumb {
    width: 100%;
    max-width: 160px;
    height: auto;
  }
}

h1, h2 {
  margin-top: 0;
}

.button {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 18px;
  background: var(--flyer-red);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: var(--flyer-teal);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  gap: 6px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-preference-group {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-preference-group legend {
  font-weight: 700;
  padding: 0 6px;
}

.contact-radio-option {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-top: 6px;
}

.contact-radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  margin: 0;
}

.contact-conditional-fields {
  display: none;
}

.contact-conditional-fields.is-visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.error-box {
  background: #ffe8e8;
  color: #8a1f1f;
  padding: 12px;
  border-radius: 8px;
}

.success-message {
  margin-top: 12px;
  padding: 12px 14px;
  background: #eaf7ee;
  color: #206b3d;
  border-radius: 8px;
  font-weight: bold;
}

.link-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.info-list {
  background: #f3f7fb;
  padding: 16px;
  border-radius: 10px;
}

.info-list p {
  margin: 6px 0;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th, td {
  border-bottom: 1px solid #dce7f0;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #eef5fb;
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 32px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.home-carousel {
  max-width: 100%;
  margin: 12px 0 0;
}

.carousel-slide {
  display: none;
  width: 100%;
  height: 400px;
  position: relative;
}

.home-carousel .carousel-slide {
  height: 220px;
}

.carousel-slide.active {
  display: flex;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: rgba(255, 255, 255, 0.9);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 10;
  border-radius: 4px;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-arrow.prev {
  left: 12px;
}

.carousel-arrow.next {
  right: 12px;
}

@media (max-width: 600px) {
  .carousel-slide {
    height: 250px;
  }

  .home-carousel .carousel-slide {
    height: 210px;
  }
  
  .carousel-arrow {
    padding: 10px 12px;
    font-size: 18px;
  }
}

@media (max-width: 1000px) {
  .home-hero-strip,
  .home-cards {
    width: min(880px, calc(100vw - 28px));
  }

  .home-right-rail {
    position: static;
    width: min(880px, calc(100vw - 28px));
    margin-top: 14px;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .home-right-photo-card img {
    height: 210px;
  }

  .home-center-carousel-wrap {
    position: static;
    transform: none;
    width: min(880px, calc(100vw - 28px));
    margin: 14px 0;
    pointer-events: auto;
  }

  .home-center-carousel .center-carousel-slide {
    height: 100%;
  }

  .home-center-carousel {
    height: 680px;
  }

  .home-mission {
    position: static;
    transform: none;
    width: min(880px, calc(100vw - 28px));
    margin: 0 0 14px;
  }

  .home-mission p {
    color: rgba(58, 26, 12, 0.7);
    text-shadow: 0 1px 0 rgba(255, 239, 188, 0.25);
    transform: rotate(-1.4deg);
  }

  .home-about-card h2,
  .home-news-card h2,
  .home-right-menu h2 {
    font-size: 1.9rem;
  }

  .below-nav-logo {
    padding: 8px 10px 6px;
  }

  .below-nav-logo-svg {
    width: clamp(160px, 56vw, 280px);
  }
}

/* Event Page Styles */
.event-content {
  margin-top: 24px;
}

.event-section {
  margin-bottom: 28px;
}

.event-section h3 {
  color: #0f3d5e;
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  border-bottom: 2px solid #1c7c8a;
  padding-bottom: 8px;
}

.event-section p {
  line-height: 1.6;
  margin: 12px 0;
}

.event-highlight {
  background: #e8f4f8;
  padding: 12px;
  border-left: 4px solid #1c7c8a;
  font-weight: 500;
  border-radius: 4px;
}

.event-list {
  list-style-position: inside;
  margin-left: 0;
  padding-left: 0;
}

.event-list li {
  margin: 10px 0;
  padding-left: 8px;
  line-height: 1.5;
}

.event-list li:before {
  content: "• ";
  color: #1c7c8a;
  font-weight: bold;
  margin-right: 8px;
}

.event-cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #dce7f0;
  text-align: center;
}

.event-cta p {
  font-size: 1.1rem;
  color: #0f3d5e;
  margin-bottom: 16px;
}

/* Members Page Styles */
.page.members-page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(145deg, var(--flyer-gold) 0%, var(--flyer-orange) 38%, #dd4726 72%, var(--flyer-teal) 100%);
}

.members-container {
  width: 100%;
  max-width: 1400px;
}

.welcome-section {
  background: rgba(255, 255, 255, 0.95);
  color: #123;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.welcome-section h1 {
  margin: 0 0 8px 0;
  color: #0f3d5e;
  font-size: 2rem;
}

.welcome-section p {
  margin: 0;
  color: #555;
}

.members-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: flex-start;
}

.members-sidebar {
  display: flex;
  flex-direction: column;
}

.event-info-panel {
  background: rgba(255, 255, 255, 0.95);
  color: #123;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  height: fit-content;
  max-height: 600px;
  overflow-y: auto;
}

.event-info-panel h2 {
  margin-top: 0;
  color: #0f3d5e;
  border-bottom: 2px solid #1c7c8a;
  padding-bottom: 12px;
}

.event-info-panel .event-section h3 {
  font-size: 1.1rem;
}

.members-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.workshop-selection {
  background: rgba(255, 255, 255, 0.95);
  color: #123;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.workshop-selection h2 {
  margin-top: 0;
  color: #0f3d5e;
  border-bottom: 2px solid #1c7c8a;
  padding-bottom: 12px;
}

.selection-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
  align-items: flex-end;
}

.dropdown-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dropdown-group label {
  font-weight: bold;
  color: #0f3d5e;
  font-size: 0.95rem;
}

.dropdown-group select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  color: #333;
  cursor: pointer;
}

.dropdown-group select:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
  color: #999;
}

.selection-controls .button {
  margin-top: 0;
  width: 100%;
}

.cart-section {
  background: rgba(255, 255, 255, 0.95);
  color: #123;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cart-section h2 {
  margin-top: 0;
  color: #0f3d5e;
  border-bottom: 2px solid #1c7c8a;
  padding-bottom: 12px;
}

.cart-items {
  min-height: 120px;
  margin-bottom: 16px;
}

.empty-cart {
  text-align: center;
  color: #999;
  padding: 40px 20px;
  font-style: italic;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #1c7c8a;
}

.cart-item-details {
  flex: 1;
}

.cart-item-workshop {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: #0f3d5e;
}

.cart-item-info {
  margin: 4px 0;
  color: #666;
  font-size: 0.95rem;
}

.cart-remove-btn {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
  white-space: nowrap;
  margin-left: 12px;
}

.cart-remove-btn:hover {
  background: #c0392b;
}

.cart-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cart-actions .button {
  margin-top: 0;
}

.cart-actions .button.secondary {
  background: #95a5a6;
}

.cart-actions .button.secondary:hover {
  background: #7f8c8d;
}

/* Responsive design for members page */
@media (max-width: 900px) {
  .members-content {
    grid-template-columns: 1fr;
  }

  .event-info-panel {
    max-height: none;
  }

  .selection-controls {
    grid-template-columns: 1fr;
  }

  .selection-controls .button {
    grid-column: 1;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-remove-btn {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
  }

  .cart-actions {
    justify-content: stretch;
    flex-direction: column;
  }

  .cart-actions button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .welcome-section h1 {
    font-size: 1.5rem;
  }

  .selection-controls {
    grid-template-columns: 1fr;
  }

  .selection-controls .button {
    grid-column: 1;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-remove-btn {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
  }
}

/* Mobile optimization without changing page layout structure */
@media (max-width: 768px) {
  .flyer-banner {
    padding: 14px 14px 16px;
  }

  .flyer-kicker {
    font-size: 1.5rem;
  }

  .stem-letter {
    width: 56px;
    height: 68px;
    font-size: 2.8rem;
    box-shadow: 4px 4px 0 #111;
  }

  .stem-day {
    font-size: 1.8rem;
    margin-left: 2px;
  }

  .flyer-conference {
    font-size: 2rem;
  }

  .page,
  .page.members-page,
  .itinerary-page {
    padding: 14px;
  }

  .hero,
  .card,
  .welcome-section,
  .event-info-panel,
  .workshop-selection,
  .cart-section,
  .itinerary-header,
  .itinerary-empty {
    padding: 20px;
    border-radius: 12px;
  }

  .navbar,
  .site-header,
  .site-nav {
    gap: 0;
  }

  .navbar,
  .site-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .navbar::-webkit-scrollbar,
  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .navbar a,
  .site-nav a,
  .site-header .brand {
    padding: 14px 14px;
    white-space: nowrap;
    font-size: 0.95rem;
  }

  .nav-secondary {
    padding: 8px 10px;
  }

  .link-row {
    gap: 10px;
  }

  .button {
    padding: 11px 14px;
  }

  .site-footnote {
    font-size: 0.62rem;
    right: 8px;
    bottom: 6px;
  }
}

@media (max-width: 480px) {
  .flyer-stem {
    gap: 6px;
  }

  .stem-letter {
    width: 46px;
    height: 56px;
    border-width: 2px;
    font-size: 2.1rem;
    box-shadow: 3px 3px 0 #111;
  }

  .stem-day {
    font-size: 1.35rem;
    margin-bottom: 4px;
  }

  .flyer-conference {
    font-size: 1.45rem;
    letter-spacing: 0.05em;
  }

  .page,
  .page.members-page,
  .itinerary-page {
    padding: 10px;
  }

  .hero,
  .card,
  .welcome-section,
  .event-info-panel,
  .workshop-selection,
  .cart-section,
  .itinerary-header,
  .itinerary-empty {
    padding: 16px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .site-footnote {
    display: none;
  }
}

@media print {
  .navbar,
  .site-footnote,
  .weather-rotator-widget,
  .admin-card:not(.name-tags-section),
  .name-tags-toolbar,
  .name-tag-picker {
    display: none !important;
  }

  body.print-only-selected .name-tag-item:not(.is-selected) {
    display: none !important;
  }

  .page.admin-page,
  .name-tags-section,
  .name-tags-grid {
    margin: 0;
    padding: 0;
    box-shadow: none !important;
    background: #fff !important;
  }

  .name-tags-grid {
    display: block;
  }

  .name-tag {
    width: 3in;
    height: 4in;
    border: 1px solid #000;
    margin: 0 0 0.06in 0;
    page-break-inside: avoid;
    break-inside: avoid;
    box-shadow: none;
    opacity: 1;
  }
}

/* ── Nav dropdown ─────────────────────────────────────────────────────────── */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-toggle { cursor: pointer; white-space: nowrap; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #8f101f;
  min-width: 270px;
  z-index: 9000;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  flex-direction: column;
  overflow: hidden;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  color: #fff !important;
  padding: 9px 16px;
  white-space: nowrap;
  text-decoration: none;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.15s;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.14); }

/* ── Sessions pages ──────────────────────────────────────────────────────── */
.sessions-listing-card { max-width: 860px; }
.sessions-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.session-card {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(90deg,rgba(255,247,221,0.96) 0%,rgba(247,206,128,0.9) 100%);
  border: 1px solid rgba(194,120,45,0.4);
  border-radius: 12px; padding: 14px 18px;
  text-decoration: none; color: #1a2430;
  transition: transform 0.15s, box-shadow 0.15s;
}
.session-card:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.session-card h3 { margin: 0 0 4px; font-size: 1.05rem; }
.session-card .session-presenter { margin: 0; font-size: 0.85rem; color: #5f4d3e; }
.session-icon { font-size: 2rem; flex-shrink: 0; }
.session-icon-large { font-size: 3.5rem; }
.sessions-grid-small .session-card { padding: 10px 14px; }
.sessions-grid-small .session-icon { font-size: 1.4rem; }
.sessions-grid-small .session-card h3 { font-size: 0.9rem; }
.session-detail-header { display: flex; align-items: center; gap: 16px; margin: 16px 0 8px; }
.session-detail-header h2 { margin: 0; }
.session-presenter-detail { color: #5f4d3e; margin-bottom: 18px; }
.session-detail-body p { font-size: 1.05rem; line-height: 1.65; }
.session-other-sessions { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(0,0,0,0.1); }
.session-detail-section { max-width: 860px; }

/* ── Medium-screen responsive fixes ─────────────────────────────────────── */
@media (max-width: 1500px) and (min-width: 1001px) {
  .home-center-carousel-wrap { top: 68%; }
  .home-center-carousel { height: clamp(200px, 30vw, 400px); }
}
@media (max-width: 1300px) and (min-width: 1001px) {
  .home-center-carousel-wrap { top: 72%; }
  .home-center-carousel { height: clamp(180px, 26vw, 340px); }
  .home-right-rail { top: 70px; max-height: calc(100vh - 84px); overflow-y: auto; }
}
@media (max-width: 1150px) and (min-width: 1001px) {
  .home-center-carousel-wrap { top: 76%; }
  .home-center-carousel { height: clamp(160px, 22vw, 280px); }
  .home-right-rail { top: 65px; max-height: calc(100vh - 78px); overflow-y: auto; }
  .home-mission p { font-size: clamp(1rem, 1.3vw, 1.4rem); }
}

/* ── News ticker bar ──────────────────────────────────────────────────────── */
.news-ticker-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 76px;
  background: rgba(8, 20, 36, 0.18);
  border-top: 2px solid rgba(255,200,80,0.4);
  display: flex;
  align-items: center;
  z-index: 1500;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.news-ticker-label {
  flex-shrink: 0;
  padding: 0 18px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd972;
  border-right: 2px solid rgba(255,200,80,0.4);
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(143,16,31,0.7);
}
.news-ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}
.news-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 42s linear infinite;
}
.news-ticker-track:hover { animation-play-state: paused; }
.news-ticker-item {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  padding: 0 28px;
}
.news-ticker-sep {
  color: #ffd972;
  font-size: 0.6rem;
  padding: 0 4px;
  opacity: 0.7;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Push site footnote above ticker */
.site-footnote { margin-bottom: 100px; }

/* ── Session page layout ─────────────────────────────────────────────────── */
.session-page-carousel {
  position: fixed;
  left: 0;
  top: 40px;
  width: clamp(180px, 22vw, 320px);
  height: calc(100vh - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 12px 8px;
  pointer-events: none;
}
.session-carousel-inner {
  position: relative;
  width: 100%;
  height: clamp(240px, 40vh, 520px);
  border-radius: 14px;
  overflow: hidden;
  pointer-events: auto;
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}
.session-carousel-slide { display: none; width: 100%; height: 100%; }
.session-carousel-slide.active { display: block; }
.session-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.session-page-layout {
  margin-left: clamp(180px, 22vw, 320px);
  margin-right: clamp(160px, 20vw, 300px);
  padding: 20px 16px 100px;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100vh;
}
.session-page-quick-menu {
  position: fixed;
  right: 12px;
  top: 48px;
  width: clamp(150px, 18vw, 270px);
  background: linear-gradient(165deg,rgba(255,242,211,0.96) 0%,rgba(247,188,115,0.9) 58%,rgba(0,96,144,0.3) 100%);
  border-radius: 14px;
  padding: 14px 16px;
  z-index: 60;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}
.session-page-quick-menu h2 { color: #8f101f; font-size: 1.1rem; margin: 0 0 10px; }
.session-page-quick-menu nav { display: flex; flex-direction: column; gap: 8px; }
.session-page-quick-menu nav a {
  text-decoration: none; color: #2f1f17; font-weight: 700;
  background: linear-gradient(90deg,#f7d2a7 0%,#f8c892 100%);
  border: 1px solid rgba(194,120,45,0.55);
  border-radius: 999px; padding: 7px 12px; font-size: 0.85rem;
  transition: transform 0.15s;
}
.session-page-quick-menu nav a:hover { transform: translateX(2px); }
@media (max-width: 900px) {
  .session-page-carousel { position: static; width: 100%; height: 220px; padding: 0; margin-bottom: 12px; }
  .session-carousel-inner { height: 220px; border-radius: 10px; }
  .session-page-layout { margin-left: 0; margin-right: 0; }
  .session-page-quick-menu { position: static; width: 100%; max-height: none; margin-top: 16px; }
}

/* ── Green login / create-account buttons ────────────────────────────────── */
a.button[href='/signup'],
a.button[href='/login'],
a.button.secondary[href='/login'],
button.button[href='/login'] {
  background: #1a7a3e !important;
}
a.button[href='/signup']:hover,
a.button[href='/login']:hover,
a.button.secondary[href='/login']:hover {
  background: #155f30 !important;
  filter: none;
}

/* ── Home carousel: responsive scaling, hidden below 1600px ─────────────── */
.home-center-carousel-wrap {
  display: none;
}
@media (min-width: 1600px) {
  .home-center-carousel-wrap {
    display: block;
    position: fixed;
    /* min 500px ensures clear of any fixed header/banner; 68% centers in lower half */
    top: max(68%, 500px);
    left: 57%;
    transform: translate(-50%, -50%);
    /* tight width so it never overlaps the left content card */
    width: min(560px, 30vw);
    z-index: 45;
    pointer-events: none;
  }
  .home-center-carousel {
    height: clamp(240px, 20vw, 420px);
    pointer-events: auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  }
  .home-center-carousel .center-carousel-slide {
    height: 100%;
  }
}
@media (min-width: 2200px) {
  .home-center-carousel-wrap {
    top: max(66%, 520px);
    left: 56%;
    width: min(640px, 28vw);
  }
  .home-center-carousel {
    height: clamp(340px, 23vw, 520px);
  }
}

/* ── Ticker clearance: prevent fixed ticker from hiding bottom content ─── */
.home-right-rail {
  padding-bottom: 88px;
}
.home-card,
.home-about-card {
  padding-bottom: 88px;
}
.home-right-menu {
  padding-bottom: 88px;
}
/* On smaller screens where right rail goes static, reduce to normal */
@media (max-width: 1000px) {
  .home-right-rail,
  .home-card,
  .home-about-card,
  .home-right-menu {
    padding-bottom: 16px;
  }
  /* Let the page itself have bottom space for the ticker */
  .home-page {
    padding-bottom: 96px;
  }
}

/* Hide news ticker on screens under 27 inches (approx 1921px width) */
@media (max-width: 1920px) {
  .news-ticker-bar {
    display: none !important;
  }
  main.page {
    padding-bottom: 16px !important;
  }
}
/* All pages get bottom breathing room above the ticker */
main.page {
  padding-bottom: 96px !important;
}
.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 36px;
  padding: 0 10px;
  line-height: 1.05;
  text-align: center;
}

.navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.05;
}
/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 300px 154px, 300px 154px, auto;
  background-position: 0 0, 150px 77px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: soft-light, soft-light, normal;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 280px 144px, 280px 144px, auto;
  background-position: 0 0, 150px 77px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 280px 144px, 280px 144px, auto;
  background-position: 0 0, 150px 77px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.home-strip-left .flyer-banner {
  transform: translateX(clamp(20px, 6vw, 72px));
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.home-strip-left .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 1 184px;
  width: 184px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.68rem;
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 170px;
    width: 170px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 130px;
  width: 130px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.62rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 130px;
    width: 130px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 130px;
  width: 130px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.62rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 10px 12px;
}

.navbar > .navbar-donate-link {
  width: 150px;
  min-width: 150px;
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 130px;
    width: 130px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 130px;
  width: 130px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.62rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 10px 12px;
}

.navbar > .navbar-donate-link {
  width: 150px;
  min-width: 150px;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 130px;
    width: 130px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 108px;
  width: 108px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.58rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 8px 8px;
}

.navbar > .navbar-donate-link {
  width: 122px;
  min-width: 122px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar > .navbar-register-link {
  width: 112px;
  min-width: 112px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 108px;
    width: 108px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 104px;
  min-width: 104px;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 104px;
  min-width: 104px;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 104px;
  min-width: 104px;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: 50%;
  right: auto;
  bottom: 8px;
  transform: translateX(-50%);
  max-width: min(760px, 90vw);
  text-align: center;
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 104px;
  min-width: 104px;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: 50%;
  right: auto;
  bottom: 8px;
  transform: translateX(-50%);
  max-width: min(760px, 90vw);
  text-align: center;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 104px;
  min-width: 104px;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: 50%;
  right: auto;
  bottom: 8px;
  transform: translateX(-50%);
  max-width: min(760px, 90vw);
  text-align: center;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 4px;
}

.home-right-menu nav a {
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 104px;
  min-width: 104px;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: 50%;
  right: auto;
  bottom: 8px;
  transform: translateX(-50%);
  max-width: min(760px, 90vw);
  text-align: center;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 104px;
  min-width: 104px;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 104px;
  min-width: 104px;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: 0 !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #8f8870 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: 0 !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -5px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -5px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -5px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -5px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -5px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 12px rgba(255, 139, 22, 0.9))
    drop-shadow(0 0 28px rgba(245, 93, 8, 0.62))
    drop-shadow(0 0 54px rgba(255, 173, 46, 0.38));
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 12px rgba(255, 139, 22, 0.9))
    drop-shadow(0 0 28px rgba(245, 93, 8, 0.62))
    drop-shadow(0 0 54px rgba(255, 173, 46, 0.38)) !important;
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 14px rgba(255, 145, 18, 1))
    drop-shadow(0 0 32px rgba(245, 93, 8, 0.78))
    drop-shadow(0 0 62px rgba(255, 173, 46, 0.5)) !important;
}

.home-static-photo {
  box-shadow:
    0 0 12px rgba(255, 145, 18, 0.86),
    0 0 28px rgba(245, 93, 8, 0.56),
    0 0 48px rgba(255, 173, 46, 0.32);
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 14px rgba(255, 145, 18, 1))
    drop-shadow(0 0 32px rgba(245, 93, 8, 0.78))
    drop-shadow(0 0 62px rgba(255, 173, 46, 0.5)) !important;
}

.home-static-photo {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home-about-card {
  box-shadow:
    0 0 14px rgba(255, 145, 18, 0.9),
    0 0 32px rgba(245, 93, 8, 0.62),
    0 0 58px rgba(255, 173, 46, 0.38),
    0 14px 24px rgba(0, 0, 0, 0.18);
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 14px rgba(255, 145, 18, 1))
    drop-shadow(0 0 32px rgba(245, 93, 8, 0.78))
    drop-shadow(0 0 62px rgba(255, 173, 46, 0.5)) !important;
}

.home-static-photo {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home-about-card {
  box-shadow:
    0 0 14px rgba(255, 145, 18, 0.9),
    0 0 32px rgba(245, 93, 8, 0.62),
    0 0 58px rgba(255, 173, 46, 0.38),
    0 14px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 701px) and (max-height: 850px) {
  .home-about-card {
    transform: translate(24px, -220px);
  }

  .home-static-photo img {
    height: 160px;
  }

  .home-about-card .link-row {
    gap: 8px;
  }
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

/* Phones and tablets: allow the homepage to scroll so nothing is cut off. */
@media (max-width: 900px) {
  body:has(.home-page) {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  html:has(.home-page) {
    height: auto;
    overflow-y: auto;
  }

  .home-page {
    height: auto;
    min-height: calc(100vh - 55px);
    overflow: visible;
  }
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 14px rgba(255, 145, 18, 1))
    drop-shadow(0 0 32px rgba(245, 93, 8, 0.78))
    drop-shadow(0 0 62px rgba(255, 173, 46, 0.5)) !important;
}

.home-static-photo {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home-about-card {
  box-shadow:
    0 0 14px rgba(255, 145, 18, 0.9),
    0 0 32px rgba(245, 93, 8, 0.62),
    0 0 58px rgba(255, 173, 46, 0.38),
    0 14px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 701px) and (max-height: 850px) {
  .home-about-card {
    transform: translate(24px, -220px);
  }

  .home-static-photo img {
    height: 160px;
  }

  .home-about-card .link-row {
    gap: 8px;
  }
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

/* Phones and tablets: allow the homepage to scroll so nothing is cut off. */
@media (max-width: 1024px) {
  body:has(.home-page) {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  html:has(.home-page) {
    height: auto;
    overflow-y: auto;
  }

  .home-page {
    height: auto;
    min-height: calc(100vh - 55px);
    overflow: visible;
  }
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 14px rgba(255, 145, 18, 1))
    drop-shadow(0 0 32px rgba(245, 93, 8, 0.78))
    drop-shadow(0 0 62px rgba(255, 173, 46, 0.5)) !important;
}

.home-static-photo {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home-about-card {
  box-shadow:
    0 0 14px rgba(255, 145, 18, 0.9),
    0 0 32px rgba(245, 93, 8, 0.62),
    0 0 58px rgba(255, 173, 46, 0.38),
    0 14px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 701px) and (max-height: 850px) {
  .home-about-card {
    transform: translate(24px, -220px);
  }

  .home-static-photo img {
    height: 160px;
  }

  .home-about-card .link-row {
    gap: 8px;
  }
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

/* Phones and tablets: allow the homepage to scroll so nothing is cut off. */
@media (max-width: 1024px) {
  body:has(.home-page) {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  html:has(.home-page) {
    height: auto;
    overflow-y: auto;
  }

  .home-page {
    height: auto;
    min-height: calc(100vh - 55px);
    overflow: visible;
  }
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.donors-card {
  text-align: center;
}

.donors-intro {
  font-size: 1.1rem;
}

.donors-thank-you {
  font-size: 2.4rem;
  color: var(--flyer-deep-red, #8f101f);
  letter-spacing: 0.05em;
  margin: 6px 0 12px;
}

.donors-subheading {
  margin-top: 26px;
  color: var(--flyer-deep-red, #8f101f);
}

.donors-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.donors-list li {
  padding: 4px 0;
  font-size: 1.05rem;
}

.donors-closing {
  margin-top: 22px;
  font-weight: 700;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 14px rgba(255, 145, 18, 1))
    drop-shadow(0 0 32px rgba(245, 93, 8, 0.78))
    drop-shadow(0 0 62px rgba(255, 173, 46, 0.5)) !important;
}

.home-static-photo {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home-about-card {
  box-shadow:
    0 0 14px rgba(255, 145, 18, 0.9),
    0 0 32px rgba(245, 93, 8, 0.62),
    0 0 58px rgba(255, 173, 46, 0.38),
    0 14px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 701px) and (max-height: 850px) {
  .home-about-card {
    transform: translate(24px, -220px);
  }

  .home-static-photo img {
    height: 160px;
  }

  .home-about-card .link-row {
    gap: 8px;
  }
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

@media (max-width: 600px) {
  .below-nav-logo {
    flex-wrap: wrap;
    justify-content: center;
  }

  .below-nav-logo .flyer-banner {
    transform: none;
  }
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

/* Phones and tablets: allow the homepage to scroll so nothing is cut off. */
@media (max-width: 1024px) {
  body:has(.home-page) {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  html:has(.home-page) {
    height: auto;
    overflow-y: auto;
  }

  .home-page {
    height: auto;
    min-height: calc(100vh - 55px);
    overflow: visible;
  }
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.donors-card {
  text-align: center;
}

.donors-intro {
  font-size: 1.1rem;
}

.donors-thank-you {
  font-size: 2.4rem;
  color: var(--flyer-deep-red, #8f101f);
  letter-spacing: 0.05em;
  margin: 6px 0 12px;
}

.donors-subheading {
  margin-top: 26px;
  color: var(--flyer-deep-red, #8f101f);
}

.donors-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.donors-list li {
  padding: 4px 0;
  font-size: 1.05rem;
}

.donors-closing {
  margin-top: 22px;
  font-weight: 700;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 14px rgba(255, 145, 18, 1))
    drop-shadow(0 0 32px rgba(245, 93, 8, 0.78))
    drop-shadow(0 0 62px rgba(255, 173, 46, 0.5)) !important;
}

.home-static-photo {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home-about-card {
  box-shadow:
    0 0 14px rgba(255, 145, 18, 0.9),
    0 0 32px rgba(245, 93, 8, 0.62),
    0 0 58px rgba(255, 173, 46, 0.38),
    0 14px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 701px) and (max-height: 850px) {
  .home-about-card {
    transform: translate(24px, -220px);
  }

  .home-static-photo img {
    height: 160px;
  }

  .home-about-card .link-row {
    gap: 8px;
  }
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

@media (max-width: 600px) {
  .below-nav-logo {
    flex-wrap: wrap;
    justify-content: center;
  }

  .below-nav-logo .flyer-banner {
    transform: none;
  }
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

/* Phones and tablets: allow the homepage to scroll so nothing is cut off. */
@media (max-width: 1024px) {
  body:has(.home-page) {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  html:has(.home-page) {
    height: auto;
    overflow-y: auto;
  }

  .home-page {
    height: auto;
    min-height: calc(100vh - 55px);
    overflow: visible;
  }
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.cal-presenter {
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
}

@media print {
  body:has(.itinerary-page) {
    background: #fff !important;
    color: #000 !important;
    height: auto !important;
    overflow: visible !important;
  }

  body:has(.itinerary-page) * {
    visibility: hidden !important;
  }

  body:has(.itinerary-page) .calendar-grid,
  body:has(.itinerary-page) .calendar-grid * {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .calendar-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
  }

  body:has(.itinerary-page) .cal-day {
    box-shadow: none !important;
    border: 1px solid #000;
    border-radius: 0;
    break-inside: avoid;
  }

  body:has(.itinerary-page) .cal-session {
    background: #fff !important;
    border-left: 0;
    border-bottom: 1px solid #bbb;
    border-radius: 0;
    color: #000 !important;
    padding: 9px 0;
  }

  body:has(.itinerary-page) .cal-time,
  body:has(.itinerary-page) .cal-workshop,
  body:has(.itinerary-page) .cal-presenter {
    color: #000 !important;
  }

  body:has(.itinerary-page) .itinerary-remove-form {
    display: none !important;
  }
}

.donors-card {
  text-align: center;
}

.donors-intro {
  font-size: 1.1rem;
}

.donors-thank-you {
  font-size: 2.4rem;
  color: var(--flyer-deep-red, #8f101f);
  letter-spacing: 0.05em;
  margin: 6px 0 12px;
}

.donors-subheading {
  margin-top: 26px;
  color: var(--flyer-deep-red, #8f101f);
}

.donors-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.donors-list li {
  padding: 4px 0;
  font-size: 1.05rem;
}

.donors-closing {
  margin-top: 22px;
  font-weight: 700;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 14px rgba(255, 145, 18, 1))
    drop-shadow(0 0 32px rgba(245, 93, 8, 0.78))
    drop-shadow(0 0 62px rgba(255, 173, 46, 0.5)) !important;
}

.home-static-photo {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home-about-card {
  box-shadow:
    0 0 14px rgba(255, 145, 18, 0.9),
    0 0 32px rgba(245, 93, 8, 0.62),
    0 0 58px rgba(255, 173, 46, 0.38),
    0 14px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 701px) and (max-height: 850px) {
  .home-about-card {
    transform: translate(24px, -220px);
  }

  .home-static-photo img {
    height: 160px;
  }

  .home-about-card .link-row {
    gap: 8px;
  }
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

@media (max-width: 600px) {
  .below-nav-logo {
    flex-wrap: wrap;
    justify-content: center;
  }

  .below-nav-logo .flyer-banner {
    transform: none;
  }
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

/* Phones and tablets: allow the homepage to scroll so nothing is cut off. */
@media (max-width: 1024px) {
  body:has(.home-page) {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  html:has(.home-page) {
    height: auto;
    overflow-y: auto;
  }

  .home-page {
    height: auto;
    min-height: calc(100vh - 55px);
    overflow: visible;
  }
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.cal-presenter {
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
}

@media print {
  body:has(.itinerary-page) {
    background: #fff !important;
    color: #000 !important;
    height: auto !important;
    overflow: visible !important;
  }

  body:has(.itinerary-page) * {
    visibility: hidden !important;
  }

  body:has(.itinerary-page) .calendar-grid,
  body:has(.itinerary-page) .calendar-grid * {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .calendar-grid {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(7.4in, 100%);
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  body:has(.itinerary-page) .calendar-grid::before {
    content: "9th Annual AAUW STEM Day Conference";
    visibility: visible !important;
    display: block;
    margin: 0 0 0.22in;
    color: #000;
    font-size: 18pt;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
  }

  body:has(.itinerary-page) .cal-day {
    box-shadow: none !important;
    border: 1px solid #000;
    border-radius: 0;
    break-inside: avoid;
    text-align: left;
  }

  body:has(.itinerary-page) .cal-session {
    background: #fff !important;
    border-left: 0;
    border-bottom: 1px solid #bbb;
    border-radius: 0;
    color: #000 !important;
    padding: 9px 0;
  }

  body:has(.itinerary-page) .cal-time,
  body:has(.itinerary-page) .cal-workshop,
  body:has(.itinerary-page) .cal-presenter {
    color: #000 !important;
  }

  body:has(.itinerary-page) .itinerary-remove-form {
    display: none !important;
  }
}

.donors-card {
  text-align: center;
}

.donors-intro {
  font-size: 1.1rem;
}

.donors-thank-you {
  font-size: 2.4rem;
  color: var(--flyer-deep-red, #8f101f);
  letter-spacing: 0.05em;
  margin: 6px 0 12px;
}

.donors-subheading {
  margin-top: 26px;
  color: var(--flyer-deep-red, #8f101f);
}

.donors-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.donors-list li {
  padding: 4px 0;
  font-size: 1.05rem;
}

.donors-closing {
  margin-top: 22px;
  font-weight: 700;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 14px rgba(255, 145, 18, 1))
    drop-shadow(0 0 32px rgba(245, 93, 8, 0.78))
    drop-shadow(0 0 62px rgba(255, 173, 46, 0.5)) !important;
}

.home-static-photo {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home-about-card {
  box-shadow:
    0 0 14px rgba(255, 145, 18, 0.9),
    0 0 32px rgba(245, 93, 8, 0.62),
    0 0 58px rgba(255, 173, 46, 0.38),
    0 14px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 701px) and (max-height: 850px) {
  .home-about-card {
    transform: translate(24px, -220px);
  }

  .home-static-photo img {
    height: 160px;
  }

  .home-about-card .link-row {
    gap: 8px;
  }
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

@media (max-width: 600px) {
  .below-nav-logo {
    flex-wrap: wrap;
    justify-content: center;
  }

  .below-nav-logo .flyer-banner {
    transform: none;
  }
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

/* Phones and tablets: allow the homepage to scroll so nothing is cut off. */
@media (max-width: 1024px) {
  body:has(.home-page) {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  html:has(.home-page) {
    height: auto;
    overflow-y: auto;
  }

  .home-page {
    height: auto;
    min-height: calc(100vh - 55px);
    overflow: visible;
  }
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.cal-presenter {
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
}

.itinerary-print-logo {
  display: none;
}

@media print {
  @page {
    size: letter portrait;
    margin: 0.45in;
  }

  body:has(.itinerary-page) {
    background: #fff !important;
    color: #000 !important;
    height: auto !important;
    overflow: visible !important;
  }

  body:has(.itinerary-page) * {
    visibility: hidden !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo,
  body:has(.itinerary-page) .itinerary-print-logo * {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .calendar-grid,
  body:has(.itinerary-page) .calendar-grid * {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo {
    display: block !important;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 7.4in;
    max-width: 100%;
    text-align: center;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-banner {
    width: 5.8in;
    max-width: 100%;
    margin: 0 auto;
    padding: 0.12in 0.16in;
    box-shadow: none !important;
    border: 1px solid #111;
    border-radius: 0.08in;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-kicker {
    font-size: 18pt;
    margin-bottom: 0.08in;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-stem {
    justify-content: center;
  }

  body:has(.itinerary-page) .itinerary-print-logo .stem-letter {
    width: 0.55in;
    height: 0.66in;
    font-size: 28pt;
    border-width: 2px;
    box-shadow: 3px 3px 0 #111;
  }

  body:has(.itinerary-page) .itinerary-print-logo .stem-day {
    font-size: 22pt;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-conference {
    font-size: 24pt;
    margin-top: 0.05in;
  }

  body:has(.itinerary-page) .calendar-grid {
    position: absolute;
    top: 1.8in;
    left: 50%;
    transform: translateX(-50%);
    width: 7.55in;
    max-width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  body:has(.itinerary-page) .calendar-grid::before {
    display: none !important;
  }

  body:has(.itinerary-page) .cal-day {
    box-shadow: none !important;
    border: 1px solid #000;
    border-radius: 0;
    break-inside: avoid;
    text-align: left;
  }

  body:has(.itinerary-page) .cal-session {
    background: #fff !important;
    border-left: 0;
    border-bottom: 1px solid #bbb;
    border-radius: 0;
    color: #000 !important;
    padding: 10px 0.16in;
  }

  body:has(.itinerary-page) .cal-time,
  body:has(.itinerary-page) .cal-workshop,
  body:has(.itinerary-page) .cal-presenter {
    color: #000 !important;
  }

  body:has(.itinerary-page) .itinerary-remove-form {
    display: none !important;
  }
}

.donors-card {
  text-align: center;
}

.donors-intro {
  font-size: 1.1rem;
}

.donors-thank-you {
  font-size: 2.4rem;
  color: var(--flyer-deep-red, #8f101f);
  letter-spacing: 0.05em;
  margin: 6px 0 12px;
}

.donors-subheading {
  margin-top: 26px;
  color: var(--flyer-deep-red, #8f101f);
}

.donors-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.donors-list li {
  padding: 4px 0;
  font-size: 1.05rem;
}

.donors-closing {
  margin-top: 22px;
  font-weight: 700;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 14px rgba(255, 145, 18, 1))
    drop-shadow(0 0 32px rgba(245, 93, 8, 0.78))
    drop-shadow(0 0 62px rgba(255, 173, 46, 0.5)) !important;
}

.home-static-photo {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home-about-card {
  box-shadow:
    0 0 14px rgba(255, 145, 18, 0.9),
    0 0 32px rgba(245, 93, 8, 0.62),
    0 0 58px rgba(255, 173, 46, 0.38),
    0 14px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 701px) and (max-height: 850px) {
  .home-about-card {
    transform: translate(24px, -220px);
  }

  .home-static-photo img {
    height: 160px;
  }

  .home-about-card .link-row {
    gap: 8px;
  }
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

@media (max-width: 600px) {
  .below-nav-logo {
    flex-wrap: wrap;
    justify-content: center;
  }

  .below-nav-logo .flyer-banner {
    transform: none;
  }
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

/* Phones and tablets: allow the homepage to scroll so nothing is cut off. */
@media (max-width: 1024px) {
  body:has(.home-page) {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  html:has(.home-page) {
    height: auto;
    overflow-y: auto;
  }

  .home-page {
    height: auto;
    min-height: calc(100vh - 55px);
    overflow: visible;
  }
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.cal-presenter {
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
}

.itinerary-print-logo {
  display: none;
}

@media print {
  @page {
    size: letter portrait;
    margin: 0.35in;
  }

  html:has(.itinerary-page),
  body:has(.itinerary-page) {
    background: #fff !important;
    color: #000 !important;
    height: auto !important;
    overflow: visible !important;
  }

  body:has(.itinerary-page) {
    margin: 0 !important;
    padding: 0 !important;
  }

  body:has(.itinerary-page) * {
    visibility: hidden !important;
  }

  body:has(.itinerary-page) .itinerary-page,
  body:has(.itinerary-page) .itinerary-container,
  body:has(.itinerary-page) .itinerary-print-logo,
  body:has(.itinerary-page) .calendar-grid {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .itinerary-page,
  body:has(.itinerary-page) .itinerary-container {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    border: 0 !important;
    overflow: visible !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo,
  body:has(.itinerary-page) .itinerary-print-logo * {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .calendar-grid,
  body:has(.itinerary-page) .calendar-grid * {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: 100%;
    text-align: center;
    margin: 0 auto 0.22in !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-banner {
    width: min(6.7in, 100%);
    max-width: 100%;
    margin: 0 auto;
    padding: 0.12in 0.16in;
    box-shadow: none !important;
    border: 1px solid #111;
    border-radius: 0.08in;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-kicker {
    font-size: 18pt;
    margin-bottom: 0.08in;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-stem {
    justify-content: center;
  }

  body:has(.itinerary-page) .itinerary-print-logo .stem-letter {
    width: 0.55in;
    height: 0.66in;
    font-size: 28pt;
    border-width: 2px;
    box-shadow: 3px 3px 0 #111;
  }

  body:has(.itinerary-page) .itinerary-print-logo .stem-day {
    font-size: 22pt;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-conference {
    font-size: 24pt;
    margin-top: 0.05in;
  }

  body:has(.itinerary-page) .calendar-grid {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  body:has(.itinerary-page) .calendar-grid::before {
    display: none !important;
  }

  body:has(.itinerary-page) .cal-day {
    width: 100% !important;
    box-shadow: none !important;
    border: 1px solid #000;
    border-radius: 0;
    break-inside: avoid;
    text-align: left;
  }

  body:has(.itinerary-page) .cal-session {
    background: #fff !important;
    border-left: 0;
    border-bottom: 1px solid #bbb;
    border-radius: 0;
    color: #000 !important;
    padding: 10px 0.16in;
  }

  body:has(.itinerary-page) .cal-time,
  body:has(.itinerary-page) .cal-workshop,
  body:has(.itinerary-page) .cal-presenter {
    color: #000 !important;
  }

  body:has(.itinerary-page) .itinerary-remove-form {
    display: none !important;
  }
}

.donors-card {
  text-align: center;
}

.donors-intro {
  font-size: 1.1rem;
}

.donors-thank-you {
  font-size: 2.4rem;
  color: var(--flyer-deep-red, #8f101f);
  letter-spacing: 0.05em;
  margin: 6px 0 12px;
}

.donors-subheading {
  margin-top: 26px;
  color: var(--flyer-deep-red, #8f101f);
}

.donors-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.donors-list li {
  padding: 4px 0;
  font-size: 1.05rem;
}

.donors-closing {
  margin-top: 22px;
  font-weight: 700;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 14px rgba(255, 145, 18, 1))
    drop-shadow(0 0 32px rgba(245, 93, 8, 0.78))
    drop-shadow(0 0 62px rgba(255, 173, 46, 0.5)) !important;
}

.home-static-photo {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home-about-card {
  box-shadow:
    0 0 14px rgba(255, 145, 18, 0.9),
    0 0 32px rgba(245, 93, 8, 0.62),
    0 0 58px rgba(255, 173, 46, 0.38),
    0 14px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 701px) and (max-height: 850px) {
  .home-about-card {
    transform: translate(24px, -220px);
  }

  .home-static-photo img {
    height: 160px;
  }

  .home-about-card .link-row {
    gap: 8px;
  }
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

@media (max-width: 600px) {
  .below-nav-logo {
    flex-wrap: wrap;
    justify-content: center;
  }

  .below-nav-logo .flyer-banner {
    transform: none;
  }
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

/* Phones and tablets: allow the homepage to scroll so nothing is cut off. */
@media (max-width: 1024px) {
  body:has(.home-page) {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  html:has(.home-page) {
    height: auto;
    overflow-y: auto;
  }

  .home-page {
    height: auto;
    min-height: calc(100vh - 55px);
    overflow: visible;
  }
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.cal-presenter {
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
}

.itinerary-print-logo {
  display: none;
}

@media print {
  @page {
    size: letter portrait;
    margin: 0.35in;
  }

  html:has(.itinerary-page),
  body:has(.itinerary-page) {
    background: #fff !important;
    color: #000 !important;
    height: auto !important;
    overflow: visible !important;
  }

  body:has(.itinerary-page) {
    margin: 0 !important;
    padding: 0 !important;
  }

  body:has(.itinerary-page) * {
    visibility: hidden !important;
  }

  body:has(.itinerary-page) .itinerary-page,
  body:has(.itinerary-page) .itinerary-container,
  body:has(.itinerary-page) .itinerary-print-logo,
  body:has(.itinerary-page) .calendar-grid {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .itinerary-page,
  body:has(.itinerary-page) .itinerary-container {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    border: 0 !important;
    overflow: visible !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo,
  body:has(.itinerary-page) .itinerary-print-logo * {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .calendar-grid,
  body:has(.itinerary-page) .calendar-grid * {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: 100%;
    text-align: center;
    margin: 0 auto 0.22in !important;
    transform: none !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-banner {
    width: min(6.2in, 100%);
    max-width: 100%;
    margin: 0 auto !important;
    padding: 0.12in 0.16in;
    box-shadow: none !important;
    border: 1px solid #111;
    border-radius: 0.08in;
    transform: none !important;
    overflow: hidden;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-kicker {
    font-size: 18pt;
    margin-bottom: 0.08in;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-stem {
    justify-content: center;
  }

  body:has(.itinerary-page) .itinerary-print-logo .stem-letter {
    width: 0.55in;
    height: 0.66in;
    font-size: 28pt;
    border-width: 2px;
    box-shadow: 3px 3px 0 #111;
  }

  body:has(.itinerary-page) .itinerary-print-logo .stem-day {
    font-size: 22pt;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-conference {
    font-size: 24pt;
    margin-top: 0.05in;
  }

  body:has(.itinerary-page) .calendar-grid {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  body:has(.itinerary-page) .calendar-grid::before {
    display: none !important;
  }

  body:has(.itinerary-page) .cal-day {
    width: 100% !important;
    box-shadow: none !important;
    border: 1px solid #000;
    border-radius: 0;
    break-inside: avoid;
    text-align: left;
  }

  body:has(.itinerary-page) .cal-session {
    background: #fff !important;
    border-left: 0;
    border-bottom: 1px solid #bbb;
    border-radius: 0;
    color: #000 !important;
    padding: 10px 0.16in;
  }

  body:has(.itinerary-page) .cal-time,
  body:has(.itinerary-page) .cal-workshop,
  body:has(.itinerary-page) .cal-presenter {
    color: #000 !important;
  }

  body:has(.itinerary-page) .itinerary-remove-form {
    display: none !important;
  }
}

.donors-card {
  text-align: center;
}

.donors-intro {
  font-size: 1.1rem;
}

.donors-thank-you {
  font-size: 2.4rem;
  color: var(--flyer-deep-red, #8f101f);
  letter-spacing: 0.05em;
  margin: 6px 0 12px;
}

.donors-subheading {
  margin-top: 26px;
  color: var(--flyer-deep-red, #8f101f);
}

.donors-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.donors-list li {
  padding: 4px 0;
  font-size: 1.05rem;
}

.donors-closing {
  margin-top: 22px;
  font-weight: 700;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 14px rgba(255, 145, 18, 1))
    drop-shadow(0 0 32px rgba(245, 93, 8, 0.78))
    drop-shadow(0 0 62px rgba(255, 173, 46, 0.5)) !important;
}

.home-static-photo {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home-about-card {
  box-shadow:
    0 0 14px rgba(255, 145, 18, 0.9),
    0 0 32px rgba(245, 93, 8, 0.62),
    0 0 58px rgba(255, 173, 46, 0.38),
    0 14px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 701px) and (max-height: 850px) {
  .home-about-card {
    transform: translate(24px, -220px);
  }

  .home-static-photo img {
    height: 160px;
  }

  .home-about-card .link-row {
    gap: 8px;
  }
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

@media (max-width: 600px) {
  .below-nav-logo {
    flex-wrap: wrap;
    justify-content: center;
  }

  .below-nav-logo .flyer-banner {
    transform: none;
  }
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

/* Phones and tablets: allow the homepage to scroll so nothing is cut off. */
@media (max-width: 1024px) {
  body:has(.home-page) {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  html:has(.home-page) {
    height: auto;
    overflow-y: auto;
  }

  .home-page {
    height: auto;
    min-height: calc(100vh - 55px);
    overflow: visible;
  }
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.cal-presenter {
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
}

.itinerary-print-logo {
  display: none;
}

@media print {
  @page {
    size: letter portrait;
    margin: 0.35in;
  }

  html:has(.itinerary-page),
  body:has(.itinerary-page) {
    background: #fff !important;
    color: #000 !important;
    height: auto !important;
    overflow: visible !important;
  }

  body:has(.itinerary-page) {
    margin: 0 !important;
    padding: 0 !important;
  }

  body:has(.itinerary-page) * {
    visibility: hidden !important;
  }

  body:has(.itinerary-page) .itinerary-page,
  body:has(.itinerary-page) .itinerary-container,
  body:has(.itinerary-page) .itinerary-print-logo,
  body:has(.itinerary-page) .calendar-grid {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .itinerary-page,
  body:has(.itinerary-page) .itinerary-container {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    border: 0 !important;
    overflow: visible !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo,
  body:has(.itinerary-page) .itinerary-print-logo * {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .calendar-grid,
  body:has(.itinerary-page) .calendar-grid * {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: 100%;
    text-align: center;
    margin: 0 auto 0.22in !important;
    transform: none !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-banner {
    width: min(6.2in, 100%);
    max-width: 100%;
    margin: 0 auto !important;
    padding: 0.12in 0.16in;
    box-sizing: border-box;
    box-shadow: none !important;
    border: 1px solid #111;
    border-radius: 0.08in;
    transform: none !important;
    overflow: hidden;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-kicker {
    font-size: 18pt;
    margin-bottom: 0.08in;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-stem {
    justify-content: center;
  }

  body:has(.itinerary-page) .itinerary-print-logo .stem-letter {
    width: 0.55in;
    height: 0.66in;
    font-size: 28pt;
    border-width: 2px;
    box-shadow: 3px 3px 0 #111;
  }

  body:has(.itinerary-page) .itinerary-print-logo .stem-day {
    font-size: 22pt;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-conference {
    font-size: 24pt;
    margin-top: 0.05in;
  }

  body:has(.itinerary-page) .calendar-grid {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
  }

  body:has(.itinerary-page) .calendar-grid::before {
    display: none !important;
  }

  body:has(.itinerary-page) .cal-day {
    width: 100% !important;
    box-sizing: border-box;
    box-shadow: none !important;
    border: 1px solid #000;
    border-radius: 0;
    break-inside: avoid;
    text-align: left;
  }

  body:has(.itinerary-page) .cal-session {
    background: #fff !important;
    border-left: 0;
    border-bottom: 1px solid #bbb;
    border-radius: 0;
    color: #000 !important;
    padding: 10px 0.16in;
  }

  body:has(.itinerary-page) .cal-time,
  body:has(.itinerary-page) .cal-workshop,
  body:has(.itinerary-page) .cal-presenter {
    color: #000 !important;
  }

  body:has(.itinerary-page) .itinerary-remove-form {
    display: none !important;
  }
}

.donors-card {
  text-align: center;
}

.donors-intro {
  font-size: 1.1rem;
}

.donors-thank-you {
  font-size: 2.4rem;
  color: var(--flyer-deep-red, #8f101f);
  letter-spacing: 0.05em;
  margin: 6px 0 12px;
}

.donors-subheading {
  margin-top: 26px;
  color: var(--flyer-deep-red, #8f101f);
}

.donors-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.donors-list li {
  padding: 4px 0;
  font-size: 1.05rem;
}

.donors-closing {
  margin-top: 22px;
  font-weight: 700;
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 14px rgba(255, 145, 18, 1))
    drop-shadow(0 0 32px rgba(245, 93, 8, 0.78))
    drop-shadow(0 0 62px rgba(255, 173, 46, 0.5)) !important;
}

.home-static-photo {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home-about-card {
  box-shadow:
    0 0 14px rgba(255, 145, 18, 0.9),
    0 0 32px rgba(245, 93, 8, 0.62),
    0 0 58px rgba(255, 173, 46, 0.38),
    0 14px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 701px) and (max-height: 850px) {
  .home-about-card {
    transform: translate(24px, -220px);
  }

  .home-static-photo img {
    height: 160px;
  }

  .home-about-card .link-row {
    gap: 8px;
  }
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

@media (max-width: 600px) {
  .below-nav-logo {
    flex-wrap: wrap;
    justify-content: center;
  }

  .below-nav-logo .flyer-banner {
    transform: none;
  }
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

/* Phones and tablets: allow the homepage to scroll so nothing is cut off. */
@media (max-width: 1024px) {
  body:has(.home-page) {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  html:has(.home-page) {
    height: auto;
    overflow-y: auto;
  }

  .home-page {
    height: auto;
    min-height: calc(100vh - 55px);
    overflow: visible;
  }
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.cal-presenter {
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
}

.itinerary-print-logo {
  display: none;
}

@media print {
  @page {
    size: letter portrait;
    margin: 0.35in;
  }

  html:has(.itinerary-page),
  body:has(.itinerary-page) {
    background: #fff !important;
    color: #000 !important;
    height: auto !important;
    overflow: visible !important;
  }

  body:has(.itinerary-page) {
    margin: 0 !important;
    padding: 0 !important;
  }

  body:has(.itinerary-page) * {
    visibility: hidden !important;
  }

  body:has(.itinerary-page) .itinerary-page,
  body:has(.itinerary-page) .itinerary-container,
  body:has(.itinerary-page) .itinerary-print-logo,
  body:has(.itinerary-page) .calendar-grid {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .itinerary-page,
  body:has(.itinerary-page) .itinerary-container {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    border: 0 !important;
    overflow: visible !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo,
  body:has(.itinerary-page) .itinerary-print-logo * {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .calendar-grid,
  body:has(.itinerary-page) .calendar-grid * {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: 100%;
    text-align: center;
    margin: 0 auto 0.22in !important;
    transform: none !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-banner {
    width: min(6.2in, 100%);
    max-width: 100%;
    margin: 0 auto !important;
    padding: 0.12in 0.16in;
    box-sizing: border-box;
    box-shadow: none !important;
    border: 1px solid #111;
    border-radius: 0.08in;
    transform: none !important;
    overflow: hidden;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-kicker {
    font-size: 18pt;
    margin-bottom: 0.08in;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-stem {
    justify-content: center;
  }

  body:has(.itinerary-page) .itinerary-print-logo .stem-letter {
    width: 0.55in;
    height: 0.66in;
    font-size: 28pt;
    border-width: 2px;
    box-shadow: 3px 3px 0 #111;
  }

  body:has(.itinerary-page) .itinerary-print-logo .stem-day {
    font-size: 22pt;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-conference {
    font-size: 24pt;
    margin-top: 0.05in;
  }

  body:has(.itinerary-page) .calendar-grid {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
  }

  body:has(.itinerary-page) .calendar-grid::before {
    display: none !important;
  }

  body:has(.itinerary-page) .cal-day {
    width: 100% !important;
    box-sizing: border-box;
    box-shadow: none !important;
    border: 1px solid #000;
    border-radius: 0;
    break-inside: avoid;
    text-align: left;
  }

  body:has(.itinerary-page) .cal-session {
    background: #fff !important;
    border-left: 0;
    border-bottom: 1px solid #bbb;
    border-radius: 0;
    color: #000 !important;
    padding: 10px 0.16in;
  }

  body:has(.itinerary-page) .cal-time,
  body:has(.itinerary-page) .cal-workshop,
  body:has(.itinerary-page) .cal-presenter {
    color: #000 !important;
  }

  body:has(.itinerary-page) .itinerary-remove-form {
    display: none !important;
  }
}

.donors-card {
  text-align: center;
}

.donors-intro {
  font-size: 1.1rem;
}

.donors-thank-you {
  font-size: 2.4rem;
  color: var(--flyer-deep-red, #8f101f);
  letter-spacing: 0.05em;
  margin: 6px 0 12px;
}

.donors-subheading {
  margin-top: 26px;
  color: var(--flyer-deep-red, #8f101f);
}

.donors-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.donors-list li {
  padding: 4px 0;
  font-size: 1.05rem;
}

.donors-closing {
  margin-top: 22px;
  font-weight: 700;
}

.parent-roundtable-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 61, 94, 0.22);
  border-radius: 10px;
  background: rgba(238, 248, 250, 0.96);
  color: #0f3d5e;
}

.parent-roundtable-callout strong,
.parent-roundtable-callout span {
  display: block;
}

.parent-roundtable-callout span {
  margin-top: 3px;
  color: #3c5968;
  font-size: 0.92rem;
}

@media (max-width: 700px) {
  .parent-roundtable-callout {
    align-items: stretch;
    flex-direction: column;
  }
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 14px rgba(255, 145, 18, 1))
    drop-shadow(0 0 32px rgba(245, 93, 8, 0.78))
    drop-shadow(0 0 62px rgba(255, 173, 46, 0.5)) !important;
}

.home-static-photo {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home-about-card {
  box-shadow:
    0 0 14px rgba(255, 145, 18, 0.9),
    0 0 32px rgba(245, 93, 8, 0.62),
    0 0 58px rgba(255, 173, 46, 0.38),
    0 14px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 701px) and (max-height: 850px) {
  .home-about-card {
    transform: translate(24px, -220px);
  }

  .home-static-photo img {
    height: 160px;
  }

  .home-about-card .link-row {
    gap: 8px;
  }
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

@media (max-width: 600px) {
  .below-nav-logo {
    flex-wrap: wrap;
    justify-content: center;
  }

  .below-nav-logo .flyer-banner {
    transform: none;
  }
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

/* Phones and tablets: allow the homepage to scroll so nothing is cut off. */
@media (max-width: 1024px) {
  body:has(.home-page) {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  html:has(.home-page) {
    height: auto;
    overflow-y: auto;
  }

  .home-page {
    height: auto;
    min-height: calc(100vh - 55px);
    overflow: visible;
  }
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.cal-presenter {
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
}

.itinerary-print-logo {
  display: none;
}

@media print {
  @page {
    size: letter portrait;
    margin: 0.35in;
  }

  html:has(.itinerary-page),
  body:has(.itinerary-page) {
    background: #fff !important;
    color: #000 !important;
    height: auto !important;
    overflow: visible !important;
  }

  body:has(.itinerary-page) {
    margin: 0 !important;
    padding: 0 !important;
  }

  body:has(.itinerary-page) * {
    visibility: hidden !important;
  }

  body:has(.itinerary-page) .itinerary-page,
  body:has(.itinerary-page) .itinerary-container,
  body:has(.itinerary-page) .itinerary-print-logo,
  body:has(.itinerary-page) .calendar-grid {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .itinerary-page,
  body:has(.itinerary-page) .itinerary-container {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    border: 0 !important;
    overflow: visible !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo,
  body:has(.itinerary-page) .itinerary-print-logo * {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .calendar-grid,
  body:has(.itinerary-page) .calendar-grid * {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: 100%;
    text-align: center;
    margin: 0 auto 0.22in !important;
    transform: none !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-banner {
    width: min(6.2in, 100%);
    max-width: 100%;
    margin: 0 auto !important;
    padding: 0.12in 0.16in;
    box-sizing: border-box;
    box-shadow: none !important;
    border: 1px solid #111;
    border-radius: 0.08in;
    transform: none !important;
    overflow: hidden;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-kicker {
    font-size: 18pt;
    margin-bottom: 0.08in;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-stem {
    justify-content: center;
  }

  body:has(.itinerary-page) .itinerary-print-logo .stem-letter {
    width: 0.55in;
    height: 0.66in;
    font-size: 28pt;
    border-width: 2px;
    box-shadow: 3px 3px 0 #111;
  }

  body:has(.itinerary-page) .itinerary-print-logo .stem-day {
    font-size: 22pt;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-conference {
    font-size: 24pt;
    margin-top: 0.05in;
  }

  body:has(.itinerary-page) .calendar-grid {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
  }

  body:has(.itinerary-page) .calendar-grid::before {
    display: none !important;
  }

  body:has(.itinerary-page) .cal-day {
    width: 100% !important;
    box-sizing: border-box;
    box-shadow: none !important;
    border: 1px solid #000;
    border-radius: 0;
    break-inside: avoid;
    text-align: left;
  }

  body:has(.itinerary-page) .cal-session {
    background: #fff !important;
    border-left: 0;
    border-bottom: 1px solid #bbb;
    border-radius: 0;
    color: #000 !important;
    padding: 10px 0.16in;
  }

  body:has(.itinerary-page) .cal-time,
  body:has(.itinerary-page) .cal-workshop,
  body:has(.itinerary-page) .cal-presenter {
    color: #000 !important;
  }

  body:has(.itinerary-page) .itinerary-remove-form {
    display: none !important;
  }
}

.donors-card {
  text-align: center;
}

.donors-intro {
  font-size: 1.1rem;
}

.donors-thank-you {
  font-size: 2.4rem;
  color: var(--flyer-deep-red, #8f101f);
  letter-spacing: 0.05em;
  margin: 6px 0 12px;
}

.donors-subheading {
  margin-top: 26px;
  color: var(--flyer-deep-red, #8f101f);
}

.donors-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.donors-list li {
  padding: 4px 0;
  font-size: 1.05rem;
}

.donors-closing {
  margin-top: 22px;
  font-weight: 700;
}

.parent-roundtable-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 61, 94, 0.22);
  border-radius: 10px;
  background: rgba(238, 248, 250, 0.96);
  color: #0f3d5e;
}

.parent-roundtable-callout strong,
.parent-roundtable-callout span {
  display: block;
}

.parent-roundtable-callout span {
  margin-top: 3px;
  color: #3c5968;
  font-size: 0.92rem;
}

.roundtable-student-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0;
  padding: 12px;
  border: 1px solid rgba(15, 61, 94, 0.22);
  border-radius: 10px;
  background: rgba(238, 248, 250, 0.72);
}

.roundtable-student-list legend {
  padding: 0 6px;
  color: #0f3d5e;
  font-weight: 800;
}

.roundtable-student-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #142f42;
  font-weight: 700;
}

.roundtable-student-option input {
  width: auto;
}

@media (max-width: 700px) {
  .parent-roundtable-callout {
    align-items: stretch;
    flex-direction: column;
  }
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 14px rgba(255, 145, 18, 1))
    drop-shadow(0 0 32px rgba(245, 93, 8, 0.78))
    drop-shadow(0 0 62px rgba(255, 173, 46, 0.5)) !important;
}

.home-static-photo {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home-about-card {
  box-shadow:
    0 0 14px rgba(255, 145, 18, 0.9),
    0 0 32px rgba(245, 93, 8, 0.62),
    0 0 58px rgba(255, 173, 46, 0.38),
    0 14px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 701px) and (max-height: 850px) {
  .home-about-card {
    transform: translate(24px, -220px);
  }

  .home-static-photo img {
    height: 160px;
  }

  .home-about-card .link-row {
    gap: 8px;
  }
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
}.roster-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
}

.roster-toolbar label {
  margin: 0;
  font-weight: 800;
}

.roster-toolbar select {
  min-width: min(420px, 100%);
}

.roster-email-form {
  display: inline-flex;
  margin: 0;
}

.roster-workshop.is-hidden-roster {
  display: none;
}

.roster-presenter {
  margin: -6px 0 12px;
  color: #334155;
}
/* Subtle staggered AAUW watermark texture for the page background. */
body {
  background-image:
    url("/media/logo_watermark_tile.png"),
    url("/media/logo_watermark_tile.png"),
    linear-gradient(135deg, #d9b85c 0%, #c79c4d 42%, #df6f2f 100%);
  background-size: 360px 185px, 360px 185px, auto;
  background-position: 0 0, 180px 92px, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.below-nav-logo {
  justify-content: flex-start;
  padding-left: 18px;
}

.below-nav-logo-svg {
  width: clamp(120px, 17vw, 180px);
  max-width: calc(100vw - 36px);
}

.home-strip-left {
  background: transparent;
}

.below-nav-logo .flyer-banner {
  transform: translateX(clamp(80px, 12vw, 150px));
}

@media (max-width: 600px) {
  .below-nav-logo {
    flex-wrap: wrap;
    justify-content: center;
  }

  .below-nav-logo .flyer-banner {
    transform: none;
  }
}

.navbar .weather-rotator-widget {
  flex: 0 0 88px;
  width: 88px;
  min-width: 0;
  margin-left: 0;
  padding: 4px 7px;
}

.navbar .weather-line {
  font-size: 0.52rem;
}

.navbar,
.site-header {
  padding-right: 12px;
}

.navbar > a,
.navbar > .nav-dropdown > .nav-dropdown-toggle {
  padding: 6px 5px;
  font-size: 0.82rem;
}

.navbar > .navbar-donate-link {
  width: 104px;
  min-width: 104px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar a.navbar-donate-link.navbar-donate-video-wrap {
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.navbar .navbar-donate-label {
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.navbar > .navbar-register-link {
  width: 96px;
  min-width: 96px;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.navbar-register-link {
  margin: 6px 4px;
  padding: 10px 14px !important;
  border: 1px solid #1e6f32 !important;
  border-radius: 8px;
  background: #2f9e44;
  color: #fff !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.navbar-register-link:hover,
.navbar-register-link:focus-visible {
  background: #268238 !important;
}

.home-register-btn {
  display: none;
}

.home-about-card {
  transform: translateY(-192px);
}

.site-footnote {
  left: auto;
  right: 10px;
  bottom: 8px;
  transform: none;
  max-width: min(420px, 85vw);
  text-align: right;
}

.site-footnote {
  position: fixed !important;
  top: auto !important;
  right: 10px !important;
  bottom: -100px !important;
  left: auto !important;
  display: block !important;
  z-index: 10000;
}

body:has(.home-page) {
  height: 100vh;
  overflow: hidden;
}

html:has(.home-page) {
  height: 100%;
  overflow: hidden;
}

.home-mission {
  display: block !important;
  position: fixed !important;
  top: 58%;
  right: calc(var(--paper-rip-width) + 14px);
  width: clamp(190px, 20vw, 300px);
  z-index: 35;
}

.home-mission p {
  color: rgba(78, 50, 35, 0.32);
  font-size: clamp(1.1rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  text-align: right;
  text-shadow:
    1px 1px 0 rgba(255, 242, 190, 0.26),
    -1px -1px 0 rgba(91, 52, 28, 0.12);
  transform: rotate(-3deg);
}

@media (max-width: 700px) {
  .home-mission {
    top: 62%;
    right: calc(var(--paper-rip-width) + 8px);
    width: min(190px, 40vw);
  }

  .home-mission p {
    font-size: clamp(0.85rem, 3.2vw, 1.15rem);
  }
}

.home-page {
  height: calc(100vh - 55px);
  min-height: 0;
  overflow: hidden;
}

/* Phones and tablets: allow the homepage to scroll so nothing is cut off. */
@media (max-width: 1024px) {
  body:has(.home-page) {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  html:has(.home-page) {
    height: auto;
    overflow-y: auto;
  }

  .home-page {
    height: auto;
    min-height: calc(100vh - 55px);
    overflow: visible;
  }
}

.home-right-photo-card {
  height: 155px;
  min-height: 155px;
}

.home-right-menu {
  padding: 10px;
  background: linear-gradient(180deg, rgba(25, 42, 58, 0.96) 0%, rgba(70, 96, 112, 0.94) 48%, rgba(222, 232, 232, 0.96) 100%);
  color: #fff;
}

.home-right-menu h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.15rem;
}

.home-right-menu p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  line-height: 1.2;
}

.home-right-menu nav {
  gap: 6px;
}

.home-right-menu nav a {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.15;
  color: #172735;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .home-right-menu {
    padding: 9px;
  }

  .home-right-menu nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget {
    flex-basis: 88px;
    width: 88px;
    margin-top: 0;
  }
}

.weather-radio-controls {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 4px;
}

.weather-radio-controls .weather-station-select,
.weather-radio-controls .weather-radio-toggle {
  min-width: 0;
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(7, 38, 64, 0.82);
  color: #f4fbff;
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1.1;
}

.weather-radio-controls .weather-station-select {
  width: 82px;
}

.weather-radio-controls .weather-radio-toggle {
  width: 38px;
  cursor: pointer;
}

.cal-presenter {
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
}

.itinerary-print-logo {
  display: none;
}

@media print {
  @page {
    size: letter portrait;
    margin: 0.35in;
  }

  html:has(.itinerary-page),
  body:has(.itinerary-page) {
    background: #fff !important;
    color: #000 !important;
    height: auto !important;
    overflow: visible !important;
  }

  body:has(.itinerary-page) {
    margin: 0 !important;
    padding: 0 !important;
  }

  body:has(.itinerary-page) * {
    visibility: hidden !important;
  }

  body:has(.itinerary-page) .itinerary-page,
  body:has(.itinerary-page) .itinerary-container,
  body:has(.itinerary-page) .itinerary-print-logo,
  body:has(.itinerary-page) .calendar-grid {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .itinerary-page,
  body:has(.itinerary-page) .itinerary-container {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    border: 0 !important;
    overflow: visible !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo,
  body:has(.itinerary-page) .itinerary-print-logo * {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .calendar-grid,
  body:has(.itinerary-page) .calendar-grid * {
    visibility: visible !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: 100%;
    text-align: center;
    margin: 0 auto 0.22in !important;
    transform: none !important;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-banner {
    width: min(6.2in, 100%);
    max-width: 100%;
    margin: 0 auto !important;
    padding: 0.12in 0.16in;
    box-sizing: border-box;
    box-shadow: none !important;
    border: 1px solid #111;
    border-radius: 0.08in;
    transform: none !important;
    overflow: hidden;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-kicker {
    font-size: 18pt;
    margin-bottom: 0.08in;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-stem {
    justify-content: center;
  }

  body:has(.itinerary-page) .itinerary-print-logo .stem-letter {
    width: 0.55in;
    height: 0.66in;
    font-size: 28pt;
    border-width: 2px;
    box-shadow: 3px 3px 0 #111;
  }

  body:has(.itinerary-page) .itinerary-print-logo .stem-day {
    font-size: 22pt;
  }

  body:has(.itinerary-page) .itinerary-print-logo .flyer-conference {
    font-size: 24pt;
    margin-top: 0.05in;
  }

  body:has(.itinerary-page) .calendar-grid {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
  }

  body:has(.itinerary-page) .calendar-grid::before {
    display: none !important;
  }

  body:has(.itinerary-page) .cal-day {
    width: 100% !important;
    box-sizing: border-box;
    box-shadow: none !important;
    border: 1px solid #000;
    border-radius: 0;
    break-inside: avoid;
    text-align: left;
  }

  body:has(.itinerary-page) .cal-session {
    background: #fff !important;
    border-left: 0;
    border-bottom: 1px solid #bbb;
    border-radius: 0;
    color: #000 !important;
    padding: 10px 0.16in;
  }

  body:has(.itinerary-page) .cal-time,
  body:has(.itinerary-page) .cal-workshop,
  body:has(.itinerary-page) .cal-presenter {
    color: #000 !important;
  }

  body:has(.itinerary-page) .itinerary-remove-form {
    display: none !important;
  }
}

.donors-card {
  text-align: center;
}

.donors-intro {
  font-size: 1.1rem;
}

.donors-thank-you {
  font-size: 2.4rem;
  color: var(--flyer-deep-red, #8f101f);
  letter-spacing: 0.05em;
  margin: 6px 0 12px;
}

.donors-subheading {
  margin-top: 26px;
  color: var(--flyer-deep-red, #8f101f);
}

.donors-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.donors-list li {
  padding: 4px 0;
  font-size: 1.05rem;
}

.donors-closing {
  margin-top: 22px;
  font-weight: 700;
}

.parent-roundtable-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 61, 94, 0.22);
  border-radius: 10px;
  background: rgba(238, 248, 250, 0.96);
  color: #0f3d5e;
}

.parent-roundtable-callout strong,
.parent-roundtable-callout span {
  display: block;
}

.parent-roundtable-callout span {
  margin-top: 3px;
  color: #3c5968;
  font-size: 0.92rem;
}

.roundtable-student-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0;
  padding: 12px;
  border: 1px solid rgba(15, 61, 94, 0.22);
  border-radius: 10px;
  background: rgba(238, 248, 250, 0.72);
}

.roundtable-student-list legend {
  padding: 0 6px;
  color: #0f3d5e;
  font-weight: 800;
}

.roundtable-student-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #142f42;
  font-weight: 700;
}

.roundtable-student-option input {
  width: auto;
}

@media (max-width: 700px) {
  .parent-roundtable-callout {
    align-items: stretch;
    flex-direction: column;
  }
}

.navbar .weather-rotator-widget {
  flex-basis: 140px;
  width: 140px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.site-header a.navbar-donate-link.navbar-donate-video-wrap {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  min-width: 148px;
  height: 40px;
  padding: 0 8px;
}

.site-header .navbar-donate-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.site-header .navbar-donate-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  line-height: 1.05;
  white-space: nowrap;
}

.home-center-carousel {
  box-shadow:
    0 0 18px rgba(255, 140, 24, 0.58),
    0 0 42px rgba(245, 104, 12, 0.34),
    0 0 78px rgba(255, 184, 64, 0.2);
}

.home-center-carousel-wrap {
  filter:
    drop-shadow(0 0 14px rgba(255, 145, 18, 1))
    drop-shadow(0 0 32px rgba(245, 93, 8, 0.78))
    drop-shadow(0 0 62px rgba(255, 173, 46, 0.5)) !important;
}

.home-static-photo {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home-about-card {
  box-shadow:
    0 0 14px rgba(255, 145, 18, 0.9),
    0 0 32px rgba(245, 93, 8, 0.62),
    0 0 58px rgba(255, 173, 46, 0.38),
    0 14px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 701px) and (max-height: 850px) {
  .home-about-card {
    transform: translate(24px, -220px);
  }

  .home-static-photo img {
    height: 160px;
  }

  .home-about-card .link-row {
    gap: 8px;
  }
}

.home-center-carousel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 149, 28, 0.34) 0%, rgba(255, 112, 14, 0.16) 52%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
  body[data-print-roster] .navbar,
  body[data-print-roster] .site-footnote,
  body[data-print-roster] .admin-nav-frame,
  body[data-print-roster] .admin-panel:not([data-panel="rosters"]),
  body[data-print-roster] .roster-toolbar {
    display: none !important;
  }

  body[data-print-roster] .admin-page,
  body[data-print-roster] .admin-shell,
  body[data-print-roster] .admin-content-frame,
  body[data-print-roster] .admin-panel[data-panel="rosters"] {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  body[data-print-roster] .roster-workshop.is-hidden-roster {
    display: none !important;
  }
}

.parent-roundtable-details {
  margin-top: -2px;
  padding: 12px 14px;
  border-left: 4px solid var(--flyer-deep-red);
  background: rgba(255, 253, 244, 0.72);
  color: #3d1f14;
  font-size: 0.82rem;
  line-height: 1.45;
}

.parent-roundtable-details strong { color: var(--flyer-deep-red); }
.parent-roundtable-details p { margin: 8px 0; }
.parent-roundtable-details p:first-child { margin-top: 6px; }
.parent-roundtable-details ul { margin: 6px 0 10px; padding-left: 18px; }


.parent-roundtable-page-details {
  margin: 24px 0;
  padding: 20px 22px;
  border-left: 5px solid var(--flyer-deep-red);
  background: rgba(255, 253, 244, 0.72);
  color: #3d1f14;
  line-height: 1.55;
}

.parent-roundtable-page-details h2,
.parent-roundtable-page-details h3 {
  color: var(--flyer-deep-red);
  margin-top: 0;
}

.parent-roundtable-page-details h3 {
  margin-top: 18px;
}

.parent-roundtable-page-details li {
  margin: 6px 0;
}


.donation-card h1 { margin-bottom: 10px; }
.donation-form fieldset { border: 1px solid var(--line); padding: 18px; margin: 24px 0; }
.donation-form legend { font-weight: 700; color: var(--flyer-deep-red); padding: 0 6px; }
.donation-options { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 20px; }
.donation-options label { display: inline-flex; align-items: center; gap: 7px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 6px; background: #fffdf8; font-weight: 700; cursor: pointer; }
.other-donation { display: grid; gap: 7px; max-width: 260px; font-weight: 700; }
.other-donation input { width: 100%; }


/* Shared weather and radio pill: keep it consistent on every page. */
.navbar .weather-rotator-widget,
.site-header .weather-rotator-widget {
  flex: 0 1 auto;
  width: max-content;
  max-width: min(380px, 36vw);
  min-width: 0;
  margin-left: auto;
  margin-right: 0;
  padding: 5px 8px;
  align-self: center;
}

.navbar,
.site-header {
  padding-right: 12px;
}

@media (max-width: 900px) {
  .navbar .weather-rotator-widget,
  .site-header .weather-rotator-widget {
    flex-basis: 100%;
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }
}


.account-database .table-wrap {
  overflow-x: auto;
  overflow-y: visible;
}

.account-database table {
  min-width: 1120px;
  table-layout: fixed;
}

.account-database th:nth-child(1),
.account-database td:nth-child(1) { width: 55px; }
.account-database th:nth-child(2),
.account-database td:nth-child(2),
.account-database th:nth-child(3),
.account-database td:nth-child(3) { width: 110px; }
.account-database th:nth-child(4),
.account-database td:nth-child(4) { width: 220px; }
.account-database th:nth-child(5),
.account-database td:nth-child(5) { width: 145px; }
.account-database th:nth-child(6),
.account-database td:nth-child(6) {
  width: 290px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}
.account-database th:nth-child(7),
.account-database td:nth-child(7) { width: 180px; }
.account-database th:nth-child(8),
.account-database td:nth-child(8) { width: 90px; }


@keyframes aauw-page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes aauw-page-fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

html.page-transition-ready body {
  animation: aauw-page-fade-in 260ms ease-out both;
}

html.page-transition-leaving body {
  animation: aauw-page-fade-out 180ms ease-in both;
}

@media (prefers-reduced-motion: reduce) {
  html.page-transition-ready body,
  html.page-transition-leaving body {
    animation: none;
  }
}
