/* REAVC calendar widget styles — parity subset of public_html/css/style.css
   (CSS variables resolved to literals; scoped to the JS-rendered calendar
   widget classes so nothing leaks into Elementor content). */

/* ========== Upcoming Events Widget ========== */
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  width: 100%;
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #2D3748;
}
.upcoming-grid a.upcoming-card {
  display: flex;
  gap: 24px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-left-width: 6px;
  border-radius: 12px;
  padding: 32px;
  text-decoration: none;
  color: #2D3748;
  transition: all 0.3s ease;
}
.upcoming-grid a.upcoming-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px rgba(0,0,0,0.15);
  border-color: #C9A227;
  color: #1E3A5F;
}
.upcoming-card--luncheon { border-left-color: #C9A227; }
.upcoming-card--board { border-left-color: #1E3A5F; }
.upcoming-card--deadline { border-left-color: #C05621; }
.upcoming-card--newsletter { border-left-color: #2C7A7B; }

.upcoming-card__date {
  flex: 0 0 72px;
  background: #F7FAFC;
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.upcoming-card__month {
  font-size: 13px;
  font-weight: 700;
  color: #C9A227;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.upcoming-card__day {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: #1E3A5F;
  line-height: 1;
  margin: 2px 0;
}
.upcoming-card__weekday {
  font-size: 12px;
  color: #718096;
  text-transform: uppercase;
  font-weight: 600;
}
.upcoming-card__body { flex: 1; min-width: 0; }
.upcoming-grid .upcoming-card__body h3 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 6px;
  color: #1E3A5F;
}
.upcoming-grid .upcoming-card__body p {
  font-size: 14px;
  color: #718096;
  margin: 0 0 8px;
  line-height: 1.5;
}
.upcoming-card__rsvp {
  display: inline-block;
  background: #FFFAF0;
  border: 1px solid #C05621;
  color: #C05621;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}
.upcoming-card__link {
  font-size: 13px;
  font-weight: 700;
  color: #2C7A7B;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.upcoming-card:hover .upcoming-card__link { color: #1E3A5F; }

/* ========== Category badges (shared) ========== */
.cal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.cal-badge--luncheon { background: #C9A227; color: #1E3A5F; }
.cal-badge--board { background: #1E3A5F; color: #FFFFFF; }
.cal-badge--deadline { background: #C05621; color: #FFFFFF; }
.cal-badge--newsletter { background: #2C7A7B; color: #FFFFFF; }

/* ========== Empty state ========== */
.cal-empty {
  text-align: center;
  padding: 48px;
  color: #718096;
  margin: 0;
  font-family: 'Source Sans Pro', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

/* Static responsive.css parity: cards stay row-layout on small screens */
@media (max-width: 768px) {
  .upcoming-grid a.upcoming-card { flex-direction: row; }
}

/* ============================================================
   Full calendar page chrome (calendar.html parity) — appended by
   the calendar/contact conversion. Scoped to the JS-rendered
   calendar roots: [data-cal-next-banner], [data-cal-page], .cal-details-panel.
   Base text/heading/link/.btn rules mirror style.css body/typography/button
   blocks (vars resolved) because Elementor pages do not load style.css.
   The scope group is wrapped in :where() (zero specificity) so these BASE
   rules stay weaker than the single-class cal-* rules below, exactly like
   the element-level base rules in style.css. Every selector in this file
   additionally gets a uniform body:not(.reavc-void) boost (see boost()) to
   beat the Elementor kit element rules, which load later.
   ============================================================ */
body:not(.reavc-void) [data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #2D3748;
}
body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) h2,
body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) h3,
body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) h4 {
  font-family: 'Merriweather', Georgia, serif;
  color: #1E3A5F;
  line-height: 1.25;
  margin: 0 0 24px;
  font-weight: 700;
}
body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) h3 { font-size: 24px; }
body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) h4 { font-size: 20px; }
body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) p { margin: 0 0 24px; }
body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) a {
  color: #2C7A7B; text-decoration: none; transition: all 0.3s ease;
}
body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) a:hover { color: #1E3A5F; }
body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) .btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.4;
}
body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) .btn--primary {
  background: #1E3A5F; color: #FFFFFF; border-color: #1E3A5F;
}
body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) .btn--primary:hover {
  background: #152B46; border-color: #152B46; color: #FFFFFF;
  transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) .btn--secondary {
  background: #C9A227; color: #1E3A5F; border-color: #C9A227;
}
body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) .btn--secondary:hover {
  background: #A8891E; border-color: #A8891E; color: #1E3A5F;
  transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) .btn--outline {
  background: transparent; color: #1E3A5F; border-color: #1E3A5F;
}
body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) .btn--outline:hover {
  background: #1E3A5F; color: #FFFFFF; transform: translateY(-2px);
}
body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) .btn-group {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}

/* Parity quirk: the static site has NO .sr-only rule, so the filters
   <legend class="sr-only"> renders as a normal visible fieldset legend.
   Elementor's frontend CSS DOES define .sr-only (visually hidden), which
   made the WP filters 30px shorter. Revert it inside the calendar scope. */
body:not(.reavc-void) :where([data-cal-page]) .sr-only {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  white-space: normal !important;
  border: 0 !important;
}

/* ========== Next Event Banner ========== */
body:not(.reavc-void) .cal-next-banner {
  display: flex;
  gap: 48px;
  align-items: stretch;
  background: linear-gradient(135deg, #F7FAFC 0%, #FFFFFF 100%);
  border-left: 6px solid #C9A227;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  margin-bottom: 48px;
}
body:not(.reavc-void) .cal-next-banner__countdown {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #1E3A5F;
  color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
}
body:not(.reavc-void) .cal-next-banner__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: #C9A227;
  margin-bottom: 8px;
}
body:not(.reavc-void) .cal-next-banner__when {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
}
body:not(.reavc-void) .cal-next-banner__content { flex: 1; min-width: 0; }
body:not(.reavc-void) .cal-next-banner__content h3 {
  font-size: 28px;
  margin-bottom: 8px;
}
body:not(.reavc-void) .cal-next-banner__date {
  font-size: 18px;
  color: #718096;
  margin-bottom: 16px;
  font-weight: 600;
}
body:not(.reavc-void) .cal-next-banner__rsvp {
  display: inline-block;
  background: #FFFAF0;
  border: 2px solid #C05621;
  color: #C05621;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 15px;
  margin: 8px 0 16px;
}
body:not(.reavc-void) .cal-next-banner__rsvp i { margin-right: 6px; }

/* ========== Calendar Controls ========== */
body:not(.reavc-void) .cal-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  margin-bottom: 32px;
}
body:not(.reavc-void) .cal-controls__group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
body:not(.reavc-void) .cal-controls__title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #1E3A5F;
  margin: 0 24px;
  min-width: 180px;
  text-align: center;
}
body:not(.reavc-void) .cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1E3A5F;
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 44px;
}
body:not(.reavc-void) .cal-btn:hover {
  border-color: #C9A227;
  background: #F7FAFC;
}
body:not(.reavc-void) .cal-btn.is-active {
  background: #1E3A5F;
  color: #FFFFFF;
  border-color: #1E3A5F;
}
body:not(.reavc-void) .cal-btn--icon {
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
  font-size: 18px;
}

/* Filter checkboxes */
body:not(.reavc-void) .cal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px;
  background: #F7FAFC;
  border-radius: 12px;
  margin-bottom: 32px;
}
body:not(.reavc-void) .cal-filter-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 600;
  color: #2D3748;
  user-select: none;
}
body:not(.reavc-void) .cal-filter-label:hover { border-color: #C9A227; }
body:not(.reavc-void) .cal-filter-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #1E3A5F;
}
body:not(.reavc-void) .cal-filter-label__swatch {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  display: inline-block;
}

/* ========== Month Grid ========== */
body:not(.reavc-void) .cal-month-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  background: #1E3A5F;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
body:not(.reavc-void) .cal-month-header__cell {
  padding: 16px 8px;
  text-align: center;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #1E3A5F;
}
body:not(.reavc-void) .cal-month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  background: #E2E8F0;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
body:not(.reavc-void) .cal-day {
  background: #FFFFFF;
  padding: 10px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  transition: background 0.2s ease;
}
body:not(.reavc-void) .cal-day:hover { background: #F7FAFC; }
body:not(.reavc-void) .cal-day--other {
  background: #FAFBFC;
  color: #CBD5E0;
}
body:not(.reavc-void) .cal-day--other .cal-day__number { color: #CBD5E0; }
body:not(.reavc-void) .cal-day--today {
  background: #FFFAF0;
  outline: 3px solid #C9A227;
  outline-offset: -3px;
}
body:not(.reavc-void) .cal-day__number {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #1E3A5F;
  display: flex;
  align-items: center;
  gap: 6px;
}
body:not(.reavc-void) .cal-day__today-label {
  font-size: 10px;
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #C9A227;
  color: #1E3A5F;
  padding: 2px 6px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
body:not(.reavc-void) .cal-day__events {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
body:not(.reavc-void) .cal-pill {
  display: block;
  width: 100%;
  padding: 6px 10px;
  border: none;
  border-radius: 8px;
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.3;
  min-height: 28px;
}
body:not(.reavc-void) .cal-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  filter: brightness(1.1);
}
body:not(.reavc-void) .cal-pill--luncheon { background: #C9A227; color: #1E3A5F; }
body:not(.reavc-void) .cal-pill--board { background: #1E3A5F; color: #FFFFFF; }
body:not(.reavc-void) .cal-pill--deadline { background: #C05621; color: #FFFFFF; }
body:not(.reavc-void) .cal-pill--newsletter { background: #2C7A7B; color: #FFFFFF; }
body:not(.reavc-void) .cal-pill__label {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ========== List View ========== */
body:not(.reavc-void) .cal-container--month #cal-month-view { display: block; }
body:not(.reavc-void) .cal-container--month #cal-list-view { display: none; }
body:not(.reavc-void) .cal-container--list #cal-month-view { display: none; }
body:not(.reavc-void) .cal-container--list #cal-list-view { display: block; }

body:not(.reavc-void) .cal-list-month { margin-bottom: 48px; }
body:not(.reavc-void) .cal-list-month__title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 28px;
  color: #1E3A5F;
  border-bottom: 3px solid #C9A227;
  padding-bottom: 12px;
  margin-bottom: 32px;
  display: inline-block;
}
body:not(.reavc-void) .cal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body:not(.reavc-void) .cal-list-item {
  display: flex;
  gap: 32px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-left-width: 6px;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}
body:not(.reavc-void) .cal-list-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
body:not(.reavc-void) .cal-list-item--luncheon { border-left-color: #C9A227; }
body:not(.reavc-void) .cal-list-item--board { border-left-color: #1E3A5F; }
body:not(.reavc-void) .cal-list-item--deadline { border-left-color: #C05621; }
body:not(.reavc-void) .cal-list-item--newsletter { border-left-color: #2C7A7B; }
body:not(.reavc-void) .cal-list-item__date {
  flex: 0 0 80px;
  background: #F7FAFC;
  border-radius: 8px;
  padding: 24px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body:not(.reavc-void) .cal-list-item__day {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: #1E3A5F;
  line-height: 1;
}
body:not(.reavc-void) .cal-list-item__weekday {
  font-size: 13px;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 4px;
}
body:not(.reavc-void) .cal-list-item__body { flex: 1; min-width: 0; }
body:not(.reavc-void) .cal-list-item__body h4 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #1E3A5F;
}
body:not(.reavc-void) .cal-list-item__body p {
  font-size: 16px;
  color: #2D3748;
  margin-bottom: 12px;
  line-height: 1.6;
}
body:not(.reavc-void) .cal-list-item__rsvp {
  display: inline-block;
  background: #FFFAF0;
  border: 1px solid #C05621;
  color: #C05621;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
body:not(.reavc-void) .cal-list-item__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
body:not(.reavc-void) .btn--sm {
  padding: 8px 16px;
  font-size: 14px;
}

/* ========== Legend ========== */
body:not(.reavc-void) .cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 24px;
  background: #F7FAFC;
  border-radius: 8px;
  margin-top: 32px;
}
body:not(.reavc-void) .cal-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #2D3748;
  font-weight: 600;
}
body:not(.reavc-void) .cal-legend__swatch {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  display: inline-block;
}
body:not(.reavc-void) .cal-legend__item--luncheon .cal-legend__swatch { background: #C9A227; }
body:not(.reavc-void) .cal-legend__item--board .cal-legend__swatch { background: #1E3A5F; }
body:not(.reavc-void) .cal-legend__item--deadline .cal-legend__swatch { background: #C05621; }
body:not(.reavc-void) .cal-legend__item--newsletter .cal-legend__swatch { background: #2C7A7B; }

/* ========== Event Details Panel ========== */
body:not(.reavc-void) .cal-details-panel {
  position: fixed;
  top: 0;
  right: -480px;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  padding: 64px 48px;
  overflow-y: auto;
  transition: right 0.3s ease;
  z-index: 1100;
}
body:not(.reavc-void) .cal-details-panel.is-open { right: 0; }
body:not(.reavc-void) .cal-details {
  position: relative;
  padding-top: 24px;
}
body:not(.reavc-void) .cal-details__close {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 44px;
  height: 44px;
  border: none;
  background: #F7FAFC;
  color: #1E3A5F;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}
body:not(.reavc-void) .cal-details__close:hover {
  background: #1E3A5F;
  color: #FFFFFF;
}
body:not(.reavc-void) .cal-details h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
body:not(.reavc-void) .cal-details__date,
body:not(.reavc-void) .cal-details__location {
  font-size: 16px;
  color: #2D3748;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
body:not(.reavc-void) .cal-details__date i,
body:not(.reavc-void) .cal-details__location i {
  color: #C9A227;
  margin-top: 4px;
  flex-shrink: 0;
}
body:not(.reavc-void) .cal-details__desc {
  font-size: 16px;
  color: #2D3748;
  margin: 24px 0;
  line-height: 1.7;
}
body:not(.reavc-void) .cal-details__rsvp {
  background: #FFFAF0;
  border: 2px solid #C05621;
  color: #C05621;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 24px;
}
body:not(.reavc-void) .cal-details__rsvp strong { display: block; margin-bottom: 2px; }


/* kit-parity: static buttons use UA line-height:normal (a.cal-btn inherits 1.7) */
body:not(.reavc-void) button.cal-btn { line-height: normal; }

/* Calendar mobile rules (style.css embedded media blocks) */
@media (max-width: 768px) {
  body:not(.reavc-void) .cal-next-banner {
    flex-direction: column;
    padding: 32px;
  }
  body:not(.reavc-void) .cal-next-banner__countdown {
    flex: none;
    padding: 24px;
  }
  body:not(.reavc-void) .cal-next-banner__when { font-size: 24px; }
  body:not(.reavc-void) .cal-next-banner__content h3 { font-size: 22px; }

  body:not(.reavc-void) .cal-month-grid {
    grid-template-columns: repeat(7, 1fr);
  }
  body:not(.reavc-void) .cal-day {
    min-height: 80px;
    padding: 6px;
  }
  body:not(.reavc-void) .cal-day__number { font-size: 14px; }
  body:not(.reavc-void) .cal-pill {
    font-size: 10px;
    padding: 3px 6px;
    min-height: 22px;
  }
  body:not(.reavc-void) .cal-pill__label {
    display: none;
  }
  body:not(.reavc-void) .cal-pill::before {
    content: '\2022';
    font-size: 16px;
  }

  body:not(.reavc-void) .cal-controls { flex-direction: column; align-items: stretch; }
  body:not(.reavc-void) .cal-controls__group { justify-content: center; }
  body:not(.reavc-void) .cal-controls__title { min-width: auto; }

  body:not(.reavc-void) .cal-list-item { flex-direction: column; gap: 24px; }
  body:not(.reavc-void) .cal-list-item__date { flex: none; flex-direction: row; justify-content: flex-start; gap: 16px; padding: 16px; }
  body:not(.reavc-void) .cal-list-item__day { font-size: 28px; }

  body:not(.reavc-void) .cal-details-panel {
    max-width: 100%;
    padding: 48px 24px;
  }

  body:not(.reavc-void) .upcoming-card { flex-direction: row; }
}

@media (max-width: 576px) {
  body:not(.reavc-void) .cal-day { min-height: 60px; }
  body:not(.reavc-void) .cal-month-header__cell { padding: 10px 4px; font-size: 12px; }
}

/* responsive.css parity: .btn-group stacks full-width at <=768 */
@media (max-width: 768px) {
  body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) .btn-group {
    flex-direction: column; align-items: stretch;
  }
  body:not(.reavc-void) :where([data-cal-next-banner],
body:not(.reavc-void) [data-cal-page],
body:not(.reavc-void) .cal-details-panel) .btn-group .btn {
    text-align: center;
  }
}

/* Print styles (calendar page parity subset of style.css @media print) */
@media print {
  body:not(.reavc-void) .header,
body:not(.reavc-void) .footer,
body:not(.reavc-void) .back-to-top,
body:not(.reavc-void) .cal-controls,
body:not(.reavc-void) .cal-filters,
body:not(.reavc-void) .cal-details-panel,
body:not(.reavc-void) .cta-split,
body:not(.reavc-void) .cta-banner,
body:not(.reavc-void) .breadcrumbs,
body:not(.reavc-void) .nav__toggle,
body:not(.reavc-void) [data-cal-ics],
body:not(.reavc-void) .cal-help-note,
body:not(.reavc-void) .btn-group {
    display: none !important;
  }
  body:not(.reavc-void) body { font-size: 12pt; color: #000; background: #FFF; }
  body:not(.reavc-void) .page-hero { background: none; color: #000; padding: 20pt 0; }
  body:not(.reavc-void) .page-hero h1 { color: #000; font-size: 24pt; }
  body:not(.reavc-void) .cal-next-banner { border: 2pt solid #000; background: none; box-shadow: none; }
  body:not(.reavc-void) .cal-next-banner__countdown { background: none; color: #000; border: 1pt solid #000; }
  body:not(.reavc-void) .cal-next-banner__when { color: #000; }
  body:not(.reavc-void) .cal-day { border: 1pt solid #000; background: #FFF !important; min-height: 60pt; }
  body:not(.reavc-void) .cal-pill {
    border: 1pt solid #000 !important;
    background: #FFF !important;
    color: #000 !important;
    page-break-inside: avoid;
  }
  body:not(.reavc-void) .cal-pill__label { display: block; }
  body:not(.reavc-void) .cal-month-header__cell { background: #000 !important; color: #FFF !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  body:not(.reavc-void) .cal-list-item { page-break-inside: avoid; border: 1pt solid #000; }
  body:not(.reavc-void) .cal-list-item__day { color: #000; }
  body:not(.reavc-void) main { padding: 0; }
  body:not(.reavc-void) section { padding: 12pt 0; }
}
