/* ==========================================================================
   MCARC (W3LIF) — design system
   Replaces w3lif.css / responsive.css. Also restyles legacy classes still
   emitted by content/*.php|html (.BodyText, .obit_image, tables, etc.) so
   pages that weren't individually rewritten still inherit the new look.
   ========================================================================== */

:root {
  --color-primary: #1d3557;
  --color-primary-dark: #142944;
  --color-primary-light: #2c4a73;
  --color-accent: #e07a3f;
  --color-accent-dark: #c4632c;
  --color-bg: #f6f7f9;
  --color-surface: #ffffff;
  --color-text: #1c2331;
  --color-text-muted: #5a6472;
  --color-border: #e3e6ea;

  /* Status palette (fixed hues per club data-viz convention: good/warning/critical) */
  --color-status-good: #0ca30c;
  --color-status-good-bg: #e3f7e3;
  --color-status-good-text: #157a15;
  --color-status-warning: #fab219;
  --color-status-warning-bg: #fff4d9;
  --color-status-warning-text: #8a5a00;
  --color-status-critical: #d03b3b;
  --color-status-critical-bg: #fbe4e1;
  --color-status-critical-text: #a12f2f;

  --radius-sm: 6px;
  --radius-md: 12px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.10);

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --header-height: 72px;
  --content-max: 960px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img { max-width: 100%; height: auto; }
iframe { max-width: 100%; border: 0; }

a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover { color: var(--color-accent-dark); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--color-primary-dark);
  line-height: 1.25;
  margin: 0 0 0.6em;
}
h1 { font-size: 1.9rem; font-weight: 700; }
h2 { font-size: 1.4rem; font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin: 0 0 1em; }

ul, ol { padding-left: 1.25em; }

hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 1.5em 0;
}

/* Neutralize legacy inline/table borders so cards read as modern surfaces */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 0 1.5em;
}
table, table td, table th, table tr {
  border: none !important;
}
td, th {
  padding: 0.5rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

/* ---- Legacy content classes (kept so un-rewritten pages still modernize) ---- */
.BodyText {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  padding: 0;
  max-width: var(--content-max);
  margin: 0 auto 1.5em;
}

.obit_image {
  max-height: 220px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin: 0.5em 0;
}

.footer, .footer:hover {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: inherit;
  text-decoration: none;
}

/* ---- Layout ---- */
.site-main {
  max-width: var(--content-max);
  margin: 2rem auto;
  padding: 0 1.5rem 2rem;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}

/* ---- Header / Nav ---- */
.site-header {
  background: var(--color-primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-md);
}

.site-header__bar {
  max-width: 1200px;
  margin: 0 auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
  margin-right: auto;
}
.brand:hover { color: #fff; text-decoration: none; }

.brand__logo {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.brand__text strong {
  font-size: 1.05rem;
  font-weight: 700;
}
.brand__text small {
  font-size: 0.8rem;
  color: #cdd7e6;
}

.brand__badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand__badges img {
  height: 48px;
  width: auto;
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

.primary-nav {
  background: var(--color-primary-dark);
}

.nav-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 2px;
}

.nav-list li { margin: 0; }

.nav-list a {
  display: block;
  padding: 0.5rem 0.65rem;
  color: #e8edf5;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-list a:hover {
  background: var(--color-primary-light);
  color: #fff;
}

/* ---- Footer ---- */
.site-footer {
  border-top: 3px solid var(--color-border);
  background: var(--color-surface);
  margin-top: 3rem;
  padding: 1.5rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
.site-footer a { color: var(--color-primary); }

/* ---- Officer components ---- */
.officer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
  align-items: start;
}

.officer-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  min-width: 0;
}

.officer-card__photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--color-bg);
}

.officer-card > div {
  min-width: 0;
  flex: 1 1 auto;
}

.officer-card__position {
  margin: 0 0 0.25em;
  color: var(--color-accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  overflow-wrap: break-word;
}

.officer-card__name {
  margin: 0 0 0.4em;
  font-weight: 600;
  font-size: 1.05rem;
  overflow-wrap: break-word;
}

.officer-card p {
  margin: 0 0 0.2em;
  font-size: 0.92rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.officer-history { margin: 2rem 0; }
.officer-history__title { text-align: center; }
.officer-history__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.officer-history__list li {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  text-align: center;
}
.officer-history__list a {
  display: block;
  padding: 0.6rem 1rem;
}

/* ---- Memorial / Silent Keys page ---- */
.memorial-list, .pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  margin: 1.5rem 0 2rem;
}
.memorial-list li, .pill-list li { margin: 0; }
.memorial-list a, .pill-list a {
  display: block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
}
.memorial-list a:hover, .pill-list a:hover {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

.memorial-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  margin: 0 0 1.75rem;
  scroll-margin-top: calc(var(--header-height) + 60px);
}

.memorial-card__media {
  flex: 0 0 160px;
}
.memorial-card__media .obit_image {
  width: 160px;
  height: 160px;
  max-height: none;
  object-fit: cover;
  margin: 0;
}

.memorial-card__body { min-width: 0; flex: 1 1 auto; }

.memorial-card__name {
  margin: 0 0 0.75em;
}
.memorial-card__years {
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 0.95rem;
}

.memorial-card__source {
  margin: 0.75em 0 0;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .memorial-card { flex-direction: column; align-items: center; text-align: center; }
  .memorial-card__body { text-align: left; }
}

/* ---- Buttons / CTA ---- */
.btn {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.btn:hover { background: var(--color-accent-dark); color: #fff; text-decoration: none; }

/* ---- Responsive ---- */
@media (max-width: 800px) {
  .brand__badges { display: none; }
  .nav-toggle { display: flex; }

  .primary-nav {
    display: none;
  }
  .primary-nav.is-open { display: block; }

  .nav-list { flex-direction: column; padding: 0; }
  .nav-list a { padding: 0.9rem 1.5rem; }
}

@media (min-width: 801px) {
  .primary-nav { display: block !important; }
}

/* ---- Home page notice / announcement ---- */
.home-notice {
  max-width: var(--content-max);
  margin: 1.5rem auto 0;
  padding: 1rem 1.25rem;
  background: var(--color-status-warning-bg);
  border: 1px solid var(--color-status-warning);
  border-left: 4px solid var(--color-status-warning);
  border-radius: var(--radius-sm);
  color: var(--color-status-warning-text);
  font-size: 1.05rem;
  line-height: 1.5;
  text-align: center;
}

.home-notice strong { color: var(--color-status-warning-text); }

/* ---- Home page CTAs (join/renew, zoom) ---- */
.home-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.home-cta__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--color-primary);
  border: 1px solid var(--color-primary-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1.1rem 1.5rem;
  flex: 1 1 260px;
  max-width: 340px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.home-cta__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(29, 53, 87, 0.35);
  background: var(--color-primary-dark);
  color: #fff;
  text-decoration: none;
}

.home-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  flex-shrink: 0;
}
.home-cta__icon svg { width: 24px; height: 24px; }

.home-cta__text { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.home-cta__text strong { color: #fff; font-size: 1.05rem; }
.home-cta__text small { color: #cdd7e6; font-size: 0.85rem; }

/* ---- Home page newsletter embed ---- */
.newsletter-frame {
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.newsletter-frame iframe {
  display: block;
  width: 100%;
  height: 800px;
  border: 0;
}
@media (max-width: 700px) {
  .newsletter-frame iframe { height: 480px; }
}
.newsletter-frame__footer {
  text-align: center;
  padding: 0.6rem 1rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
  font-size: 0.85rem;
}
.newsletter-frame__footer a { color: var(--color-primary); font-weight: 600; }

/* ---- Home page recent newsletter photos ---- */
.home-photos {
  max-width: 640px;
  margin: 2rem auto 0;
}
.home-photos__heading {
  text-align: center;
  margin: 0 0 1rem;
}
.home-photos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}
.home-photos__item {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.home-photos__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.home-photos__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-photos__footer {
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.9rem;
}
.home-photos__footer a { color: var(--color-primary); font-weight: 600; }

/* ---- Membership renewal form ---- */
.renewal-title {
  text-align: center;
}

.renewal-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.renewal-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
}
.renewal-field span { font-size: 0.92rem; color: var(--color-text); }
.renewal-field input[type="text"],
.renewal-field input[type="email"] {
  font: inherit;
  font-weight: 400;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: 100%;
}
.renewal-field input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
  border-color: var(--color-accent);
}

.renewal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.renewal-intro {
  font-weight: 400;
  color: var(--color-text-muted);
  margin: -0.5rem 0 0;
}

.renewal-plans {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.renewal-plans legend {
  font-weight: 700;
  color: var(--color-primary-dark);
  padding: 0 0 0.5rem;
  font-size: 1rem;
}

.plan-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.plan-option input[type="radio"] {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--color-accent);
  flex-shrink: 0;
}
.plan-option span { font-weight: 400; }
.plan-option:hover { border-color: var(--color-accent); }
.plan-option:has(input:checked) {
  border-color: var(--color-accent);
  background: rgba(224, 122, 63, 0.08);
}

.renewal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}
.renewal-row input[type="number"] {
  width: 4.5rem;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 400;
}

.renewal-amount-input {
  width: 4.5rem;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  font-weight: 700;
  color: var(--color-text);
}

.renewal-total {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-weight: 600;
}

.renewal-grandtotal-input {
  width: 6rem;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
}

.renewal-submit {
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
}
.renewal-submit input[type="image"] {
  height: auto;
  max-width: 100%;
}

.overlay {
  visibility: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 320px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  text-align: center;
  z-index: 1000;
}
.overlay p {
  margin: 0 0 1rem;
  font-weight: 600;
  color: var(--color-text);
}
.overlay__actions {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.overlay input[type="button"] {
  font: inherit;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  cursor: pointer;
}
.overlay input[type="button"]:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

@media (max-width: 600px) {
  .renewal-total { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ---- Membership roster ---- */
.roster-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.roster-stat {
  flex: 1 1 160px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.25rem;
  text-align: center;
}
.roster-stat__value {
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.2;
}
.roster-stat__label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.roster-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.roster-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.roster-legend__swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.roster-table-wrap, .data-table-wrap {
  overflow-x: auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.roster-table, .data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  min-width: 420px;
}
.roster-table th, .data-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  border-bottom: 2px solid var(--color-border);
}
.roster-table td, .data-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--color-border);
}
.roster-table tr:last-child td, .data-table tr:last-child td { border-bottom: none; }
.roster-table tbody tr:nth-child(even), .data-table tbody tr:nth-child(even) { background: var(--color-bg); }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}
.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-pill--good {
  background: var(--color-status-good-bg);
  color: var(--color-status-good-text);
}
.status-pill--good::before { background: var(--color-status-good); }
.status-pill--warning {
  background: var(--color-status-warning-bg);
  color: var(--color-status-warning-text);
}
.status-pill--warning::before { background: var(--color-status-warning); }
.status-pill--critical {
  background: var(--color-status-critical-bg);
  color: var(--color-status-critical-text);
}
.status-pill--critical::before { background: var(--color-status-critical); }

.roster-meta {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-align: right;
}

.roster-unavailable {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  color: var(--color-text-muted);
}

/* ---- Content page components (repeater, meeting, mailing, links, nets, emcomm) ---- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
  align-items: start;
}

.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem 1.5rem;
}
.info-card__title { margin: 0 0 0.6rem; }
.info-card__freq {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 0.7rem;
}
.info-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.info-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.info-card__list small { display: block; color: var(--color-text-muted); }

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-primary-dark);
}

.callout {
  max-width: 420px;
  margin: 1.5rem auto;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1.1rem 1.5rem;
  text-align: center;
}
.callout__label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #cdd7e6;
  margin-bottom: 0.25rem;
}
.callout__value { display: block; font-size: 1.8rem; font-weight: 700; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.checklist li {
  position: relative;
  padding-left: 1.75rem;
}
.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-status-good);
  font-weight: 700;
}

.meeting-location {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 1.5rem;
}
.meeting-location__info {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.meeting-location__info h3 { margin-bottom: 0.35rem; }
.meeting-location__info p { margin: 0; color: var(--color-text-muted); }
.meeting-location__map {
  flex: 2 1 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.meeting-location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
}
