/* SEAMUN I — White & navy */
:root {
  --bg: #ffffff;
  --bg-alt: #f5f6f8;
  --text: #001f3f;
  --text-muted: #3d5a80;
  --border: #d4dce8;
  --primary: #001f3f;
  --primary-hover: #002d5c;
  --accent: #002d5c;
  --accent-hover: #001f3f;
  --navy: #001f3f;
  --navy-light: #002d5c;
  --container: min(1120px, 100vw - 2rem);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
}

.logo-text {
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--text);
}

.btn-header {
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--bg) !important;
  border-radius: 6px;
  font-size: 0.9rem;
}

.btn-header:hover {
  background: var(--primary-hover);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.25rem;
  align-items: center;
  justify-content: center;
}

.nav-dropdown {
  display: none;
  flex-direction: column;
  padding: 1rem;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.nav-dropdown a {
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-dropdown[hidden] {
    display: none !important;
  }
  .nav-dropdown:not([hidden]) {
    display: flex;
  }
}

/* Hero */
.hero {
  padding: 4rem 0 5rem;
  text-align: center;
  background: var(--bg);
}

.hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.hero-badge {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.hero-tagline {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.hero-audience {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-alt);
  border-color: var(--text-muted);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.about-card {
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.about-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.meta-row span {
  flex: 1 1 200px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.schedule-ics {
  color: var(--primary);
  font-weight: 600;
}

.schedule-ics:hover {
  text-decoration: underline;
}

/* Schedule */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.schedule-day-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.schedule-list {
  list-style: none;
}

.schedule-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.schedule-list li:last-child {
  border-bottom: none;
}

.schedule-time {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--text);
  min-width: 3.5rem;
}

/* Home page committee cards (official logos + committee colors) */
.home-committee-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.home-committee-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 1.25rem;
  background: var(--navy);
  color: var(--bg);
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.home-committee-card:hover {
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.home-committee-card:focus {
  outline: 2px solid var(--bg);
  outline-offset: 2px;
}

.home-committee-logo {
  height: 72px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

.home-committee-logo-full {
  max-width: 130px;
  height: 80px;
}

.home-committee-card:hover .home-committee-logo {
  opacity: 1;
}

.home-committee-name {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.home-committee-info {
  font-size: 0.8rem;
  opacity: 0.9;
  line-height: 1.3;
}

/* Committee-specific colors (from official logos) */
.home-committee-ecosoc { background: #1e5f74; }
.home-committee-ecosoc:hover { background: #256d85; }

.home-committee-press { background: #0891b2; }
.home-committee-press:hover { background: #0e7490; }

.home-committee-unhrc { background: #1d4ed8; }
.home-committee-unhrc:hover { background: #2563eb; }

.home-committee-unodc { background: #1e40af; }
.home-committee-unodc:hover { background: #2563eb; }

.home-committee-unsc { background: #0369a1; }
.home-committee-unsc:hover { background: #0284c7; }

.home-committee-unwomen { background: #6d28d9; }
.home-committee-unwomen:hover { background: #7c3aed; }

.home-committee-disec { background: #1e3a5f; }
.home-committee-disec:hover { background: #1e40af; }

.home-committee-fwc { background: #1c1917; }
.home-committee-fwc:hover { background: #292524; }

.home-committee-interpol { background: #1e40af; }
.home-committee-interpol:hover { background: #2563eb; }

.home-committee-who { background: #0f766e; }
.home-committee-who:hover { background: #0d9488; }

/* Leadership */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.leadership-card {
  padding: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.leadership-card .role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.leadership-card .name {
  font-weight: 600;
  font-size: 1rem;
}

.leadership-card a {
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
  word-break: break-all;
}

.leadership-card a:hover {
  text-decoration: underline;
}

/* Contact */
.contact-lead {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-email {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 560px;
}

.contact-note a {
  color: var(--accent);
  text-decoration: none;
}

.contact-note a:hover {
  text-decoration: underline;
}

/* Sponsors page */
.sponsors-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
}

.sponsor-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.sponsor-tier {
  padding: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.sponsor-tier h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.sponsor-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.sponsor-tier ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.sponsor-tier li {
  margin-bottom: 0.35rem;
}

.sponsor-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.sponsor-purposes {
  margin: 0 0 2rem;
  padding-left: 1.25rem;
  max-width: 640px;
}

.sponsor-purposes li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--bg);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  height: 36px;
  width: auto;
  opacity: 0.8;
}

.footer-tagline {
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Help icons & popovers */
.help-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  vertical-align: middle;
}

.help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15em;
  height: 1.15em;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.help-icon:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.help-icon[aria-expanded="true"] {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.help-popover {
  position: absolute;
  z-index: 50;
  max-width: 320px;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text);
  text-align: left;
}

.help-popover[hidden] {
  display: none !important;
}

.help-popover .help-popover-title {
  font-weight: 700;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.help-popover p {
  margin: 0 0 0.5rem;
}

.help-popover p:last-child {
  margin-bottom: 0;
}

.help-popover ul {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
}

.help-popover li {
  margin-bottom: 0.2rem;
}

.help-popover a {
  color: var(--accent);
  text-decoration: none;
}

.help-popover a:hover {
  text-decoration: underline;
}

.header-help .help-icon {
  width: 22px;
  height: 22px;
  font-size: 0.7rem;
}

.help-trigger {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.help-trigger:hover {
  color: var(--accent);
}

/* Announcement bar */
.announcement {
  background: var(--primary);
  color: var(--bg);
  padding: 0.6rem 0;
  font-size: 0.9rem;
}

.announcement[hidden] {
  display: none !important;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.announcement-text {
  margin: 0;
}

.announcement-cta {
  color: var(--bg);
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
}

.announcement-cta:hover {
  opacity: 0.9;
}

.announcement-close {
  background: transparent;
  border: none;
  color: var(--bg);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  opacity: 0.85;
}

.announcement-close:hover {
  opacity: 1;
}

/* Modal */
body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none !important;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: var(--bg);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
}

.modal-dialog-lg {
  max-width: 520px;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-close:hover {
  background: var(--border);
  color: var(--text);
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-right: 2rem;
}

.modal-form-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.modal-form .modal-form-actions {
  margin-top: 1.25rem;
}

.modal-form label {
  display: block;
  margin-bottom: 1rem;
}

.modal-form label span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.modal-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.form-embed-wrap {
  margin-top: 0.5rem;
}

.form-embed {
  width: 100%;
  min-height: 400px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.contact-form-btn {
  margin-left: 0;
  margin-bottom: 1rem;
}

/* Committees page */
.page-title-wrap {
  padding: 2.5rem 0 1.5rem;
}

.page-title-wrap .section-title {
  margin-bottom: 0.5rem;
}

.page-title-wrap .section-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

.committee-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.filter-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 0.25rem;
}

.filter-btn {
  padding: 0.4rem 0.75rem;
  font-family: var(--font);
  font-size: 0.875rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-muted);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.filter-btn:hover {
  background: var(--bg-alt);
  color: var(--text);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg);
}

.committee-grid {
  display: grid;
  gap: 1.25rem;
}

.committee-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  scroll-margin-top: 5rem;
  border-left: 4px solid var(--primary);
}

.committee-card-emblem {
  flex-shrink: 0;
  width: 260px;
  min-width: 200px;
  min-height: 200px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.committee-card-emblem-img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: contain;
}

.committee-card-emblem-full {
  min-height: 100px;
}

@media (max-width: 640px) {
  .committee-card {
    flex-direction: column;
    align-items: center;
  }
  .committee-card-emblem {
    width: 140px;
    min-height: 140px;
    align-self: center;
  }
}

.committee-card-body {
  flex: 1;
  min-width: 0;
}

.committee-card .committee-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.committee-card-logo {
  height: 56px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.committee-card-logo-full {
  max-width: 140px;
}

/* Committee card accent colors */
.committee-card-ecosoc { border-left-color: #1e5f74; }
.committee-card-press { border-left-color: #0891b2; }
.committee-card-unhrc { border-left-color: #1d4ed8; }
.committee-card-unodc { border-left-color: #1e40af; }
.committee-card-unsc { border-left-color: #0369a1; }
.committee-card-unwomen { border-left-color: #6d28d9; }
.committee-card-disec { border-left-color: #1e3a5f; }
.committee-card-fwc { border-left-color: #b91c1c; }
.committee-card-interpol { border-left-color: #1e40af; }
.committee-card-who { border-left-color: #0f766e; }

.committee-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.committee-type {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.committee-header .committee-name-wrap {
  flex: 1;
  min-width: 0;
}

.committee-header .committee-name-wrap h3 {
  display: inline;
  margin-bottom: 0;
}

.committee-header .committee-name-wrap .committee-type {
  display: inline;
  margin-left: 0.35em;
}

.committee-header .committee-name-wrap .committee-type::before {
  content: "— ";
  color: var(--text-muted);
}

.committee-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.committee-tags .tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  background: var(--bg-alt);
  border-radius: 4px;
  color: var(--text-muted);
}

.committee-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.committee-topics {
  list-style: none;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.committee-topics li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}

.committee-topics li:last-child {
  border-bottom: none;
}

.committee-topic-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.committee-topic-note a {
  color: var(--accent);
  text-decoration: none;
}

.committee-topic-note a:hover {
  text-decoration: underline;
}

.topic-emoji {
  flex-shrink: 0;
}

.difficulty-tag {
  font-size: 0.7rem;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: var(--bg-alt);
  color: var(--text-muted);
  margin-left: auto;
}

.committee-allocations summary {
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--accent);
}

.committee-allocations summary:hover {
  text-decoration: underline;
}

.allocation-list {
  list-style: none;
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.universe-item {
  flex-direction: column !important;
  gap: 0.25rem !important;
}

.universe-title {
  font-weight: 600;
  color: var(--text);
}

.topic-line {
  padding-left: 1.25rem;
}

.back-to-top-wrap {
  margin-top: 2rem;
  text-align: center;
}

.committee-back-wrap {
  margin-bottom: 1rem;
}

.committee-back {
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.committee-back:hover {
  text-decoration: underline;
}

.committee-card-single {
  min-height: 280px;
}

.committee-card-single .committee-single-title {
  font-size: 1.5rem;
  margin-bottom: 0;
  display: inline;
}

.committee-card-single .committee-name-wrap .committee-type {
  display: inline;
  margin-left: 0.35em;
}

.committee-card-single .committee-name-wrap .committee-type::before {
  content: "— ";
  color: var(--text-muted);
}

.back-to-top {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
}

.back-to-top:hover {
  color: var(--text);
}
