/* ==========================================================
   mitgliedschaft.css — TTC Rheindahlen 1950
   Styles for the Mitgliedschaft page (fee cards, CTA box).
   Depends on: variables.css, main.css
   ========================================================== */

/* ── Fee table ───────────────────────────────────────────── */
.fee-table-wrap {
  margin: 32px 0 0;
  border: 1px solid rgb(var(--text-rgb) / 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.fee-table thead tr {
  background: var(--surface-tint);
}

.fee-table th {
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.fee-table th:last-child {
  text-align: right;
}

.fee-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.fee-table tbody tr:last-child {
  border-bottom: none;
}

.fee-table td {
  padding: 14px 20px;
  font-size: 0.95rem;
  color: rgb(var(--text-rgb) / 0.75);
}

.fee-table td:last-child {
  text-align: right;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.fee-footnote {
  margin-top: 12px;
  font-size: 0.82rem;
  color: rgb(var(--text-rgb) / 0.38);
  line-height: 1.5;
}

/* ── CTA box ─────────────────────────────────────────────── */
.cta-box {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--surface-tint-xs);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-box__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgb(var(--text-rgb) / var(--text-muted-alpha));
  line-height: 1.6;
}

.cta-box__text a {
  color: var(--red);
  font-weight: 600;
  transition: color 0.2s;
}

.cta-box__text a:hover { color: #d64535; }

@media (max-width: 600px) {
  .fee-table td, .fee-table th { padding: 12px 14px; }
  .cta-box { flex-direction: column; align-items: flex-start; }
}
