body.learning-path-blog-template,
body.single-post,
body.category,
body.archive {
  --lp-purple: #5b4fe9;
  --lp-purple-dark: #1a1040;
  --lp-lavender: #f5f3ff;
  --lp-ink: #0b0917;
  --lp-body: #1a1040;
  --lp-muted: #6b6890;
  --lp-line: rgba(26, 16, 64, 0.1);
  --lp-shadow-soft: 0 20px 60px rgba(14, 18, 45, 0.08);
  --lp-shadow-card: 0 28px 60px rgba(17, 11, 39, 0.08);
  --lp-shadow-hero: 0 32px 80px rgba(18, 12, 42, 0.16);
  --lp-radius-xl: 32px;
  --lp-radius-lg: 24px;
  --lp-radius-md: 20px;
  --lp-radius-sm: 14px;
  --lp-container: min(1180px, calc(100% - 40px));
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--lp-body);
  background:
    radial-gradient(42% 34% at 14% 4%, rgba(91, 79, 233, 0.08), transparent 68%),
    linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.learning-path-blog-template *,
body.single-post *,
body.category *,
body.archive * {
  box-sizing: border-box;
}

body.learning-path-blog-template img,
body.single-post img,
body.category img,
body.archive img,
body.learning-path-blog-template svg,
body.single-post svg,
body.category svg,
body.archive svg {
  display: block;
  max-width: 100%;
}

body.learning-path-blog-template a,
body.single-post a,
body.category a,
body.archive a {
  color: inherit;
  text-decoration: none;
}

body.learning-path-blog-template .container,
body.single-post .container,
body.category .container,
body.archive .container {
  width: var(--lp-container);
  margin: 0 auto;
}

body.learning-path-blog-template .section,
body.single-post .section,
body.category .section,
body.archive .section {
  padding: 82px 0;
}

body.learning-path-blog-template .section-tint,
body.single-post .section-tint,
body.category .section-tint,
body.archive .section-tint {
  background: var(--lp-lavender);
}

body.learning-path-blog-template h1,
body.learning-path-blog-template h2,
body.learning-path-blog-template h3,
body.learning-path-blog-template h4,
body.single-post h1,
body.single-post h2,
body.single-post h3,
body.single-post h4,
body.category h1,
body.category h2,
body.category h3,
body.category h4,
body.archive h1,
body.archive h2,
body.archive h3,
body.archive h4 {
  margin: 0;
  color: var(--lp-ink);
  font-family: "Cabinet Grotesk", "DM Sans", Arial, sans-serif;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

body.learning-path-blog-template h1,
body.single-post h1,
body.category h1,
body.archive h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  margin-bottom: 18px;
}

body.learning-path-blog-template h2,
body.single-post h2,
body.category h2,
body.archive h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 18px;
}

body.learning-path-blog-template h3,
body.single-post h3,
body.category h3,
body.archive h3 {
  font-size: 1.5rem;
}

body.learning-path-blog-template p,
body.single-post p,
body.category p,
body.archive p {
  margin: 0;
  color: var(--lp-muted);
}

.learning-path-blog-page .lead,
.learning-path-blog-archive .lead,
.learning-path-post-template .lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 760px;
}

.site-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 58%, rgba(255, 255, 255, 0) 100%);
}

.site-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(12, 17, 36, 0.06);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(26, 16, 64, 0.08);
  box-shadow: 0 14px 34px rgba(9, 7, 24, 0.12);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cabinet Grotesk", "DM Sans", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--lp-ink);
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4363ff;
  color: #ffffff;
  font-family: "Cabinet Grotesk", "DM Sans", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: 28px;
}

.nav-links a {
  display: inline-flex;
  color: rgba(26, 16, 64, 0.84);
  font-size: 1rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.legal-footer-links a:hover {
  color: var(--lp-purple);
}

.nav-actions {
  justify-content: flex-end;
  gap: 12px;
}

.nav-pill,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-pill,
.button-primary {
  background: var(--lp-purple);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(91, 79, 233, 0.22);
}

.nav-pill-secondary,
.button-secondary {
  border-color: rgba(91, 79, 233, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--lp-body);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(91, 79, 233, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--lp-body);
  cursor: pointer;
  touch-action: manipulation;
  box-shadow: 0 8px 20px rgba(17, 11, 39, 0.06);
}

.nav-toggle-bars {
  display: grid;
  gap: 4px;
}

.nav-toggle-bars span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

.nav-toggle-label {
  margin-left: 10px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-mobile-panel {
  display: contents;
}

.nav-mobile-header,
.nav-mobile-close {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--lp-purple);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.hero-shell,
.blog-feature-card,
.blog-card,
.category-card,
.social-widget-card,
.blog-cta-shell,
.blog-empty-state,
.article-shell,
.related-card,
.site-footer,
.legal-footer {
  border: 1px solid rgba(91, 79, 233, 0.08);
  border-radius: var(--lp-radius-lg);
  background: #ffffff;
  box-shadow: var(--lp-shadow-card);
}

.hero-shell {
  padding: 44px;
  background:
    radial-gradient(120% 150% at 100% 0%, rgba(112, 96, 255, 0.18), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 244, 255, 0.98));
  box-shadow: var(--lp-shadow-hero);
}

.hero-actions,
.blog-cta-actions,
.post-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.blog-grid,
.category-grid,
.social-widget-grid,
.related-grid,
.footer-grid,
.legal-footer-grid,
.legal-footer-links {
  display: grid;
  gap: 20px;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-widget-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-feature-card,
.blog-card,
.social-widget-card,
.related-card,
.blog-empty-state,
.blog-cta-shell {
  overflow: hidden;
}

.blog-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: stretch;
}

.blog-feature-card__media,
.blog-card__media {
  background: linear-gradient(180deg, rgba(245, 243, 255, 0.8), rgba(255, 255, 255, 0.98));
}

.blog-feature-card__media a,
.blog-card__media a {
  display: block;
  height: 100%;
}

.blog-feature-card__media img,
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-feature-card__body,
.blog-card__body,
.related-card,
.category-card,
.social-widget-card,
.blog-empty-state,
.blog-cta-shell {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.blog-card {
  display: grid;
  min-height: 100%;
}

.blog-card__body {
  align-content: start;
}

.blog-card__title,
.blog-feature-card__title,
.related-card h3 {
  font-size: 1.7rem;
}

.blog-card__title a,
.blog-feature-card__title a,
.related-card h3 a {
  color: var(--lp-ink);
}

.blog-card__excerpt,
.blog-feature-card__excerpt,
.related-card p,
.category-card p {
  font-size: 0.98rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--lp-muted);
}

.category-badge,
.category-card__count,
.social-widget-card__platform {
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 79, 233, 0.08);
  color: var(--lp-purple);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-card {
  min-height: 100%;
  text-decoration: none !important;
}

.category-card__title {
  font-size: 1.28rem;
}

.category-card__arrow {
  font-weight: 700;
  color: var(--lp-purple);
}

.social-widget-card__handle {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--lp-ink);
}

.social-widget-card__button {
  margin-top: 8px;
}

.blog-empty-state {
  justify-items: start;
  background: linear-gradient(180deg, rgba(245, 243, 255, 0.9), rgba(255, 255, 255, 0.98));
}

.blog-pagination {
  margin-top: 26px;
}

.blog-pagination .nav-links {
  justify-content: center;
  gap: 10px;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(91, 79, 233, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--lp-body);
  font-weight: 700;
}

.blog-pagination .page-numbers.current {
  background: var(--lp-purple);
  border-color: var(--lp-purple);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(91, 79, 233, 0.2);
}

.article-shell {
  padding: 36px;
}

.article-shell__header {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.article-shell__media {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 24px;
}

.article-shell__media img {
  width: 100%;
  height: auto;
}

.article-content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--lp-body);
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-content > * + * {
  margin-top: 1.25em;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 1.7em;
  margin-bottom: 0.4em;
}

.article-content ul,
.article-content ol {
  padding-left: 1.2rem;
  color: var(--lp-body);
}

.article-content li + li {
  margin-top: 0.55em;
}

.article-content blockquote {
  margin: 1.6em 0;
  padding: 22px 24px;
  border-left: 4px solid var(--lp-purple);
  border-radius: 0 20px 20px 0;
  background: rgba(245, 243, 255, 0.86);
  color: var(--lp-ink);
  font-family: "Cabinet Grotesk", "DM Sans", Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.article-content a {
  color: var(--lp-purple);
  text-decoration: underline;
}

.article-cta {
  max-width: 760px;
  margin: 40px auto 0;
}

.site-footer {
  margin-top: 40px;
  padding: 44px 0;
  background: #ffffff;
}

.footer-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand p {
  max-width: 22ch;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column h4 {
  font-size: 1.05rem;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.legal-footer-links a,
.coming-soon {
  color: rgba(26, 16, 64, 0.78);
  font-size: 0.96rem;
}

.coming-soon {
  opacity: 0.68;
}

.legal-footer {
  margin-top: 18px;
  padding: 26px 0 34px;
  background: #ffffff;
}

.legal-footer-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
}

.legal-footer-brandmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lp-ink);
  font-family: "Cabinet Grotesk", "DM Sans", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.legal-footer-brandmark small {
  display: block;
  margin-top: 6px;
  color: var(--lp-muted);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
}

.legal-footer-right {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.legal-footer-links {
  grid-template-columns: repeat(5, auto);
  gap: 12px 18px;
}

.legal-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: flex-end;
  color: var(--lp-muted);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .category-grid,
  .blog-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    overflow-y: auto;
  }

  .nav-mobile-panel[hidden] {
    display: none !important;
  }

  .nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 6px;
  }

  .nav-mobile-close {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(91, 79, 233, 0.14);
    border-radius: 14px;
    background: #ffffff;
    color: var(--lp-body);
    cursor: pointer;
  }

  .nav-mobile-close-icon,
  .nav-mobile-close-icon::before {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    display: block;
    position: absolute;
  }

  .nav-mobile-close-icon {
    transform: rotate(45deg);
  }

  .nav-mobile-close-icon::before {
    transform: rotate(90deg);
  }

  .nav-mobile-panel .nav-links,
  .nav-mobile-panel .nav-actions {
    display: grid;
    gap: 12px;
  }

  .nav-mobile-panel .nav-links a {
    min-height: 56px;
    padding: 0 4px;
    border-bottom: 1px solid rgba(26, 16, 64, 0.08);
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--lp-ink);
  }

  .nav-mobile-panel .nav-actions {
    margin-top: 10px;
  }

  .nav-pill,
  .button,
  .hero-actions .button,
  .blog-cta-actions .button,
  .post-cta-actions .button {
    width: 100%;
  }

  .blog-feature-card,
  .social-widget-grid,
  .footer-grid,
  .legal-footer-grid {
    grid-template-columns: 1fr;
  }

  .legal-footer-right {
    justify-items: start;
  }

  .legal-footer-links {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .legal-footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  body.learning-path-blog-template .container,
  body.single-post .container,
  body.category .container,
  body.archive .container {
    width: min(100% - 28px, 1180px);
  }

  body.learning-path-blog-template .section,
  body.single-post .section,
  body.category .section,
  body.archive .section {
    padding: 64px 0;
  }

  .hero-shell,
  .blog-feature-card__body,
  .blog-card__body,
  .related-card,
  .category-card,
  .social-widget-card,
  .blog-empty-state,
  .blog-cta-shell,
  .article-shell {
    padding: 22px;
  }

  .blog-grid,
  .category-grid,
  .social-widget-grid,
  .related-grid,
  .legal-footer-links {
    grid-template-columns: 1fr;
  }

  .article-shell {
    padding: 26px 22px;
  }
}
