/* ─── AUTHOR PAGE ─────────────────────────────────────────────── */
.crp-author-hero {
  background: #F5F0E8;
  border-bottom: 1px solid #EEEEEE;
}

.crp-author-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.crp-author-hero__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: #fff;
  overflow: hidden;
}
.crp-author-hero__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }

.crp-author-hero__name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.crp-author-hero__name {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: 32px;
  color: #1A1A1A;
  letter-spacing: -0.01em;
}

.crp-author-hero__badge {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid;
  padding: 3px 7px;
}

.crp-author-hero__role {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.crp-author-hero__bio {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin: 0 0 16px;
  max-width: 620px;
}

.crp-author-hero__affil {
  padding: 10px 14px;
  border-left: 3px solid;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.crp-author-hero__affil-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  color: #888;
}

.crp-author-hero__affil-name {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 12px;
}

.crp-author-stats {
  background: #1A1A1A;
  padding: 0 24px;
}

.crp-author-stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  padding: 12px 0;
  align-items: center;
}

.crp-author-stats__count { text-align: center; }

.crp-author-stats__num {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #C12527;
  display: block;
}

.crp-author-stats__label {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  display: block;
}

.crp-author-stats__divider {
  width: 1px;
  height: 32px;
  background: #333;
  flex-shrink: 0;
}

.crp-author-stats__cats {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.crp-author-stats__cat {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid;
  padding: 3px 7px;
}

/* ─── SEARCH PAGE ─────────────────────────────────────────────── */
.crp-search-bar {
  background: #1A1A1A;
  padding: 32px 24px;
}

.crp-search-bar__inner {
  max-width: 720px;
  margin: 0 auto;
}

.crp-search-bar__title {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 900;
  font-size: 32px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.crp-search-bar__form { display: flex; }

.crp-search-bar__input {
  flex: 1;
  padding: 12px 16px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  border: none;
  border-radius: 0;
  background: #fff;
  color: #1A1A1A;
  outline: none;
}

.crp-search-bar__btn {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #C12527;
  color: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 0;
  white-space: nowrap;
}

.crp-search-filters {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.crp-search-filter {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C12527;
  border: 1px solid #C12527;
  padding: 3px 8px;
  transition: background 0.15s, color 0.15s;
}

.crp-search-filter:hover { background: #C12527; color: #fff; }

.crp-search-count {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #888;
  margin-bottom: 24px;
}

.crp-search-result {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid #EEEEEE;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.crp-search-result__img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

.crp-search-result__img--ph {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
}

.crp-search-result__body { flex: 1; }

.crp-search-result__cat {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.crp-search-result__title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 6px;
  display: block;
  transition: color 0.15s;
}

.crp-search-result__title:hover { color: #C12527; }

.crp-search-result__excerpt {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 6px;
}

.crp-search-result__meta {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: #aaa;
}

.crp-search-noresult {
  padding: 60px 0;
  text-align: center;
}

.crp-search-noresult__title {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  color: #ccc;
  margin-bottom: 8px;
}

.crp-search-noresult__text {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #aaa;
}

/* ─── GENERIC PAGE HERO ───────────────────────────────────────── */
.crp-page-hero {
  padding: 56px 24px;
}

.crp-page-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

.crp-page-hero__title {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.crp-page-hero__subtitle {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 19px;
  line-height: 1.65;
  max-width: 600px;
}

/* ─── ABOUT PAGE ─────────────────────────────────────────────── */
.crp-about {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.crp-about__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  align-items: start;
}

.crp-about__text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  line-height: 1.75;
  color: #333;
  margin: 0 0 16px;
}

.crp-about__principles-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crp-about__principle {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.crp-about__principle-dot {
  width: 6px;
  height: 6px;
  background: #C12527;
  flex-shrink: 0;
  margin-top: 7px;
}

.crp-about__principle-text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

.crp-about--intro  { padding-bottom: 48px; }
.crp-about--lower  { padding-top: 56px; }

.crp-about__contributors { margin-bottom: 60px; }

.crp-about__author-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.crp-about__author-card {
  border-top: 3px solid #EEEEEE;
  padding-top: 16px;
  transition: border-color 0.15s;
}

.crp-about__author-card:hover { border-top-color: #C12527; }

.crp-about__author-card-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.crp-about__author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
}

.crp-about__author-name {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1A1A1A;
  display: block;
}

.crp-about__author-badge {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid;
  padding: 1px 4px;
}

.crp-about__author-bio {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.crp-about__cta-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.crp-about__cta-box { padding: 28px; }

.crp-about__network {
  background: #F5F0E8;
  padding: 48px 24px;
}

.crp-about__network-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.crp-about__network-banner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 36px 40px;
  background: transparent;
  text-decoration: none;
  min-height: 140px;
  transition: background 0.15s;
  border: 1px solid rgba(0,0,0,0.1);
}
.crp-about__network-banner:hover { background: rgba(0,0,0,0.04); }

.crp-about__network-logo {
  height: 64px;
  width: auto;
  flex-shrink: 0;
  border-right: 1px solid rgba(0,0,0,0.12);
  padding-right: 40px;
}

.crp-about__network-banner-body {
  flex: 1;
}

.crp-about__network-banner-tagline {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.crp-about__network-banner-text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14px;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

.crp-about__network-banner-cta {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C12527;
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .crp-about__network-banner { flex-wrap: wrap; gap: 24px; padding: 28px; }
  .crp-about__network-logo { height: 44px; border-right: none; padding-right: 0; border-bottom: 1px solid rgba(0,0,0,0.12); padding-bottom: 20px; width: 100%; }
  .crp-about__network-banner-cta { width: 100%; }
}

.crp-about__cta-title {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.crp-about__cta-text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* ─── SUPPORT PAGE ───────────────────────────────────────────── */
.crp-support {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.crp-support__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.crp-support__pillar {
  border-top: 3px solid #C12527;
  padding-top: 12px;
}

.crp-support__pillar-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 6px;
}

.crp-support__pillar-text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.crp-support__tiers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.crp-support__tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid #EEEEEE;
  background: #fff;
}

.crp-support__tier--featured {
  border: 2px solid #C12527;
  background: #C12527;
}

.crp-support__tier-info { text-align: left; }

.crp-support__tier-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1A1A1A;
  display: block;
}

.crp-support__tier--featured .crp-support__tier-label { color: #fff; }

.crp-support__tier-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #888;
  margin-top: 2px;
  display: block;
}

.crp-support__tier--featured .crp-support__tier-desc { color: rgba(255,255,255,0.75); }

.crp-support__tier-amount {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #C12527;
  white-space: nowrap;
}

.crp-support__tier--featured .crp-support__tier-amount { color: #fff; }

.crp-support__tier-freq {
  font-size: 12px;
  font-weight: 600;
}

.crp-support__cta {
  width: 100%;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #C12527;
  color: #fff;
  border: none;
  padding: 15px;
  cursor: pointer;
  border-radius: 0;
  display: block;
  text-align: center;
}

.crp-support__cta:hover { opacity: 0.85; }

.crp-support__note {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: #bbb;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ─── FOURTH INTERNATIONAL PAGE ─────────────────────────────── */
.crp-fourth-hero {
  background: linear-gradient(135deg, #1E2D45 0%, #2D3F5C 60%, #8B1A4A 100%);
  padding: 56px 24px;
}

.crp-fourth-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.crp-fourth-hero__eyebrow {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}

.crp-fourth-hero__title {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.0;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.crp-fourth-hero__subtitle {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}

.crp-fourth-explain {
  background: #F5F0E8;
  padding: 48px 24px;
}

.crp-fourth-explain__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.crp-fourth-explain__text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  margin: 0 0 16px;
}

.crp-fourth-program {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crp-fourth-program__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.crp-fourth-program__dot {
  width: 5px;
  height: 5px;
  background: #C12527;
  flex-shrink: 0;
  margin-top: 7px;
}

.crp-fourth-program__text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14px;
  line-height: 1.55;
  color: #333;
}

.crp-fourth-sections {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.crp-fourth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #EEEEEE;
  margin-bottom: 48px;
}

.crp-fourth-org {
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crp-fourth-org__top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.crp-fourth-org__logo {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  letter-spacing: -0.5px;
}

.crp-fourth-org__name {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #1A1A1A;
  line-height: 1.1;
  display: block;
}

.crp-fourth-org__meta {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

.crp-fourth-org__desc {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.crp-fourth-join {
  background: #C12527;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.crp-fourth-join__title {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.0;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.crp-fourth-join__text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* ─── CAMPAIGN PAGES ─────────────────────────────────────────── */
.crp-campaign-hero {
  position: relative;
  overflow: hidden;
  background: #0F0F0F;
}

.crp-campaign-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crp-campaign-hero__gradient {
  position: absolute;
  inset: 0;
}

.crp-campaign-hero__body {
  position: relative;
  z-index: 1;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.crp-campaign-hero__eyebrow {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.crp-campaign-hero__title {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.crp-campaign-hero__subtitle {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
}

.crp-campaign-declaration {
  padding: 28px 40px;
  text-align: center;
}

.crp-campaign-declaration__text {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}

.crp-campaign-declaration__em { color: #E8164B; }

.crp-position {
  border-left: 4px solid #C12527;
  padding-left: 20px;
  margin-bottom: 36px;
}

.crp-position__text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  line-height: 1.75;
  color: #1A1A1A;
  margin: 0 0 16px;
}

.crp-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.crp-solidarity-box {
  border-top: 3px solid #C12527;
  padding-top: 14px;
}

.crp-solidarity-box__title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.crp-solidarity-box__text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 13px;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

.crp-timeline { display: flex; flex-direction: column; }

.crp-timeline__item {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid #EEEEEE;
  padding: 16px 0;
}

.crp-timeline__stripe {
  width: 4px;
  flex-shrink: 0;
  align-self: stretch;
}

.crp-timeline__city {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.crp-timeline__desc {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .crp-author-hero__inner { grid-template-columns: 1fr; }
  .crp-about__cols { grid-template-columns: 1fr; }
  .crp-about__cta-cols { grid-template-columns: 1fr; }
  .crp-about__author-cards { grid-template-columns: repeat(2, 1fr); }
  .crp-fourth-explain__inner { grid-template-columns: 1fr; }
  .crp-fourth-grid { grid-template-columns: repeat(2, 1fr); }
  .crp-grid-2 { grid-template-columns: 1fr; }
  .crp-support__pillars { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .crp-about__author-cards { grid-template-columns: 1fr; }
  .crp-fourth-grid { grid-template-columns: 1fr; }
  .crp-campaign-hero__title { font-size: 52px; }
}

/* ─── SUPPORT PAGE — INTERACTIVE ELEMENTS ────────────────────── */
.crp-support-toggle__btn {
  flex: 1;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #666;
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
}

.crp-support-toggle__btn--active { background: #1A1A1A; color: #fff; }

.crp-support__tier {
  width: 100%;
  text-align: left;
  border-radius: 0;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.crp-support__tier--active {
  border: 2px solid #C12527 !important;
  background: #C12527 !important;
}

.crp-support__tier--active .crp-support__tier-label { color: #fff; }
.crp-support__tier--active .crp-support__tier-desc  { color: rgba(255,255,255,0.75); }
.crp-support__tier--active .crp-support__tier-amount { color: #fff; }
