/* ═══════════════════════════════════════════════════════════════════
   LYKOS ADVISORY — Blog Styles
   ═══════════════════════════════════════════════════════════════════ */

/* ═══════════════ BLOG LISTING ═══════════════ */

.blog-listing-hero {
  padding-top: 140px;
}

.blog-listing-hero .section-head h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.1;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
}

.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 36px 32px 32px;
  border: var(--border);
  border-radius: var(--radius-lg);
  background: var(--glass);
  transition: all 400ms var(--ease-out);
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 400ms ease;
}

.blog-card:hover {
  border-color: rgba(200, 162, 74, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.blog-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.blog-card-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 12px;
}

.blog-card-excerpt {
  color: var(--off-dim);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 60ch;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card-read {
  font-size: 13px;
  color: var(--off-muted);
  font-weight: 500;
}

.blog-card-arrow {
  width: 20px;
  height: 20px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 300ms var(--ease-out);
}

.blog-card:hover .blog-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════ BLOG POST ═══════════════ */

.blog-post-header {
  padding: 140px 0 48px;
  position: relative;
  z-index: 1;
}

.blog-post-header-inner {
  max-width: 700px;
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--off-muted);
  margin-bottom: 32px;
  transition: color 200ms ease;
}

.blog-back svg {
  width: 18px;
  height: 18px;
  transition: transform 200ms var(--ease-out);
}

.blog-back:hover {
  color: var(--gold);
}

.blog-back:hover svg {
  transform: translateX(-3px);
}

.blog-post-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.blog-post-header h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 20px;
}

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

.blog-post-read {
  font-size: 13px;
  color: var(--off-muted);
  font-weight: 500;
}

/* ═══════════════ POST BODY ═══════════════ */

.blog-post-body {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.container-narrow {
  width: min(700px, calc(100% - 48px));
  margin: 0 auto;
}

.blog-content p {
  color: var(--off-dim);
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 24px;
}

.blog-content p strong {
  color: var(--off);
  font-weight: 600;
}

.blog-content h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 56px 0 24px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  line-height: 1.2;
}

/* ═══════════════ PULL QUOTE / STAT CALLOUT ═══════════════ */

.blog-pullquote {
  margin: 48px 0;
  padding: 0;
}

.blog-pullquote-inner {
  padding: 40px 36px;
  border: 1px solid rgba(200, 162, 74, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(200, 162, 74, 0.04);
  text-align: center;
}

.blog-pullquote-stat {
  display: block;
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 80px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.blog-pullquote-inner p {
  font-size: 18px;
  color: var(--off-dim);
  line-height: 1.6;
  max-width: 48ch;
  margin: 0 auto;
}

/* ═══════════════ EMBEDDED VISUALS ═══════════════ */

.blog-visual {
  margin: 48px -100px;
  position: relative;
}

.blog-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
  display: block;
}

.blog-visual-caption {
  text-align: center;
  font-size: 13px;
  color: var(--off-muted);
  margin: 16px 0 0;
  font-style: italic;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .blog-visual {
    margin-left: -20px;
    margin-right: -20px;
  }
  .blog-visual img {
    border-radius: 8px;
  }
}

@media (max-width: 600px) {
  .blog-visual {
    margin-left: -12px;
    margin-right: -12px;
  }
  .blog-visual img {
    border-radius: 6px;
  }
}

/* ═══════════════ POST FOOTER ═══════════════ */

.blog-post-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(200, 162, 74, 0.12);
}

.blog-post-footer p {
  font-size: 14px;
  color: var(--off-muted);
  font-style: italic;
}

.blog-post-footer a {
  color: var(--gold);
  transition: opacity 200ms ease;
}

.blog-post-footer a:hover {
  opacity: 0.8;
}

/* ═══════════════ RESPONSIVE ═══════════════ */

@media (max-width: 768px) {
  .blog-listing-hero {
    padding-top: 120px;
  }

  .blog-post-header {
    padding-top: 120px;
  }

  .blog-card {
    padding: 28px 24px 24px;
  }

  .blog-card-title {
    font-size: 24px;
  }

  .container-narrow {
    width: calc(100% - 40px);
  }

  .blog-content h2 {
    font-size: 24px;
    margin: 44px 0 20px;
    padding-left: 16px;
  }

  .blog-pullquote-inner {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .blog-post-header h1 {
    font-size: 28px;
  }

  .blog-content p {
    font-size: 16px;
  }

  .blog-pullquote-stat {
    font-size: 48px;
  }
}
