@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-plantation: #294d3b;
  --color-plantation-hover: #1e3a2c;
  --color-white: #ffffff;
  --color-neutral-darkest: #080303;
  --color-bg-light: #f2f2f2;
  --color-bg-white: #ffffff;
  --color-border: rgba(8, 3, 3, 0.15);
  --color-text: #080303;
  --color-text-muted: rgba(8, 3, 3, 0.7);
  --color-bg-section-alt: #f7f5f2;
  --padding-global: 64px;
  --padding-section-sm: 48px;
  --padding-section-md: 80px;
  --padding-section-lg: 112px;
  --max-width: 1280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* NAVBAR */
.navbar {
  background: var(--color-bg-light);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--padding-global);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo {
  height: 36px;
  width: auto;
}

.navbar .nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.navbar .nav-links a {
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.navbar .nav-links a:hover {
  opacity: 0.7;
}

.navbar .nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.navbar .hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-light);
  z-index: 99;
  padding: 32px var(--padding-global);
  flex-direction: column;
  gap: 24px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  display: block;
  width: 100%;
  font-size: 18px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--color-plantation);
  color: var(--color-white);
  padding: 10px 24px;
  border: 1px solid var(--color-plantation);
}

.btn-primary:hover {
  background: var(--color-plantation-hover);
}

.btn-primary-sm {
  background: var(--color-plantation);
  color: var(--color-white);
  padding: 8px 20px;
  border: 1px solid var(--color-plantation);
}

.btn-primary-sm:hover {
  background: var(--color-plantation-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  padding: 10px 24px;
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.03);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  padding: 10px 24px;
  border: 1px solid var(--color-text);
}

.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-white);
}

/* SECTIONS */
.section {
  padding: var(--padding-section-md) var(--padding-global);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section .container {
  max-width: var(--max-width);
  width: 100%;
}

.section-alt {
  background: var(--color-bg-light);
}

.section-white {
  background: var(--color-white);
}

.section-dark {
  background: var(--color-neutral-darkest);
  color: var(--color-white);
}

/* TYPOGRAPHY */
.heading-1 {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.56px;
}

.heading-2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.48px;
}

.heading-3 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.heading-4 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.32px;
}

.heading-5 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.24px;
}

.heading-6 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

.text-medium {
  font-size: 18px;
  line-height: 1.5;
}

.text-regular {
  font-size: 16px;
  line-height: 1.5;
}

.text-small {
  font-size: 14px;
  line-height: 1.5;
}

.text-xs {
  font-size: 12px;
  line-height: 1.5;
}

.label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

/* CARDS */
.card {
  border: 1px solid var(--color-border);
  background: var(--color-white);
  overflow: hidden !important;
}

.card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

/* FOOTER */
.footer {
  background: var(--color-white);
  padding: 80px var(--padding-global) 32px;
}

.footer .container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 48px;
}

.footer-left {
  max-width: 400px;
}

.footer-logo {
  height: 36px;
  margin-bottom: 24px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 24px;
}

.footer-reach {
  margin-bottom: 24px;
}

.footer-reach h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-reach a {
  display: block;
  font-size: 14px;
  color: var(--color-text);
  text-decoration: underline;
  margin-bottom: 4px;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social a {
  font-size: 20px;
  color: var(--color-text);
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav a {
  font-size: 14px;
  line-height: 1.5;
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 14px;
  text-decoration: underline;
}

.footer-disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* FORMS */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-plantation);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10L6 8z' fill='%23080303'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--color-plantation);
}

.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.radio-option input[type="radio"] {
  accent-color: var(--color-plantation);
}

/* FAQ ACCORDION */
.faq-item {
  border: 1px solid var(--color-border);
  padding: 24px;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
}

.faq-question .icon {
  font-size: 24px;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-answer {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.5;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

/* LINK ARROW */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: gap 0.2s;
}

.link-arrow:hover {
  gap: 12px;
}

.link-arrow::after {
  content: '\2192';
}

/* TWO-COLUMN LAYOUTS */
.split {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.split--center {
  align-items: center;
}

.split > .col {
  flex: 1 1 0;
  min-width: 0;
}

.split > .col-wide {
  flex: 0 0 640px;
}

/* HERO CARD (Gap Assessment) */
.hero-card {
  display: flex;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  overflow: hidden !important;
}

.hero-card .hero-card-content {
  flex: 1 1 0;
  min-width: 0;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}

.hero-card .hero-card-image {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 1/1;
}

.hero-card .hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT IMAGE (text left, image right) */
.content-image {
  display: flex;
  gap: 80px;
  align-items: center;
}

.content-image .content-side {
  flex: 1 1 0;
  min-width: 0;
}

.content-image .image-side {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 600/640;
}

.content-image .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CARDS ROW (3-up) */
.cards-row {
  display: flex;
  gap: 32px;
}

.cards-row .card-featured {
  flex: 0 0 640px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  overflow: hidden !important;
}

.cards-row .card-featured .card-body {
  padding: 48px;
}

.cards-row .card-small {
  flex: 1 1 0;
  min-width: 0;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  overflow: hidden !important;
  display: flex;
  flex-direction: column;
}

.cards-row .card-small .card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* FAQ cards variant (green bg) */
.cards-row--green .card-featured {
  background: #d4dbd7;
}

.cards-row--green .card-small {
  background: #d4dbd7;
}

/* GUIDE CTA (dark bg with image overlay) */
.guide-cta {
  position: relative;
  background: var(--color-neutral-darkest);
  overflow: hidden !important;
}

.guide-cta .guide-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.guide-cta .guide-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-cta .guide-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.guide-cta .container {
  position: relative;
  z-index: 1;
}

/* GUIDE FORM */
.guide-form {
  display: flex;
  gap: 16px;
  max-width: 513px;
}

.guide-form .form-input {
  flex: 1;
}

/* ICON PLACEHOLDER */
.icon-48 {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-48 svg {
  width: 32px;
  height: 32px;
}

/* CONTACT INFO */
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-row .icon-24 {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* SECTION BACKGROUNDS */
.section-green {
  background: #e9edeb;
}

/* CENTERED TEXT SECTION */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-768 {
  max-width: 768px;
}

/* SPACING UTILITIES */
.gap-8 { gap: 8px; }
.gap-14 { gap: 14px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-80 { gap: 80px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-16 { margin-top: 16px; }

.flex-col { display: flex; flex-direction: column; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.w-full { width: 100%; }

/* LIST STYLE */
.content-list {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-list li {
  font-size: 16px;
  line-height: 1.5;
}

/* FORM INPUT LIGHT BG */
.form-input-light,
.form-select-light,
.form-textarea-light {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  background: rgba(8, 3, 3, 0.05);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s;
  height: 48px;
}

.form-input-light:focus,
.form-select-light:focus,
.form-textarea-light:focus {
  border-color: var(--color-plantation);
}

.form-select-light {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10L6 8z' fill='%23080303'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  background-color: rgba(8, 3, 3, 0.05);
}

.form-textarea-light {
  min-height: 180px;
  height: auto;
  resize: vertical;
}

/* TAG */
.tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 8px;
  border: 1px solid var(--color-border);
  line-height: 1;
}

/* BLOG LISTING */
.blog-hero {
  background: var(--color-bg-light);
  padding: var(--padding-section-lg) var(--padding-global);
  display: flex;
  justify-content: center;
  overflow: hidden !important;
}

.blog-hero .container {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-hero-content {
  max-width: 768px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.blog-section {
  background: var(--color-white);
  padding: var(--padding-section-lg) var(--padding-global);
  display: flex;
  justify-content: center;
  overflow: hidden !important;
}

.blog-section .container {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.blog-section-title {
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-section-title .tagline {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.blog-section-title .content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  overflow: hidden !important;
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.blog-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(8, 3, 3, 0.05);
  border: 1px solid var(--color-border);
}

.blog-read-time {
  font-size: 14px;
  font-weight: 600;
}

.blog-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  transition: gap 0.2s;
}

.blog-card-link:hover {
  gap: 12px;
}

.blog-card-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.blog-actions {
  display: flex;
  justify-content: flex-end;
}

/* NEWSLETTER CTA */
.newsletter-cta {
  background: #e9edeb;
  padding: var(--padding-section-lg) var(--padding-global);
  display: flex;
  justify-content: center;
  overflow: hidden !important;
}

.newsletter-cta .container {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  justify-content: center;
}

.newsletter-cta-content {
  max-width: 768px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.newsletter-heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.newsletter-form-wrapper {
  width: 513px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 8px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  border: 1px solid var(--color-border);
  background: rgba(8, 3, 3, 0.05);
  color: var(--color-text);
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(8, 3, 3, 0.6);
}

.newsletter-form input:focus {
  border-color: var(--color-plantation);
}

.newsletter-disclaimer {
  font-size: 12px;
  text-align: center;
  line-height: 1.5;
}

/* BLOG POST */
.blog-post-header {
  background: var(--color-bg-light);
  padding: var(--padding-section-lg) var(--padding-global);
  display: flex;
  justify-content: center;
  overflow: hidden !important;
}

.blog-post-header .container {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}

.blog-post-header-content {
  max-width: 768px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.blog-post-header-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.breadcrumbs svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.blog-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.blog-post-author {
  display: flex;
  gap: 16px;
  align-items: center;
}

.blog-post-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-post-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-post-author-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.blog-post-author-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.blog-post-author-date .dot {
  font-size: 18px;
}

.share-buttons {
  display: flex;
  gap: 8px;
}

.share-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden !important;
  transition: opacity 0.2s;
}

.share-btn:hover {
  opacity: 0.7;
}

.share-btn svg {
  width: 24px;
  height: 24px;
}

.blog-post-hero-image {
  width: 100%;
  aspect-ratio: 1280/600;
  object-fit: cover;
}

/* BLOG POST BODY */
.blog-post-body {
  background: var(--color-white);
  padding: var(--padding-section-lg) var(--padding-global);
  display: flex;
  justify-content: center;
  overflow: hidden !important;
}

.blog-post-body .container {
  max-width: var(--max-width);
  width: 100%;
}

.blog-post-layout {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}

/* TOC Sidebar */
.blog-toc {
  width: 320px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.blog-toc-title {
  margin-bottom: 16px;
}

.blog-toc-links {
  display: flex;
  flex-direction: column;
}

.blog-toc-link {
  padding: 12px 16px;
  font-size: 18px;
  line-height: 1.5;
  transition: background 0.2s;
}

.blog-toc-link:hover {
  background: var(--color-bg-light);
}

.blog-toc-link.active {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  font-weight: 700;
}

.blog-toc-link.level-2 {
  padding-left: 32px;
}

.blog-toc-link.level-3 {
  padding-left: 48px;
}

.blog-toc-link.level-4 {
  padding-left: 64px;
}

.blog-toc-link.level-5 {
  padding-left: 80px;
}

/* Article Content */
.blog-article {
  flex: 1;
  max-width: 768px;
  min-width: 0;
}

.blog-article h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.48px;
  padding-bottom: 16px;
}

.blog-article h3 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.4px;
  padding: 24px 0;
}

.blog-article h4 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.32px;
  padding: 24px 0 20px;
}

.blog-article h5 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.24px;
  padding: 20px 0 16px;
}

.blog-article h6 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.2px;
  padding: 20px 0 16px;
}

.blog-article p {
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 16px;
}

.blog-article .lead {
  font-weight: 700;
}

.blog-article .article-image-block {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-article .article-image-block img {
  width: 100%;
  aspect-ratio: 768/480;
  object-fit: cover;
}

.blog-article .image-caption {
  display: flex;
  gap: 8px;
  align-items: stretch;
  font-size: 14px;
  line-height: 1.5;
}

.blog-article .image-caption::before {
  content: '';
  width: 2px;
  background: var(--color-border);
  flex-shrink: 0;
}

.blog-article blockquote {
  padding: 36px 0;
  display: flex;
  gap: 20px;
}

.blog-article blockquote::before {
  content: '';
  width: 2px;
  background: var(--color-border);
  flex-shrink: 0;
}

.blog-article blockquote p {
  font-size: 20px;
  font-style: italic;
  line-height: 28px;
  padding-bottom: 0;
}

.blog-article ul {
  padding-left: 24px;
  padding-bottom: 16px;
}

.blog-article ul li {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.blog-article .blog-table-wrap {
  overflow-x: auto;
  padding-bottom: 16px;
}

.blog-article table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
}

.blog-article th,
.blog-article td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--color-border);
  vertical-align: top;
}

.blog-article th {
  background: var(--color-bg-light);
  font-weight: 600;
  white-space: nowrap;
}

.blog-article hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 8px 0 24px;
}

/* ABOUT ADVISOR */
.about-advisor {
  background: var(--color-white);
  padding: var(--padding-section-lg) var(--padding-global);
  display: flex;
  justify-content: center;
  overflow: hidden !important;
}

.about-advisor .container {
  max-width: var(--max-width);
  width: 100%;
}

.about-advisor-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.about-advisor-content .left,
.about-advisor-content .right {
  flex: 1;
  min-width: 0;
}

/* POST CTA */
.post-cta {
  background: #e9edeb;
  padding: var(--padding-section-lg) var(--padding-global);
  display: flex;
  justify-content: center;
  overflow: hidden !important;
}

.post-cta .container {
  max-width: var(--max-width);
  width: 100%;
}

.post-cta-card {
  background: #d4dbd7;
  border: 1px solid var(--color-border);
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 352px;
  text-align: center;
}

.post-cta-inner {
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.post-cta-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  :root {
    --padding-global: 20px;
    --padding-section-md: 48px;
    --padding-section-lg: 64px;
  }

  .navbar { height: 64px; }
  .mobile-menu { top: 64px; }

  .heading-1 { font-size: 36px; }
  .heading-2 { font-size: 32px; }
  .heading-3 { font-size: 28px; }
  .heading-4 { font-size: 24px; }
  .heading-5 { font-size: 20px; }
  .text-medium { font-size: 16px; }

  .navbar .nav-links,
  .navbar .btn-primary-sm {
    display: none;
  }

  .navbar .hamburger {
    display: flex;
  }

  .footer-main {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .hero-card {
    flex-direction: column;
  }

  .hero-card .hero-card-content {
    padding: 32px 20px;
  }

  .hero-card .hero-card-image {
    aspect-ratio: 16/10;
  }

  .split {
    flex-direction: column;
    gap: 40px;
  }

  .split > .col-wide {
    flex: none;
    width: 100%;
  }

  .content-image {
    flex-direction: column;
    gap: 40px;
  }

  .content-image .image-side {
    aspect-ratio: 16/10;
  }

  .cards-row {
    flex-direction: column;
  }

  .cards-row .card-featured {
    flex: none;
    width: 100%;
  }

  .cards-row .card-featured .card-body {
    padding: 32px 20px;
  }

  .guide-form {
    flex-direction: column;
    max-width: 100%;
  }

  /* Blog responsive */
  .blog-cards-row {
    grid-template-columns: 1fr;
  }

  .blog-article h2 { font-size: 32px; }
  .blog-article h3 { font-size: 28px; }
  .blog-article h4 { font-size: 24px; }
  .blog-article h5 { font-size: 20px; }
  .blog-article h6 { font-size: 18px; }

  .blog-article th,
  .blog-article td {
    padding: 10px 12px;
    font-size: 14px;
  }

  .blog-post-layout {
    flex-direction: column;
  }

  .blog-toc {
    width: 100%;
    position: static;
  }

  .blog-post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form-wrapper {
    width: 100%;
  }

  .about-advisor-content {
    flex-direction: column;
    gap: 40px;
  }

  .post-cta-card {
    padding: 32px 20px;
  }
}
