/* PBC Swiss — 2-pane CTA (Donate / Subscribe) */

.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-pane {
  padding: var(--s-9) var(--s-8);
  border-right: 1px solid var(--line);
}
.cta-pane:last-child {
  background: var(--ink);
  color: #fff;
  border-right: none;
}

.cta-pane .n {
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: var(--s-5);
  color: var(--muted);
}
.cta-pane:last-child .n { color: #888; }
.cta-pane .n:has(.cta-badge) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6em;
}

.cta-badge {
  display: inline-block;
  padding: 4px 11px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  vertical-align: middle;
  color: #fff;
  opacity: .9;
}

.cta-pane h3 {
  font-size: var(--t-cta);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: .98;
  margin-bottom: var(--s-5);
}
.cta-pane h3 b { font-weight: 700; }

.cta-pane p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 42ch;
  margin-bottom: var(--s-6);
}
.cta-pane:last-child p { color: #bbb; }

@media (max-width: 1100px) {
  .cta { grid-template-columns: 1fr; }
  .cta-pane {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .cta-pane:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .cta-pane { padding: var(--s-7) var(--s-5); }
}
