@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,500;1,400&family=DM+Sans:wght@400;500&display=swap');

/* ============================================================
   BASE RESET & GLOBAL
   ============================================================ */
html, body {
  margin: 0;
  padding: 0;
}

.lbt-wrap *, .lbt-wrap *::before, .lbt-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.lbt-wrap {
  font-family: 'DM Sans', sans-serif;
  background: #FAF7F2;
  color: #1A1A2E;
  line-height: 1.7;
  min-height: 100vh;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.lbt-nav {
  border-bottom: 1px solid #E8E4DE;
  background: #FAF7F2;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 2rem;
}

.lbt-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 1.2rem 0;
}

.lbt-logo {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: #1A1A2E;
  text-decoration: none;
}

.lbt-nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.lbt-nav-links a {
  font-size: 14px;
  color: #666;
  text-decoration: none;
}

.lbt-nav-links a:hover {
  color: #2D4A3E;
}

.lbt-nav-cta {
  background: #2D4A3E;
  color: #FAF7F2;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  font-weight: 500;
}

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
.lbt-hero {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid #E8E4DE;
}

.lbt-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2D4A3E;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.lbt-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 1.4rem;
  max-width: 580px;
}

.lbt-h1 em {
  font-style: italic;
  color: #E8845C;
}

.lbt-subhead {
  font-size: 17px;
  line-height: 1.75;
  color: #555;
  max-width: 500px;
  margin-bottom: 2.2rem;
}

.lbt-hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.lbt-btn-primary {
  background: #2D4A3E;
  color: #FAF7F2;
  padding: 13px 26px;
  border-radius: 28px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

.lbt-btn-primary:hover {
  opacity: 0.85;
}

.lbt-btn-ghost {
  font-size: 15px;
  color: #555;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lbt-social-proof {
  font-size: 13px;
  color: #999;
}

.lbt-social-proof strong {
  color: #2D4A3E;
  font-weight: 500;
}

/* ============================================================
   PILLARS
   ============================================================ */
.lbt-pillars-outer {
  padding: 0 2rem;
}

.lbt-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid #E8E4DE;
  border-bottom: 1px solid #E8E4DE;
}

.lbt-pillar {
  padding: 2.5rem 1rem;
  border-right: 1px solid #E8E4DE;
  background: #FAF7F2;
}

.lbt-pillar:first-child {
  padding-left: 1rem;
}

.lbt-pillar:last-child {
  border-right: none;
  padding-right: 1rem;
}

.lbt-pillar-symbol {
  font-size: 22px;
  margin-bottom: 1rem;
  color: #2D4A3E;
}

.lbt-pillar-title {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1A1A2E;
}

.lbt-pillar-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

/* ============================================================
   HOMEPAGE ARTICLES SECTION
   ============================================================ */
.lbt-articles {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-bottom: 1px solid #E8E4DE;
}

.lbt-articles .lbt-section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* Homepage article listing style */
.lbt-articles .lbt-article {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.4rem 0;
  border-bottom: 1px solid #E8E4DE;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.lbt-articles .lbt-article:last-child {
  border-bottom: none;
}

.lbt-articles .lbt-article:hover {
  opacity: 0.75;
}

.lbt-articles .lbt-article-num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: #E8E4DE;
  font-weight: 400;
  flex-shrink: 0;
  padding-top: 2px;
}

/* Shared article fields used in both contexts */
.lbt-article-tag {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2D4A3E;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.lbt-article-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 0.4rem;
  color: #1A1A2E;
}

.lbt-article-meta {
  font-size: 13px;
  color: #999;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.lbt-newsletter-wrap {
  padding: 3rem 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.lbt-newsletter {
  background: #2D4A3E;
  border-radius: 16px;
  padding: 3.5rem;
  color: #FAF7F2;
}

/* When newsletter is inside .lbt-page (about/start-here), slight style adjust */
.lbt-page .lbt-newsletter {
  padding: 3rem;
  margin-top: 4rem;
}

.lbt-nl-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55);
  font-weight: 500;
  margin-bottom: 1rem;
}

.lbt-nl-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #FAF7F2;
}

.lbt-nl-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(250, 247, 242, 0.7);
  max-width: 420px;
  margin-bottom: 2rem;
}

.lbt-nl-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.lbt-nl-input {
  flex: 1;
  min-width: 220px;
  padding: 12px 18px;
  border-radius: 28px;
  border: 1px solid rgba(250, 247, 242, 0.25);
  background: rgba(250, 247, 242, 0.1);
  color: #FAF7F2;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
}

.lbt-nl-input::placeholder {
  color: rgba(250, 247, 242, 0.4);
}

.lbt-nl-submit {
  background: #E8845C;
  color: #FAF7F2;
  padding: 12px 24px;
  border-radius: 28px;
  border: none;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.lbt-nl-trust {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.45);
}

/* ============================================================
   FOOTER
   ============================================================ */
.lbt-footer-inner {
  border-top: 1px solid #E8E4DE;
  padding: 1.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.lbt-footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 500;
  color: #1A1A2E;
  text-decoration: none;
}

.lbt-footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.lbt-footer-links a {
  font-size: 13px;
  color: #999;
  text-decoration: none;
}

.lbt-footer-links a:hover {
  color: #2D4A3E;
}

/* ============================================================
   STATIC PAGES (about, start-here)
   ============================================================ */
.lbt-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.lbt-page-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2D4A3E;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.lbt-page-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.lbt-page-h1 em {
  font-style: italic;
  color: #E8845C;
}

.lbt-divider {
  width: 48px;
  height: 2px;
  background: #2D4A3E;
  margin: 2rem 0 3rem;
}

.lbt-intro {
  font-size: 17px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 1rem;
  max-width: 580px;
}

/* Prose for static pages */
.lbt-prose p {
  font-size: 17px;
  line-height: 1.85;
  color: #333;
  margin-bottom: 1.5rem;
}

.lbt-prose p:last-child {
  margin-bottom: 0;
}

.lbt-prose strong {
  font-weight: 500;
  color: #1A1A2E;
}

.lbt-prose em {
  font-style: italic;
  color: #E8845C;
}

.lbt-prose h2 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  color: #1A1A2E;
  margin: 3rem 0 1.2rem;
  line-height: 1.25;
}

.lbt-prose h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: #1A1A2E;
  margin: 2rem 0 0.8rem;
}

.lbt-prose ul {
  margin: 0 0 1.6rem 1.5rem;
}

.lbt-prose ul li {
  margin-bottom: 0.6rem;
}

.lbt-prose a {
  color: #2D4A3E;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lbt-section-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  color: #1A1A2E;
  margin: 3rem 0 1rem;
}

/* ============================================================
   TOPICS GRID (about page)
   ============================================================ */
.lbt-topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 1.5rem 0 2.5rem;
}

.lbt-topic {
  background: #fff;
  border: 1px solid #E8E4DE;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
}

.lbt-topic-icon {
  font-size: 18px;
  margin-bottom: 0.5rem;
  color: #2D4A3E;
}

.lbt-topic-title {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: #1A1A2E;
}

.lbt-topic-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* ============================================================
   PULLQUOTE
   Terracotta by default (articles), green variant for about page
   ============================================================ */
.lbt-pullquote {
  border-left: 3px solid #E8845C;
  padding: 1.2rem 1.8rem;
  margin: 2.5rem 0;
  background: #FDF6F3;
  border-radius: 0 8px 8px 0;
}

.lbt-pullquote p {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  line-height: 1.5;
  color: #1A1A2E;
  font-style: italic;
  margin: 0;
}

.lbt-pullquote-green {
  border-left-color: #2D4A3E;
  background: #F3EFE8;
}

/* ============================================================
   START HERE — TRACK STYLES
   ============================================================ */
.lbt-track-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.lbt-track {
  margin-bottom: 3.5rem;
}

.lbt-track-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E8E4DE;
}

.lbt-track-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.icon-green {
  background: #E1F0EB;
  color: #2D4A3E;
}

.icon-amber {
  background: #FDF0E6;
  color: #C4672A;
}

.icon-blue {
  background: #E6EEF8;
  color: #2D5F8A;
}

.lbt-track-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: #1A1A2E;
}

.lbt-track-subtitle {
  font-size: 14px;
  color: #666;
  margin-top: 2px;
}

/* ============================================================
   START HERE — ARTICLE LIST (scoped)
   ============================================================ */
.lbt-article-list {
  display: flex;
  flex-direction: column;
}

.lbt-article-list .lbt-article {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 1.2rem 0;
  border-bottom: 1px solid #E8E4DE;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.lbt-article-list .lbt-article:last-child {
  border-bottom: none;
}

.lbt-article-list .lbt-article:hover {
  opacity: 0.7;
}

.lbt-article-list .lbt-article-num {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  color: #ccc;
  font-weight: 400;
  min-width: 24px;
  padding-top: 3px;
}

.lbt-article-content {
  flex: 1;
}

.lbt-article-arrow {
  font-size: 16px;
  color: #ccc;
  padding-top: 4px;
  flex-shrink: 0;
}

/* ============================================================
   QUIZ BOX (start here)
   ============================================================ */
.lbt-quiz-box {
  background: #fff;
  border: 1px solid #E8E4DE;
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem 0;
}

.lbt-quiz-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2D4A3E;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.lbt-quiz-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: #1A1A2E;
}

.lbt-quiz-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.lbt-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lbt-quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid #E8E4DE;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  color: #1A1A2E;
  background: #FAF7F2;
  transition: all 0.2s;
}

.lbt-quiz-option:hover {
  border-color: #2D4A3E;
  background: #F0F5F3;
}

.lbt-quiz-option-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.lbt-quiz-option-text {
  font-size: 15px;
  line-height: 1.4;
  flex: 1;
}

.lbt-quiz-option-arrow {
  color: #ccc;
  font-size: 16px;
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.lbt-article-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.lbt-article-meta-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.lbt-cat-tag {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FAF7F2;
  background: #2D4A3E;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
  text-decoration: none;
}

.lbt-read-time {
  font-size: 13px;
  color: #999;
}

.lbt-date {
  font-size: 13px;
  color: #999;
}

.lbt-dot {
  color: #ccc;
}

.lbt-article-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.lbt-article-h1 em {
  font-style: italic;
  color: #E8845C;
}

.lbt-article-intro {
  font-size: 19px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2.5rem;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  border-bottom: 1px solid #E8E4DE;
  padding-bottom: 2.5rem;
}

/* Article prose overrides (slightly different from page prose) */
.lbt-article-wrap .lbt-prose {
  font-size: 17px;
  line-height: 1.9;
  color: #333;
}

.lbt-article-wrap .lbt-prose p {
  margin-bottom: 1.6rem;
  font-size: 17px;
  line-height: 1.9;
  color: #333;
}

.lbt-article-wrap .lbt-prose em {
  font-style: italic;
  color: inherit;
}

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */
.lbt-highlight-box {
  background: #F0F5F3;
  border-radius: 12px;
  padding: 1.8rem 2rem;
  margin: 2.5rem 0;
  border: 1px solid #D4E6DF;
}

.lbt-highlight-box h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: #2D4A3E;
  margin-bottom: 1rem;
}

.lbt-highlight-box ul {
  margin-left: 1.2rem;
}

.lbt-highlight-box ul li {
  font-size: 15px;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.lbt-highlight-box p {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   CTA BOX
   ============================================================ */
.lbt-cta-box {
  background: #2D4A3E;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin: 3rem 0;
  color: #FAF7F2;
}

.lbt-cta-box h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.lbt-cta-box p {
  font-size: 15px;
  color: rgba(250, 247, 242, 0.75);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.lbt-cta-btn {
  display: inline-block;
  background: #E8845C;
  color: #FAF7F2;
  padding: 11px 22px;
  border-radius: 24px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  font-weight: 500;
}

/* ============================================================
   AUTHOR BAR
   ============================================================ */
.lbt-author-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 2rem 0;
  border-top: 1px solid #E8E4DE;
  border-bottom: 1px solid #E8E4DE;
  margin: 3rem 0;
}

.lbt-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #E1F0EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: #2D4A3E;
  flex-shrink: 0;
}

.lbt-author-name {
  font-size: 15px;
  font-weight: 500;
  color: #1A1A2E;
  margin-bottom: 2px;
}

.lbt-author-bio {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* ============================================================
   RELATED LINKS
   ============================================================ */
.lbt-related {
  margin-top: 3rem;
}

.lbt-related-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.lbt-related-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lbt-related-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #E8E4DE;
  text-decoration: none;
  color: #1A1A2E;
  transition: opacity 0.2s;
}

.lbt-related-link:hover {
  opacity: 0.7;
}

.lbt-related-link:last-child {
  border-bottom: none;
}

.lbt-related-link-title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 400;
}

.lbt-related-link-arrow {
  color: #ccc;
  font-size: 16px;
  flex-shrink: 0;
  margin-left: 1rem;
}

/* ============================================================
   NUMBERS BOX (career pivot article)
   ============================================================ */
.lbt-numbers-box {
  background: #fff;
  border: 1px solid #E8E4DE;
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.lbt-numbers-box h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: #1A1A2E;
  margin-bottom: 1.2rem;
}

.lbt-numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lbt-number-item {
  background: #FAF7F2;
  border-radius: 8px;
  padding: 1rem 1.2rem;
}

.lbt-number-value {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  color: #2D4A3E;
  margin-bottom: 4px;
}

.lbt-number-label {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

/* ============================================================
   TIMELINE (career pivot article)
   ============================================================ */
.lbt-timeline {
  margin: 2.5rem 0;
}

.lbt-timeline-item {
  display: flex;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.lbt-timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.lbt-timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2D4A3E;
  margin-top: 5px;
  flex-shrink: 0;
}

.lbt-timeline-line {
  width: 1px;
  background: #E8E4DE;
  flex: 1;
  margin-top: 4px;
}

.lbt-timeline-content {
  padding-bottom: 1rem;
}

.lbt-timeline-month {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2D4A3E;
  font-weight: 500;
  margin-bottom: 4px;
}

.lbt-timeline-text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* ============================================================
   BLOG INDEX
   ============================================================ */
.lbt-blog-header {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  border-bottom: 1px solid #E8E4DE;
}

.lbt-blog-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #1A1A2E;
}

.lbt-blog-intro {
  font-size: 17px;
  color: #555;
  line-height: 1.75;
  max-width: 520px;
}

.lbt-blog-list {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.lbt-blog-post {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid #E8E4DE;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
  gap: 1.5rem;
}

.lbt-blog-post:hover {
  opacity: 0.75;
}

.lbt-blog-post:last-child {
  border-bottom: none;
}

.lbt-blog-post-tag {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2D4A3E;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.lbt-blog-post-title {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 0.4rem;
  color: #1A1A2E;
}

.lbt-blog-post-meta {
  font-size: 13px;
  color: #999;
}

.lbt-blog-post-arrow {
  font-size: 18px;
  color: #ccc;
  flex-shrink: 0;
}

/* ============================================================
   TAG PAGE
   ============================================================ */
.lbt-tag-header {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  border-bottom: 1px solid #E8E4DE;
}

.lbt-tag-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2D4A3E;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.lbt-tag-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #1A1A2E;
}

.lbt-tag-desc {
  font-size: 17px;
  color: #555;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 0.8rem;
}

.lbt-tag-count {
  font-size: 13px;
  color: #999;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.lbt-404 {
  max-width: 520px;
  margin: 0 auto;
  padding: 6rem 2rem 8rem;
  text-align: center;
}

.lbt-404-code {
  font-family: 'Fraunces', serif;
  font-size: 80px;
  font-weight: 400;
  color: #E8E4DE;
  line-height: 1;
  margin-bottom: 1rem;
}

.lbt-404-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400;
  color: #1A1A2E;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lbt-404-text {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.lbt-404-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE — 640px BREAKPOINT
   ============================================================ */
@media (max-width: 640px) {
  .lbt-nav-links {
    display: none;
  }

  .lbt-hero {
    padding: 3rem 1.5rem 2.5rem;
  }

  .lbt-pillars-outer {
    padding: 0 1.5rem;
  }

  .lbt-pillars {
    grid-template-columns: 1fr;
  }

  .lbt-pillar {
    border-right: none;
    border-bottom: 1px solid #E8E4DE;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lbt-pillar:last-child {
    border-bottom: none;
  }

  .lbt-articles {
    padding: 2rem 1.5rem;
  }

  .lbt-newsletter-wrap {
    padding: 2rem 1.5rem;
  }

  .lbt-newsletter,
  .lbt-page .lbt-newsletter {
    padding: 2rem 1.5rem;
  }

  .lbt-page {
    padding: 3rem 1.5rem 4rem;
  }

  .lbt-topics {
    grid-template-columns: 1fr;
  }

  .lbt-article-wrap {
    padding: 2.5rem 1.5rem 4rem;
  }

  .lbt-cta-box {
    padding: 1.5rem;
  }

  .lbt-numbers-grid {
    grid-template-columns: 1fr;
  }

  .lbt-blog-header,
  .lbt-tag-header {
    padding: 3rem 1.5rem 2rem;
  }

  .lbt-blog-list {
    padding: 0 1.5rem 3rem;
  }
}
