.landing-cta.reusable-cta {
  position: relative;
  background: #20231f;
  padding: clamp(34px, 6vw, 72px) 0 clamp(28px, 5vw, 64px);
}

.reusable-cta__inner {
  width: min(1240px, calc(100% - (var(--section-padding-x) * 2)));
  margin: 0 auto;
}

.reusable-cta__frame {
  position: relative;
  border-radius: 16px;
}

.reusable-cta__frame-border {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(221, 235, 203, 0.35);
  pointer-events: none;
}

.reusable-cta__panel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: clamp(26px, 3.3vw, 46px) clamp(18px, 4vw, 56px);
  background: #5a6357;
  text-align: center;
}

.reusable-cta__art {
  position: absolute;
  inset: auto auto 0 0;
  width: 48%;
  max-width: 420px;
  opacity: 0.18;
  pointer-events: none;
}

.reusable-cta__content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0 auto;
}

.reusable-cta__kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(226, 236, 211, 0.36);
  color: #e6edd9;
  font: 700 10px/1 var(--font-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reusable-cta__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d9e7c3;
}

.reusable-cta__title {
  margin-top: 14px;
  color: #f3f3ea;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  text-wrap: balance;
}

.reusable-cta__text {
  margin-top: 12px;
  color: rgba(239, 241, 233, 0.9);
  font: 400 clamp(14px, 1.5vw, 16px)/1.65 var(--font-body);
}

.reusable-cta__actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.reusable-cta__button {
  min-height: 44px;
  border-radius: 10px;
  padding: 0 18px;
  font: 600 14px/1 var(--font-secondary);
  text-decoration: none;
}

.reusable-cta__button.button-primary {
  background: #d8e5c1;
  color: #1a251b;
}

.reusable-cta__button.button-secondary {
  border: 1px solid rgba(235, 241, 224, 0.38);
  color: #ecf1e1;
  background: transparent;
}

@media (max-width: 767px) {
  .reusable-cta__actions {
    flex-direction: column;
  }

  .reusable-cta__button {
    width: 100%;
  }
}

/* Figma parity overrides */
.landing-cta.reusable-cta {
  background: #20231f;
  padding: 96px 24px;
}

.reusable-cta__inner {
  width: min(1258px, 100%);
}

.reusable-cta__frame,
.reusable-cta__frame-border,
.reusable-cta__panel {
  border-radius: 24px;
}

.reusable-cta__frame-border {
  border: 0;
}

.reusable-cta__panel {
  padding: 48px;
  background: #4f554a;
}

.reusable-cta__content {
  width: min(850px, 100%);
}

.reusable-cta__kicker {
  border-radius: 8px;
  border: 1.5px solid #eef1e8;
  color: #ffffff;
  padding: 8px;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.reusable-cta__dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
}

.reusable-cta__title {
  margin-top: 32px;
  max-width: 548px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  font-size: clamp(32px, 3vw, 39.81px);
  line-height: 1.1;
}

.reusable-cta__text {
  margin-top: 16px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  color: #d8dcd2;
  font-size: 16px;
  line-height: 1.6;
}

.reusable-cta__actions {
  margin-top: 32px;
}

.reusable-cta__button {
  min-height: 72px;
  border-radius: 16px;
  padding: 24px 32px;
  font-size: 18px;
  font-weight: 500;
}

.reusable-cta__button.button-primary {
  background: #ddebcb;
  color: #20231f;
}

.reusable-cta__button.button-secondary {
  border: 0;
  background: #5f7f2e;
  color: #ffffff;
}
