/* ============================================================
   SECTION: INVESTMENT
   Targets: #section-investment
   Change price: #invest-price
   Change CTA link: #invest-cta href
   ============================================================ */

.invest-card {
  background: var(--color-off-white);
  border: 1px solid var(--color-gray-border);
  padding: 36px 28px;
  margin: var(--space-md) 0;
  position: relative;
}

/* Blue left border accent */
.invest-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-blue);
}

/* Tier name */
#invest-tier {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-black);
}

/* Short description */
#invest-description {
  font-size: 13px;
  color: var(--color-gray-text);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Price */
.invest-price {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1;
  margin-bottom: var(--space-xs);
  letter-spacing: -.02em;
}

/* Guarantee line */
.invest-guarantee {
  font-size: 12px;
  color: var(--color-gray-text);
  font-style: italic;
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

/* Override btn-primary display for anchor tag */
a.btn-primary {
  text-decoration: none;
  display: block;
}
