/* ============================================================
   Newsletter card + two-column intro layout
   Linked from: assets/css/newsletter-card.css
   ============================================================ */

/* Wrapper that places the intro copy and the card side-by-side */
.about-intro-row {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Left column: intro copy — reduced left margin by 20px */
.about-intro-row .about-intro {
  flex: 1 1 55%;
  padding: 0;
  margin: 0 0 0 -20px;
}

/* ── Newsletter card ─────────────────────────────────────── */
.newsletter-card {
  flex: 1 1 40%;
  min-width: 280px;
}

.newsletter-card-inner,
.newsletter-card {
  border: 1px solid #aaa;  /* medium grey border */
  border-radius: 8px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
.newsletter-card h2 {
  color: #C9A84C
}

/* ── Responsive: stack on smaller screens ─────────────────── */
@media (max-width: 768px) {
  .about-intro-row {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .about-intro-row .about-intro {
    margin-left: 0;  /* reset negative margin on mobile */
  }

  .newsletter-card {
    width: 100%;
  }
}