/* ============================================================
   content.css — Styles for /our-story, /blog, /contact pages.
   Builds on legal.css's shell (legal-shell / legal-main / etc).
   ============================================================ */

/* ---------------------------------- */
/* Contact cards                       */
/* ---------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.contact-card {
  display: block;
  padding: 24px;
  border-radius: 16px;
  background: rgba(245, 230, 211, 0.04);
  border: 1px solid rgba(245, 230, 211, 0.08);
  color: var(--brand-cream);
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.contact-card:hover {
  background: rgba(245, 230, 211, 0.07);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.contact-card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-earn);
  margin-bottom: 14px;
}

.contact-card-email {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--brand-cream);
  word-break: break-word;
}

.contact-card-note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--brand-cream-60);
  margin: 0;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------- */
/* Our Story page                      */
/* ---------------------------------- */

.story-lede {
  font-family: "Source Serif Pro", Georgia, serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.45;
  color: var(--brand-cream);
  margin: 24px 0 40px;
  max-width: 720px;
}

.story-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--brand-cream);
  margin-bottom: 22px;
}

.story-body p:first-of-type::first-letter {
  font-family: "Source Serif Pro", Georgia, serif;
  font-style: italic;
  font-size: 60px;
  line-height: 1;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--brand-earn);
}

.story-signature {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 230, 211, 0.08);
}

.story-signature-name {
  font-family: "Source Serif Pro", Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--brand-cream);
  margin: 0 0 6px;
}

.story-signature-role {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--brand-cream-60);
  margin: 0;
}

@media (max-width: 640px) {
  .story-lede {
    font-size: 22px;
  }
  .story-body p {
    font-size: 16px;
  }
}

/* ---------------------------------- */
/* Blog index                          */
/* ---------------------------------- */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.blog-card {
  display: block;
  padding: 28px;
  border-radius: 16px;
  background: rgba(245, 230, 211, 0.04);
  border: 1px solid rgba(245, 230, 211, 0.08);
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.blog-card:hover {
  background: rgba(245, 230, 211, 0.07);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.blog-card-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--brand-cream-60);
  margin-bottom: 12px;
}

.blog-card-meta-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--brand-earn);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card-title {
  font-family: "Source Serif Pro", Georgia, serif;
  font-size: 24px;
  line-height: 1.3;
  color: var(--brand-cream);
  margin: 0 0 12px;
  font-weight: 600;
}

.blog-card-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--brand-cream-60);
  margin: 0 0 18px;
}

.blog-card-readmore {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-earn);
}

/* ---------------------------------- */
/* Blog post body                      */
/* ---------------------------------- */

.post-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  color: var(--brand-cream-60);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.post-meta-author {
  font-weight: 500;
  color: var(--brand-cream);
}

.post-meta-dot {
  opacity: 0.4;
}

.post-body {
  max-width: 720px;
}

.post-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--brand-cream);
  margin-bottom: 22px;
}

.post-body h2 {
  font-family: "Source Serif Pro", Georgia, serif;
  font-size: 28px;
  line-height: 1.25;
  margin: 48px 0 16px;
  color: var(--brand-cream);
  font-weight: 600;
}

.post-body h3 {
  font-size: 19px;
  line-height: 1.35;
  margin: 36px 0 14px;
  color: var(--brand-cream);
  font-weight: 600;
}

.post-body strong {
  color: var(--brand-cream);
  font-weight: 600;
}

.post-body ul,
.post-body ol {
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--brand-cream);
}

.post-body li {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.post-body hr {
  border: 0;
  border-top: 1px solid rgba(245, 230, 211, 0.08);
  margin: 48px 0;
}

.post-body a {
  color: var(--brand-earn);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.post-source {
  margin-top: 56px;
  padding: 20px 24px;
  border-radius: 12px;
  background: rgba(245, 230, 211, 0.03);
  border: 1px solid rgba(245, 230, 211, 0.06);
  font-size: 14px;
  color: var(--brand-cream-60);
}

.post-source strong {
  color: var(--brand-cream);
  display: block;
  margin-bottom: 4px;
}

.post-back {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--brand-cream-60);
}

.post-back:hover {
  color: var(--brand-earn);
}

@media (max-width: 640px) {
  .post-body p,
  .post-body li {
    font-size: 16px;
  }
  .post-body h2 {
    font-size: 24px;
  }
  .blog-card {
    padding: 22px;
  }
  .blog-card-title {
    font-size: 21px;
  }
}
