/* ============================================================
   Positive Earth Growth Hub — FAQ + Case-Tile additions
   Rev A · 2026-05-13
   Source: CHANGE 11 of deployment package
   ----------------------------------------------------------------
   Use:
     Option A (preferred) — link in <head> of each page:
       <link rel="stylesheet" href="/assets/growth-hub-additions.css">
     Option B — paste the contents into each page's existing <style>
       block (after existing rules, before </style>).
   ============================================================ */

/* ============ FAQ block ============ */
.faq {
  max-width: 780px;
  margin: 4rem auto;
  padding: 0 1rem;
}
.faq h2,
.faq h3 { margin-bottom: 0.5rem; }
.faq__intro {
  color: #555;
  margin-bottom: 2rem;
}
.faq__item {
  border-top: 1px solid #e5e5e5;
  padding: 1.25rem 0;
}
.faq__item:last-child {
  border-bottom: 1px solid #e5e5e5;
}
.faq__item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
  margin-top: 0.75rem;
  color: #333;
  line-height: 1.55;
}
.faq--extension { margin-top: -2rem; }
.faq--extension h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

/* ============ Case study tile (compact) ============ */
.case-studies-strip {
  max-width: 880px;
  margin: 4rem auto;
  padding: 0 1rem;
}
.case-studies-strip__label {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #777;
  margin-bottom: 1rem;
}
.case-tile {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-left: 4px solid #2d5a2d;
  padding: 2rem;
}
.case-tile__tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2d5a2d;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.case-tile h3 {
  margin-bottom: 1.25rem;
  line-height: 1.25;
}
.case-tile__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
}
.case-tile__meta dt {
  color: #777;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding-top: 0.2rem;
}
.case-tile__meta dd { color: #222; }
.case-tile p {
  margin-bottom: 0.85rem;
  line-height: 1.6;
}
.case-tile blockquote {
  margin: 1.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 2px solid #2d5a2d;
  font-style: italic;
  color: #444;
}
.case-tile__link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #2d5a2d;
  text-decoration: none;
}
.case-tile__link:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .case-tile { padding: 1.5rem; }
  .case-tile__meta { grid-template-columns: 1fr; gap: 0.2rem; }
  .case-tile__meta dt { padding-top: 0.5rem; }
}
