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

:root {
  --cream: #F5EDD8;
  --parchment: #EAD9B0;
  --dark-teal: #1C3A4A;
  --amber: #C8780A;
  --light-amber: #F2A024;
  --terracotta: #B84C26;
  --text: #2C1810;
  --fjord: #2B7A8C;
  --border: #C8A96E;
  --sage: #7A9E7E;
  --card-bg: rgba(255, 252, 245, 0.72);
}

body {
  font-family: 'Figtree', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.55;
}

nav {
  position: relative; z-index: 10;
  background: var(--cream);
  padding: 14px 36px; height: 140px;
  display: flex; align-items: center; justify-content: flex-end;
}
.nav-logo {
  position: absolute; top: 2px; left: 26px; z-index: 11;
  display: flex; align-items: center; text-decoration: none;
}
.nav-logo img { height: 210px; width: auto; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 20px;
  list-style: none; position: relative; z-index: 12;
}
.nav-links > li { display: flex; align-items: center; }
.nav-links a {
  display: inline-flex; align-items: center; line-height: 1;
  height: 40px; color: var(--dark-teal); text-decoration: none;
  font-size: 15px; font-weight: 500; opacity: .85; transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
.nav-ig {
  padding: 0;
  opacity: .85 !important;
}
.nav-ig:hover { opacity: 1 !important; }
.nav-ig svg { width: 18px; height: 18px; flex-shrink: 0; display: block; }
.apply-btn-nav {
  background: var(--amber); color: #fff !important;
  padding: 0 22px; border-radius: 20px; opacity: 1 !important;
  font-weight: 600 !important; transition: background .2s;
}
.apply-btn-nav:hover { background: var(--light-amber) !important; }
.apply-btn-nav.outline {
  background: transparent; color: var(--dark-teal) !important;
  border: 2px solid var(--border); padding: 0 20px;
}
.apply-btn-nav.outline:hover { background: rgba(28,58,74,.06) !important; }
.vote-btn-nav {
  background: transparent; color: inherit !important;
  padding: 0; border-radius: 0; opacity: .85 !important;
  font-weight: inherit !important;
}
.vote-btn-nav:hover { background: transparent !important; opacity: 1 !important; }
.vote-btn-nav .vote-label-short { display: none; }
.nav-life { gap: 8px; }

.country-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.section { margin-top: 56px; }

/* Vote page — focused step flow (mission → theme) */
.vote-how {
  margin-top: 32px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 0 18px;
  background: rgba(255, 255, 255, .45);
}
.vote-how > summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
  font-family: 'Figtree', system-ui, sans-serif;
}
.vote-how > summary::-webkit-details-marker { display: none; }
.vote-how-label {
  font-weight: 700;
  color: var(--dark-teal);
}
.vote-how-hint {
  font-size: .9rem;
  color: rgba(44, 24, 16, .55);
}
.vote-how[open] > summary {
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.vote-how .section-lead {
  margin-bottom: 16px;
}

.vote-focus {
  margin-top: 40px;
}
.vote-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.vote-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .55);
  color: var(--dark-teal);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.vote-tab:hover {
  border-color: rgba(28, 58, 74, .35);
}
.vote-tab.is-active {
  border-color: var(--dark-teal);
  background: #fff;
  box-shadow: 0 4px 18px rgba(28, 58, 74, .08);
}
.vote-tab.has-vote .vote-tab-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.vote-tab-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(28, 58, 74, .1);
  font-size: 12px;
  font-weight: 700;
}
.vote-tab.is-active .vote-tab-step {
  background: var(--dark-teal);
  color: #fff;
}
.vote-panel[hidden] {
  display: none !important;
}
.vote-panel h2 {
  margin-bottom: 10px;
}
.vote-panel .section-lead {
  margin-bottom: 22px;
}
.vote-next-hint {
  margin: 28px 0 0;
  text-align: center;
}
.vote-next-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  color: var(--fjord);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.vote-next-btn:hover { color: var(--dark-teal); }

.suggest-toggle {
  margin-top: 24px;
  border: 1.5px dashed var(--border);
  border-radius: 12px;
  padding: 0 16px;
  background: rgba(255, 255, 255, .35);
}
.suggest-toggle > summary {
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--dark-teal);
}
.suggest-toggle > summary::-webkit-details-marker { display: none; }
.suggest-toggle[open] {
  padding-bottom: 16px;
}
.suggest-toggle .suggest-lead {
  margin: 0 0 14px;
  font-size: .9rem;
  line-height: 1.45;
  color: rgba(44, 24, 16, .65);
}
.suggest-toggle .form-card {
  max-width: none;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.suggest-toggle .form-card textarea {
  height: 110px;
  min-height: 110px;
  max-height: 110px;
  resize: none;
}

.community-toggle {
  margin-bottom: 20px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0 16px;
  background: rgba(255, 255, 255, .5);
}
.community-toggle > summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
}
.community-toggle > summary::-webkit-details-marker { display: none; }
.community-summary-label {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(44, 24, 16, .55);
  flex: 1 1 auto;
}
.community-summary-action {
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  color: var(--fjord);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.community-toggle > summary:hover .community-summary-action {
  color: var(--dark-teal);
}
.community-collapse-btn {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, .7);
  color: var(--dark-teal);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.community-collapse-btn:hover {
  border-color: rgba(28, 58, 74, .35);
}
.community-toggle:not([open]) .community-collapse-btn {
  transform: rotate(-90deg);
}
.community-toggle[open] {
  padding-bottom: 16px;
}
.community-toggle.is-empty {
  display: none;
}

.ballot-section {
  margin-top: 8px;
}
.ballot-section.is-empty {
  display: none;
}
.ballot-heading {
  margin: 0 0 14px;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(44, 24, 16, .55);
}

.vote-more {
  margin-top: 48px;
  border-top: 2px solid var(--border);
  padding-top: 8px;
}
.vote-more > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  margin: 0 -4px;
  cursor: pointer;
  list-style: none;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--dark-teal);
  border-radius: 12px;
  border: 1.5px dashed transparent;
  transition: background .15s, border-color .15s;
}
.vote-more > summary:hover {
  background: rgba(44, 24, 16, .04);
  border-color: var(--border);
}
.vote-more > summary::-webkit-details-marker { display: none; }
.vote-more-label {
  flex: 1;
  min-width: 0;
}
.vote-more-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: rgba(255, 255, 255, .55);
  position: relative;
}
.vote-more-chevron::before {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--dark-teal);
  border-bottom: 2px solid var(--dark-teal);
  transform: translate(-50%, -60%) rotate(45deg);
  transition: transform .2s ease;
}
.vote-more[open] > summary {
  margin-bottom: 8px;
}
.vote-more[open] .vote-more-chevron::before {
  top: 55%;
  transform: translate(-50%, -50%) rotate(225deg);
}
.vote-more-grid {
  display: grid;
  gap: 28px;
  padding-bottom: 8px;
}
.vote-more-card h3 {
  margin: 0 0 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--dark-teal);
}
.vote-more-card h3 a {
  color: inherit;
  text-decoration: none;
}
.vote-more-card h3 a:hover { text-decoration: underline; }
.vote-more-card .section-lead,
.vote-more-card > p {
  margin: 0 0 16px;
  font-size: .95rem;
  line-height: 1.5;
  color: rgba(44, 24, 16, .7);
}
.vote-more-card .form-card {
  max-width: none;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.vote-more-card--compact .btn-primary {
  margin-top: 4px;
}

@media (min-width: 720px) {
  .vote-more-grid {
    grid-template-columns: 1fr 1fr;
  }
  #nominate {
    grid-column: 1 / -1;
  }
}

/* Legacy engage styles (country page) */
.engage-row {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 2px solid var(--border);
}
.engage-row-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 0;
  align-items: start;
}
.engage-side {
  display: grid;
  gap: 40px;
}
.engage-col.section {
  margin-top: 0;
}
.engage-col > .section-eyebrow {
  margin-bottom: 12px;
}
.engage-col .form-card,
.engage-col .ride-cta-card {
  width: 100%;
  max-width: none;
}
.engage-col .form-card > h2 {
  margin-bottom: 12px;
}
.engage-col .form-card > .section-lead {
  margin-bottom: 24px;
}

@media (min-width: 901px) {
  .country-wrap:has(.engage-row) {
    max-width: 1280px;
  }
  .engage-row-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  .engage-col .section-lead {
    font-size: 1rem;
  }
  .engage-col h2 {
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  }
  .engage-col .ride-cta-card {
    height: 100%;
  }
  .engage-col .newsletter-form-light .newsletter-form {
    max-width: none;
  }
}

.updates-instagram {
  margin-top: 12px;
  font-size: 14px;
}
.updates-instagram a {
  color: var(--dark-teal);
  text-decoration: none;
  border-bottom: 1px dotted #1C3A4A;
}
.updates-instagram a:hover {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  color: var(--dark-teal);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-lead {
  font-size: 1.05rem;
  color: rgba(44, 24, 16, .82);
  max-width: 62ch;
  margin-bottom: 24px;
}

.country-hero {
  padding: 24px 0 28px;
}
.country-hero .eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fjord);
  margin-bottom: 12px;
}
.country-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  color: var(--dark-teal);
  line-height: 1.05;
  margin-bottom: 8px;
}
.country-hero h1 .flag { font-size: .85em; margin-right: 6px; }
.country-hero .subtitle {
  font-size: 1.15rem;
  color: rgba(44, 24, 16, .78);
  max-width: none;
  margin-bottom: 0;
}
.country-hero .subtitle .fabian-link {
  white-space: nowrap;
}

@media (min-width: 901px) {
  .country-hero .subtitle {
    white-space: nowrap;
  }
}

.fabian-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted #1C3A4A;
}
.fabian-link:hover { opacity: 1; }
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
}
.hero-card .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}
.hero-card .hint {
  font-size: 12px;
  color: rgba(44, 24, 16, .55);
  margin-bottom: 8px;
}
.hero-card .value {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--dark-teal);
  line-height: 1.35;
}
.hero-stat {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(44, 24, 16, .65);
}
.hero-stat strong { color: var(--dark-teal); }

@media (max-width: 640px) {
  .hero-cards { grid-template-columns: 1fr; }
}

.explain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.explain-box {
  background: rgba(28, 58, 74, .05);
  border-radius: 14px;
  padding: 18px 20px;
  border-left: 4px solid var(--fjord);
}
.explain-box.mission { border-left-color: var(--amber); }
.explain-box h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--dark-teal);
  margin-bottom: 4px;
}
.explain-box p { font-size: 14px; color: rgba(44, 24, 16, .7); }

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

.how-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.how-detail-box {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
}
.how-detail-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--dark-teal);
  margin-bottom: 10px;
}
.how-detail-box p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(44, 24, 16, .78);
}

@media (max-width: 640px) {
  .how-details { grid-template-columns: 1fr; }
}

.vote-list { display: flex; flex-direction: column; gap: 12px; }
.vote-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  transition: border-color .2s, box-shadow .2s;
}
.vote-card:hover { border-color: var(--amber); }
.vote-card.voted {
  border-color: var(--sage);
  background: rgba(122, 158, 126, .08);
}
.vote-card-body {
  flex: 1;
  min-width: 0;
}
.vote-card-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}
.vote-card-meta {
  font-size: 12px;
  color: rgba(44, 24, 16, .55);
  white-space: nowrap;
}
.vote-card-text {
  font-size: 1rem;
  color: var(--dark-teal);
  font-weight: 500;
  line-height: 1.4;
}
.vote-list--community {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.vote-list--community:empty { display: none; }

.community-suggestions {
  margin-top: 8px;
  margin-bottom: 8px;
  width: 100%;
}
.community-suggestions:has(.vote-list--community:empty) {
  display: none;
}
.community-heading {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(44, 24, 16, .5);
  margin: 0 0 12px;
}

.suggest-below {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1.5px solid var(--border);
  width: 100%;
}
.suggest-heading {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-teal);
  margin: 0 0 4px;
}
.suggest-lead {
  margin: 0 0 14px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(44, 24, 16, .65);
}
.form-card--suggest {
  max-width: none;
}

.suggest-below .form-card textarea {
  height: 120px;
  min-height: 120px;
  max-height: 120px;
  resize: none;
}

.vote-card.leading {
  border-color: var(--amber);
  background: rgba(200, 120, 10, .08);
  box-shadow: 0 0 0 1px rgba(200, 120, 10, .2);
}
.vote-badge--community {
  background: rgba(43, 122, 140, .12);
  color: var(--fjord);
}
.vote-btn {
  flex-shrink: 0;
  background: var(--dark-teal);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .1s;
}
.vote-btn:hover { background: var(--fjord); }
.vote-btn:active { transform: scale(.97); }
.vote-btn:disabled {
  opacity: .7;
  cursor: wait;
}
.vote-card.voted .vote-btn {
  background: var(--sage);
  cursor: default;
  pointer-events: none;
}
.vote-card.voted .vote-btn:hover {
  background: var(--sage);
}
.vote-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(200, 120, 10, .15);
  color: var(--amber);
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.shortlist { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.shortlist-item {
  padding: 12px 16px;
  background: rgba(234, 217, 176, .35);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text);
  border-left: 3px solid var(--sage);
}

.form-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  max-width: 560px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-teal);
  margin-bottom: 6px;
}
.form-group .optional {
  font-weight: 400;
  color: rgba(44, 24, 16, .5);
  font-size: 12px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--fjord);
  box-shadow: 0 0 0 3px rgba(43, 122, 140, .12);
}
.form-error {
  font-size: 13px;
  color: var(--terracotta);
  margin-top: 4px;
  display: none;
}
.form-error.show { display: block; }
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 13px 28px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}
.btn-primary:hover { background: var(--light-amber); }
.btn-primary:disabled { opacity: .6; cursor: wait; }

.form-note {
  font-size: 13px;
  color: rgba(44, 24, 16, .55);
  margin-top: 12px;
  max-width: 52ch;
}

.confirm-msg {
  display: none;
  margin-top: 16px;
  padding: 16px 18px;
  background: rgba(122, 158, 126, .15);
  border: 1.5px solid var(--sage);
  border-radius: 12px;
  font-size: 15px;
  color: var(--dark-teal);
  line-height: 1.45;
}
.confirm-msg.show { display: block; }

.vote-done {
  margin: 0 0 22px;
  padding: 28px 22px 24px;
  border: 2px solid var(--sage);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(122, 158, 126, .18), rgba(122, 158, 126, .08));
  text-align: center;
}
.vote-done[hidden]:not(.vote-done--visible) { display: none !important; }
.vote-done.vote-done--visible,
html.cfwm-mission-voted #missionVoteDone,
body.cfwm-mission-voted #missionVoteDone,
#missionSuggestDone.vote-done--visible {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
#missionSuggestDone {
  margin-top: 20px;
}
.vote-done-confirm {
  margin: 0 0 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 700;
  color: var(--dark-teal);
  line-height: 1.25;
}
.vote-done-lead {
  margin: 0 0 18px;
  font-size: 1.05rem;
  color: rgba(44, 24, 16, .72);
}
.vote-done-ig {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 18px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(221, 42, 123, .35);
  transition: transform .15s, box-shadow .15s;
}
.vote-done-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(221, 42, 123, .45);
}
.vote-done-ig-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}
.vote-done-ig-text strong {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.vote-done-ig-text span {
  font-size: .95rem;
  font-weight: 600;
  opacity: .92;
}
.vote-done .vote-next-hint {
  margin-top: 20px;
}
#vote-mission.has-mission-voted .community-toggle,
#vote-mission.has-mission-voted .ballot-section,
#vote-mission.has-mission-voted .suggest-toggle,
#vote-mission.has-mission-voted > .section-lead,
#vote-mission.has-mission-voted #missionNextHint,
html.cfwm-mission-voted #missionCommunityBlock,
html.cfwm-mission-voted #missionBallotBlock,
html.cfwm-mission-voted #suggest-mission,
html.cfwm-mission-voted #missionNextHint,
body.cfwm-mission-voted #missionCommunityBlock,
body.cfwm-mission-voted #missionBallotBlock,
body.cfwm-mission-voted #suggest-mission,
body.cfwm-mission-voted #missionNextHint,
html.cfwm-mission-voted #vote-mission > .section-lead,
body.cfwm-mission-voted #vote-mission > .section-lead {
  display: none !important;
}
#vote-mission.has-mission-voted > h2,
html.cfwm-mission-voted #vote-mission > h2,
body.cfwm-mission-voted #vote-mission > h2 {
  display: none !important;
}

.board-list { display: flex; flex-direction: column; gap: 12px; }
.board-item {
  padding: 16px 18px;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  border-left: 4px solid var(--terracotta);
}
.board-item p { font-size: 15px; color: var(--text); }
.board-item time {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(44, 24, 16, .45);
}

.channel-pick {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.channel-pick label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.channel-pick input { display: none; }
.channel-pick label:has(input:checked) {
  border-color: var(--fjord);
  background: rgba(43, 122, 140, .08);
}

footer {
  background: var(--dark-teal);
  color: var(--cream);
  padding: 40px 36px;
  margin-top: 60px;
}
.footer-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  opacity: .8;
}
.footer-brand img { height: 22px; filter: brightness(0) invert(1); opacity: .7; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  opacity: .7;
  transition: opacity .2s;
}
.footer-links a:hover { opacity: 1; }
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 11px;
  opacity: .35;
  margin-top: 16px;
}

.forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) {
  .forms-grid { grid-template-columns: 1fr; }
}

.anchor-target { scroll-margin-top: 24px; }
