/* Blog, articles and About page. Loaded after base.css, site.css and legal.css. */
.text-link { color: var(--green-700); font-weight: 600; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; margin-bottom: 18px; color: rgba(255, 255, 255, .6); }
.crumbs a { color: rgba(255, 255, 255, .85); text-decoration: none; }
.crumbs a:hover { color: var(--gold-400); }

/* ---------- About ---------- */
.about-wrap { padding: 56px 0 96px; display: grid; gap: 40px; }
.about-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.about-copy h2, .principles h2, .about-more h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3.2vw, 38px); color: var(--ink); margin-bottom: 16px; max-width: none; }
.about-copy p { margin-bottom: 14px; }
.about-photo { margin: 0; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 40%; }
.org-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.org-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 20px; padding: 32px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.org-logo { height: 60px; display: flex; align-items: center; margin-bottom: 6px; }
.org-logo img { max-height: 56px; width: auto; }
.org-card h2 { font-family: var(--serif); font-weight: 500; font-size: 24px; color: var(--ink); max-width: none; }
.org-card p a, .founder-card a { color: var(--green-700); font-weight: 600; }
.org-card .btn { margin-top: auto; }
.org-role { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--gold-600); }
.founder-card { display: grid; grid-template-columns: 96px 1fr; gap: 28px; align-items: start; background: var(--green-900); color: rgba(255, 255, 255, .82); border-radius: 22px; padding: clamp(28px, 4vw, 44px); }
.founder-card h2 { color: #fff; font-family: var(--serif); font-weight: 500; font-size: 30px; max-width: none; }
.founder-card .eyebrow { color: var(--gold-400); margin-bottom: 6px; }
.founder-card .org-role { color: var(--gold-400); margin: 6px 0 16px; }
.founder-card .org-role a { color: #fff; }
.founder-card blockquote { font-family: var(--serif); font-size: 22px; line-height: 1.35; color: #fff; margin: 0 0 16px; }
.avatar-lg-initials { width: 96px; height: 96px; border-radius: 50%; background: var(--gold-grad); color: var(--green-950); display: grid; place-items: center; font-family: var(--serif); font-size: 34px; font-weight: 600; }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.principle { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 24px; border-top: 3px solid var(--gold-500); }
.principle h3 { font-family: var(--serif); font-weight: 500; font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.principle p { font-size: 15px; }
.link-list { list-style: none; display: grid; gap: 10px; }
.link-list a { color: var(--green-700); font-weight: 600; }
@media (max-width: 1000px) { .principle-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 800px) {
  .about-intro, .org-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; }
  .principle-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA band (About, blog) ---------- */
.cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: clamp(28px, 4vw, 44px); border-radius: 22px; color: rgba(255, 255, 255, .82);
  background:
    linear-gradient(135deg, rgba(6, 28, 31, .94), rgba(11, 46, 51, .9)),
    url("/assets/img/photos/data-office.jpg") center / cover no-repeat;
}
.cta-band .eyebrow { color: var(--gold-400); margin-bottom: 8px; }
.cta-band h2 { color: #fff; font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3vw, 36px); max-width: 22ch; }
.cta-band p { margin-top: 8px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Blog index ---------- */
.blog-hero p { max-width: 62ch; }
.blog-wrap { padding: 40px 0 96px; }
.cat-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.cat-nav a { text-decoration: none; font-size: 14px; font-weight: 600; color: var(--green-800); background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; }
.cat-nav a:hover { border-color: var(--green-700); }
.featured { display: grid; grid-template-columns: 1.2fr .8fr; gap: 0; border-radius: 22px; overflow: hidden; background: var(--green-900); color: rgba(255, 255, 255, .82); text-decoration: none; margin-bottom: 44px; box-shadow: var(--shadow); }
.featured .f-body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; gap: 12px; }
.featured .f-body h2 { color: #fff; font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3vw, 38px); max-width: none; }
.featured .f-img { background: url("/assets/img/photos/hero-executive.jpg") 65% 25% / cover no-repeat; min-height: 280px; }
.featured .read-more { color: var(--gold-400); font-weight: 600; margin-top: 6px; }
.cat-section { margin-bottom: 48px; scroll-margin-top: 100px; }
.cat-section > h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3vw, 34px); color: var(--ink); margin-bottom: 6px; max-width: none; }
.cat-section > p { color: var(--muted); margin-bottom: 20px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post-card { display: flex; flex-direction: column; gap: 10px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 18px; padding: 24px; text-decoration: none; color: var(--body); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; border-top: 3px solid var(--gold-500); }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold-400); }
.post-card .cat { font-family: var(--display); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-600); }
.post-card h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; line-height: 1.25; color: var(--ink); }
.post-card p { font-size: 15px; }
.post-card .meta { margin-top: auto; font-size: 13px; color: var(--muted); display: flex; justify-content: space-between; gap: 10px; }
.post-card .meta b { color: var(--green-700); font-weight: 600; }
@media (max-width: 1000px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .post-grid, .featured { grid-template-columns: 1fr; } .featured .f-img { min-height: 180px; order: -1; } }

/* ---------- Article ---------- */
.article-hero .meta-line { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 16px; font-size: 14px; color: rgba(255, 255, 255, .7); }
.article-hero h1 { max-width: 24ch; }
.article-hero .lede { font-size: clamp(17px, 1.6vw, 19px); color: rgba(255, 255, 255, .85); margin-top: 14px; max-width: 64ch; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 40px; align-items: start; padding: 44px 0 40px; }
.article-body { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 20px; padding: clamp(24px, 5vw, 56px); box-shadow: var(--shadow-sm); }
.article-body > * + * { margin-top: 16px; }
.article-body p, .article-body li { font-size: 17.5px; line-height: 1.75; color: var(--body); max-width: 70ch; }
.article-body h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(25px, 2.6vw, 32px); color: var(--ink); margin-top: 40px; scroll-margin-top: 100px; max-width: none; }
.article-body h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; color: var(--ink); margin-top: 28px; }
.article-body ul, .article-body ol { padding-left: 22px; display: grid; gap: 8px; }
.article-body a { color: var(--green-700); font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-body a:hover { color: var(--green-900); }
.article-body blockquote { border-left: 3px solid var(--gold-500); padding: 6px 0 6px 20px; font-family: var(--serif); font-size: 21px; line-height: 1.45; color: var(--ink); }
.article-body strong { color: var(--ink); }
.inline-cta { margin: 32px 0 !important; display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: center; padding: 22px 24px; border-radius: 16px; background: var(--cream); border: 1px solid var(--line); }
.inline-cta img { width: 64px; height: 64px; }
.inline-cta h2, .inline-cta .t { font-family: var(--serif); font-weight: 500; font-size: 21px !important; color: var(--ink); margin: 0 !important; }
.inline-cta p { font-size: 15px !important; margin: 4px 0 12px !important; }
.inline-cta .btns { display: flex; flex-wrap: wrap; gap: 8px; }
.article-note { font-size: 13px !important; color: var(--muted) !important; border-top: 1px solid var(--line-soft); padding-top: 16px; margin-top: 32px !important; }
.article-aside { position: sticky; top: 100px; display: grid; gap: 16px; }
.aside-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 18px; padding: 22px; box-shadow: var(--shadow-sm); }
.aside-card.dark { background: var(--green-900); color: rgba(255, 255, 255, .82); border: 0; }
.aside-card.dark .seal { width: 56px; height: 56px; margin-bottom: 10px; }
.aside-card.dark h2 { color: #fff; font-family: var(--serif); font-weight: 500; font-size: 22px; line-height: 1.25; max-width: none; }
.aside-card.dark .price { font-family: var(--serif); font-size: 34px; color: #fff; margin: 10px 0 2px; }
.aside-card.dark .price small { font-family: var(--sans); font-size: 13px; color: rgba(255, 255, 255, .6); margin-left: 6px; }
.aside-card.dark ul { list-style: none; display: grid; gap: 6px; margin: 12px 0 16px; font-size: 14px; }
.aside-card.dark li::before { content: "\2713"; color: var(--gold-400); margin-right: 8px; font-weight: 700; }
.aside-card.dark .btn { width: 100%; }
.aside-card.dark .sub-link { display: block; text-align: center; margin-top: 10px; font-size: 13.5px; color: rgba(255, 255, 255, .8); }
.toc h2 { font-family: var(--display); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 10px; }
.toc ol { list-style: none; display: grid; gap: 2px; }
.toc a { display: block; padding: 5px 6px; border-radius: 6px; font-size: 14px; color: var(--body); text-decoration: none; line-height: 1.35; }
.toc a:hover { background: var(--cream); color: var(--ink); }
.faq-block { margin-top: 44px !important; }
.faq-block h2 { margin-top: 0; }
.faq-block details { border-bottom: 1px solid var(--line); }
.faq-block summary { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 600; font-size: 17px; color: var(--ink); display: flex; justify-content: space-between; gap: 16px; }
.faq-block summary::-webkit-details-marker { display: none; }
.faq-block summary::after { content: "+"; color: var(--gold-600); font-size: 22px; line-height: 1; flex: none; transition: transform .2s ease; }
.faq-block details[open] summary::after { transform: rotate(45deg); }
.faq-block details p { padding-bottom: 16px; }
.author-box { display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: start; margin-top: 36px !important; padding: 20px; border-radius: 14px; background: var(--cream); }
.author-box img { width: 56px; height: 56px; }
.author-box p { font-size: 14.5px !important; line-height: 1.6 !important; }
.author-box b { color: var(--ink); }
.related { padding: 8px 0 56px; }
.related > h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3vw, 34px); color: var(--ink); margin-bottom: 20px; max-width: none; }
.article-cta { margin-bottom: 72px; }
@media (max-width: 1000px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .toc { display: none; }
}
@media (max-width: 600px) {
  .inline-cta { grid-template-columns: 1fr; }
  .inline-cta img { display: none; }
  .article-body p, .article-body li { font-size: 16.5px; }
}

/* ---------- Homepage "Resources" section ---------- */
.resources { background: var(--paper); }
.resources .post-grid { margin-top: 8px; }
.resources .all-link { margin-top: 28px; text-align: center; }
