/* ============================================================
   Section shell (for CARD SECTION ONE)
============================================================ */
.intro {
  max-width: 70ch;
  margin: 0.75rem auto 0;
  text-align: center;
  color: #475569;
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.05rem);
}

/* ============================================================
   Unified Responsive Grid (powers .feature-grid and .cardgrid)
============================================================ */
.feature-grid,
.cardgrid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: 2.313rem;
}

/* ============================================================
   Unified Card Styles
   A) CARD SECTION ONE: .card__head (SVG icon left of h3)
   B) CARD SECTION TWO: .icon + content (emoji icon left of h3)
============================================================ */
.card {
  background: #F6F3EE;
  color: #424242;
  border: 1px solid #357266;
  border-radius: 0.25rem;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(12, 67, 74, 0.05), 0 12px 24px rgba(12, 67, 74, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(12, 67, 74, 0.08), 0 16px 32px rgba(12, 67, 74, 0.1);
}

.card summary {
  display: none;
}

@media (max-width: 800px) {
  .card summary {
    display: block;
  }
  .card {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
/* Pattern A: header row for Section One */
.card__head {
  display: grid;
  grid-template-columns: 2.313rem 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-bottom: 0.5rem;
}

/* Pattern B: two-column inline layout for Section Two cards */
.cardgrid .card {
  display: grid;
  grid-template-columns: 2.313rem 1fr;
  gap: 0.75rem;
  align-items: start;
}

/* Icon shared styling (works for emoji tiles and inline SVGs) */
.icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #f2f4f5;
  color: #2b2b2b;
  font-size: 40px; /* emoji scale */
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* Inline SVG used directly with class="icon" in Section One */
svg.icon {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  display: block;
}

/* Typography */
.card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.75rem;
  font-weight: 600;
  text-align: left;
}

.card p {
  margin: 0 0 1rem;
}

/* Pills (Section One) */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.pill {
  border: 1px solid #A0C16D;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: #475569;
  background: #F6F3EE;
  white-space: nowrap;
}

dl {
  margin-bottom: 0.75rem;
}

dl dt {
  font-weight: 600;
}

dl dd {
  padding-left: 0.75rem;
  margin-bottom: 0.5rem;
}

/*# sourceMappingURL=cards-flex.css.map */
