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

html {
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

header {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
}

.navbar {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 1024px) {
  .navbar {
    padding: 0 3rem;
  }
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-left .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
}

.logo-img {
  height: 24px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-dropdown {
  position: relative;
}

.nav-link {
  color: #6b7280;
  text-decoration: none;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  transition: all 0.2s;
  font-weight: 500;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
}

.nav-link:hover {
  color: #1a1a1a;
  background: #f9fafb;
}

.nav-dropdown-trigger {
  padding: 0.5rem 0.75rem;
}

.chevron-icon {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.nav-dropdown-open .chevron-icon {
  transform: rotate(180deg);
}

.nav-right {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn-login {
  color: #1a1a1a;
  text-decoration: none;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  padding: 0.625rem 1.25rem;
  transition: color 0.2s;
  font-weight: 500;
}

.btn-login:hover {
  color: #6b7280;
}

.btn-signup {
  background: #1a1a1a;
  color: white;
  text-decoration: none;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  padding: 0.625rem 1.5rem;
  border-radius: 8px;
  transition: all 0.2s;
  font-weight: 600;
}

.btn-signup:hover {
  background: #333;
  transform: translateY(-1px);
}

main {
  max-width: 100%;
  margin: 0;
  padding: 0;
  padding-top: 64px;
  background: #ffffff;
  min-height: calc(100vh - 200px);
}

.hero {
  background: #ffffff;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid #f3f4f6;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.hero-left {
  margin: 0 auto;
  max-width: 800px;
}

.hero-right {
  margin: 0 auto;
  max-width: 640px;
}

.badge {
  display: inline-flex;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #6b7280;
  background: transparent;
  padding: 0;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  border: none;
}

.hero-title {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.15;
  margin: 0 0 1.25rem 0;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
  line-height: 1.7;
  color: #6b7280;
  margin-top: 1.25rem;
  font-weight: 400;
}

.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.filters {
  display: flex;
  gap: 0.625rem;
  margin-bottom: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 0.625rem 1.25rem;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  border-radius: 24px;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #1a1a1a;
}

.filter-btn.active {
  background: #0a0a0a;
  color: #ffffff;
  border-color: #0a0a0a;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
  padding: 0;
}

.card {
  background: white;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-color: #e5e7eb;
}

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f9fafb;
  position: relative;
}

.card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.25) 0%,
    rgba(118, 75, 162, 0.35) 25%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.card:hover .featured-image {
  transform: scale(1.05);
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-content {
  padding: 1.75rem;
  background: white;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-category {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 0.875rem;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.125rem, 1vw + 0.875rem, 1.375rem);
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.4;
  margin: 0 0 auto 0;
  padding-bottom: 1.5rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  color: #6b7280;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.card-date {
  color: #6b7280;
  font-weight: 500;
}

.card-read-time {
  color: #6b7280;
  font-weight: 600;
}

/* Compact Hero */
.compact-hero {
  background: #ffffff;
  padding: 3rem 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.compact-hero-title {
  font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.2;
  margin: 0.75rem 0 0.5rem 0;
  letter-spacing: -0.02em;
}

.compact-hero-description {
  font-size: clamp(0.9375rem, 0.5vw + 0.8125rem, 1rem);
  line-height: 1.6;
  color: #6b7280;
  margin-top: 0.5rem;
  max-width: 640px;
}

/* Featured Section */
.featured-section {
  margin-bottom: 3rem;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-color: #d1d5db;
}

.featured-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  background: #f9fafb;
}

.featured-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.featured-card:hover .featured-card-image {
  transform: scale(1.03);
}

.featured-placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.featured-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-category {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.featured-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.375rem, 2vw + 0.875rem, 1.75rem);
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.3;
  margin: 0 0 1rem 0;
}

.featured-description {
  font-size: clamp(0.9375rem, 0.5vw + 0.8125rem, 1rem);
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.featured-meta {
  display: flex;
  gap: 1rem;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  color: #9ca3af;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.featured-date,
.featured-read-time {
  font-weight: 500;
}

/* Section Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  font-weight: 600;
  color: #0a0a0a;
  margin: 0;
}

/* Compact Filters */
.compact-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.compact-filter-btn {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 0.5rem 1rem;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.compact-filter-btn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #1a1a1a;
}

.compact-filter-btn.active {
  background: #0a0a0a;
  color: #ffffff;
  border-color: #0a0a0a;
}

/* Compact Grid */
.compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0;
}

.compact-card {
  background: white;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.compact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  border-color: #d1d5db;
}

.compact-card-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #f9fafb;
}

.compact-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.compact-card:hover .compact-card-image img {
  transform: scale(1.05);
}

.compact-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.compact-card-content {
  padding: 1.25rem;
  background: white;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.compact-category {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.compact-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.9375rem, 0.5vw + 0.8125rem, 1.0625rem);
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.4;
  margin: 0 0 0.625rem 0;
}

.compact-description {
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  line-height: 1.5;
  color: #6b7280;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  color: #9ca3af;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding-top: 0.75rem;
  border-top: 1px solid #f3f4f6;
}

.compact-date,
.compact-read-time {
  font-weight: 500;
}

/* Pagination */
.pagination-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #f3f4f6;
  gap: 1rem;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 24px 32px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
  border: 1.5px solid rgba(125, 74, 237, 0.2);
  background: rgb(124, 58, 237);
  color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
  letter-spacing: 0.07px;
  cursor: pointer;
}

.pagination-btn:not(.pagination-disabled):hover {
  background: rgb(110, 50, 220);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 20px -3px, rgba(0, 0, 0, 0.1) 0px 6px 8px -4px;
  transform: translateY(-2px);
}

.pagination-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-arrow {
  font-size: clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
}

.pagination-info {
  flex: 1;
  text-align: center;
}

.pagination-current {
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  color: #6b7280;
  font-weight: 500;
}

/* ========================================
   MEGAMENU STYLES
   ======================================== */

.megamenu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.megamenu-backdrop-visible {
  opacity: 1;
  pointer-events: all;
}

.megamenu {
  position: fixed;
  left: 0;
  right: 0;
  top: 64px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.megamenu-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.megamenu-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

@media (min-width: 1024px) {
  .megamenu-container {
    padding: 2rem 3rem;
  }
}

.megamenu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.megamenu-column {
  display: flex;
  flex-direction: column;
}

.megamenu-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #3b3b3b;
}

.megamenu-items {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.megamenu-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  color: #6b7280;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.megamenu-item:hover {
  background: white;
}

.megamenu-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.megamenu-icon svg {
  width: 16px;
  height: 16px;
  color: #7C3AED;
}

.megamenu-item-content {
  flex: 1;
  min-width: 0;
}

.megamenu-item-name {
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.125rem;
}

.megamenu-item-desc {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.4;
}

.megamenu-cta-image {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  cursor: pointer;
}

.megamenu-cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.megamenu-cta-title:hover {
  text-decoration: underline;
}

.megamenu-cta-desc {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.megamenu-cta-btn {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  background: #7C3AED;
  color: white;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.megamenu-cta-btn:hover {
  background: rgba(124, 58, 237, 0.9);
}

/* ========================================
   SINGLE POST PAGE STYLES
   ======================================== */

.single-post {
  background: white;
  padding: 0;
}

/* Breadcrumb Navigation */
.post-breadcrumb-wrapper {
  margin-bottom: 3rem;
  padding: 1.5rem 0;
}

.post-breadcrumb {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  color: #6b7280;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  padding: 0.875rem 1.25rem;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #f3f4f6;
}

.breadcrumb-link {
  color: #6b7280;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
}

.breadcrumb-link:hover {
  color: #667eea;
}

.breadcrumb-separator {
  color: #d1d5db;
  user-select: none;
  font-weight: 300;
}

.breadcrumb-current {
  color: #0a0a0a;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 400px;
}

@media (max-width: 768px) {
  .breadcrumb-current {
    white-space: normal;
    max-width: 100%;
    overflow: visible;
    text-overflow: clip;
  }
}


.post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.post-layout-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.75rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .post-layout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem 1.5rem;
  }
  
  .post-sidebar-sticky {
    position: static;
  }
}

@media (max-width: 640px) {
  .post-container {
    padding: 0 1.25rem;
  }
  
  .post-layout-grid {
    padding: 1.5rem 1.25rem;
  }
}

.post-main-content-area {
  max-width: 100%;
}

/* Post Hero Header with Image Overlay */
.post-hero-header {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.post-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: blur(2px) brightness(0.7);
  transform: scale(1.02);
}

.post-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 2;
}

.post-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.post-hero-date {
  margin-bottom: 1rem;
}

.post-hero-date time {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.post-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.625rem, 4vw + 1rem, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: white;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Post Author Section - Enhanced EEAT Badge */
.post-author-section {
  background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
  border-bottom: 1px solid #e5e7eb;
  padding: 2.5rem 0;
}

.post-author-badge {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.post-author-badge-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.post-author-badge-content {
  flex: 1;
  min-width: 0;
}

.post-author-badge-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.post-author-badge-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.125rem, 1vw + 0.875rem, 1.375rem);
  font-weight: 600;
  color: #0a0a0a;
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}

.post-author-badge-name:hover {
  color: #393334;
}

.post-author-badge-role {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  color: #6b7280;
  font-weight: 500;
  display: block;
}

.post-author-badge-bio {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.9375rem, 0.5vw + 0.8125rem, 1.0625rem);
  line-height: 1.7;
  color: #374151;
  margin: 0 0 1.5rem 0;
  padding-right: 1rem;
}

.post-author-badge-links {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.post-author-badge-link-button {
  width: 36px;
  height: 36px;
  border-radius: 20px;
  background: rgb(124, 58, 237);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
  border: 1.5px solid rgba(125, 74, 237, 0.2);
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}

.post-author-badge-link-button:hover {
  background: rgb(110, 50, 220);
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 20px -3px, rgba(0, 0, 0, 0.1) 0px 6px 8px -4px;
}

.post-author-badge-link-button svg {
  width: 16px;
  height: 16px;
}

/* Fallback header (no image) */
.post-header {
  margin-bottom: 3rem;
}

.post-meta-date {
  margin-bottom: 1.5rem;
}

.post-meta-date time {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  color: #6b7280;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
}

.post-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 4vw + 1rem, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: #0a0a0a;
  margin: 0 0 2rem 0;
  letter-spacing: -0.02em;
}

.post-category-badge {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  font-weight: 600;
  color: #0a0a0a;
  background: transparent;
  padding: 0;
  margin-bottom: 2rem;
  letter-spacing: 0;
}

/* Post Content */
.post-content {
  line-height: 1.8;
  color: #374151;
  margin-bottom: 4rem;
}

.post-content p {
  font-size: clamp(0.9375rem, 0.5vw + 0.875rem, 1.125rem);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: #374151;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.post-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.125rem, 2vw + 0.75rem, 1.625rem);
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 20px;
  color: #0a0a0a;
  line-height: 1.3;
  padding-bottom: 12px;
  border-bottom: 2px solid #F8F8F8;
}

.post-content h2:first-child {
  margin-top: 0;
}

.post-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1rem, 1vw + 0.75rem, 1.1875rem);
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #1a1a1a;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.post-content > p:first-of-type {
  font-size: clamp(1rem, 1vw + 0.875rem, 1.25rem);
  line-height: 1.7;
  color: #1a1a1a;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.post-content a {
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #e5e7eb;
  transition: all 0.2s ease;
}

.post-content a:hover {
  color: #6b7280;
  border-bottom-color: #6b7280;
}

.post-content ul,
.post-content ol {
  margin-bottom: 2rem;
  padding: 20px 24px;
  color: #374151;
  list-style: none;
  background: #fafafa;
  border-left: 3px solid #F8F8F8;
  border-radius: 6px;
}

.post-content ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
  line-height: 1.7;
  font-size: clamp(0.9375rem, 0.5vw + 0.875rem, 1.125rem);
  font-weight: 400;
}

.post-content ul li:last-child {
  margin-bottom: 0;
}

.post-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background-color: #0a0a0a;
  border-radius: 50%;
}

.post-content ol {
  counter-reset: custom-counter;
}

.post-content ol li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
  line-height: 1.7;
  font-size: clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
  font-weight: 400;
  counter-increment: custom-counter;
}

.post-content ol li:last-child {
  margin-bottom: 0;
}

.post-content ol li::before {
  content: counter(custom-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  font-size: clamp(0.9375rem, 0.5vw + 0.8125rem, 1rem);
  color: #0a0a0a;
}

.post-content ul ul,
.post-content ol ol,
.post-content ul ol,
.post-content ol ul {
  margin-top: 12px;
  margin-bottom: 12px;
  background: transparent;
  border-left: 2px solid #e5e7eb;
  padding: 12px 20px;
}

.post-content strong {
  font-weight: 600;
  color: #0a0a0a;
}

.post-content table,
.pillar-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: clamp(0.9375rem, 0.5vw + 0.8125rem, 1rem);
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.post-content thead,
.pillar-content thead {
  background: rgb(124, 58, 237);
}

.post-content th,
.pillar-content th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #f9fafb;
}

.post-content td,
.pillar-content td {
  padding: 16px 20px;
  line-height: 1.6;
  color: #374151;
  border-bottom: 1px solid #f9fafb;
}

.post-content tbody tr:last-child td,
.pillar-content tbody tr:last-child td {
  border-bottom: none;
}

.post-content tbody tr:hover,
.pillar-content tbody tr:hover {
  background: #fafafa;
}

.post-content td strong,
.pillar-content td strong {
  font-weight: 600;
  color: #0a0a0a;
}

/* Example Block Styling - Applied via JavaScript */
.post-content p.example-block {
  background: #F8F8F8;
  padding: 18px 22px;
  border-left: 4px solid #d1d5db;
  border-radius: 6px;
  margin: 1.5rem 0;
  font-size: clamp(0.9375rem, 0.5vw + 0.8125rem, 1.0625rem);
  line-height: 1.75;
}

.post-content p.example-block strong:first-child {
  color: #6b7280;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Example block followed by a list - combine into single visual block */
.post-content p.example-block + ul.example-block-list,
.post-content p.example-block + ol.example-block-list {
  background: #F8F8F8;
  padding: 0 22px 18px 22px;
  border-left: 4px solid #d1d5db;
  border-radius: 0 0 6px 6px;
  margin-top: -1.5rem;
  margin-bottom: 1.5rem;
}

.post-content p.example-block + ul.example-block-list,
.post-content p.example-block + ol.example-block-list {
  padding-top: 0;
  padding-left: 46px;
}

/* Time Saved Block Styling - Applied via JavaScript */
.post-content p.time-saved-block {
  background: #f0fdf4;
  padding: 18px 22px;
  border-left: 4px solid #86efac;
  border-radius: 6px;
  margin: 1.5rem 0;
  font-size: clamp(0.9375rem, 0.5vw + 0.8125rem, 1.0625rem);
  line-height: 1.75;
}

.post-content p.time-saved-block strong:first-child {
  color: #16a34a;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Time saved block followed by a list - combine into single visual block */
.post-content p.time-saved-block + ul.time-saved-block-list,
.post-content p.time-saved-block + ol.time-saved-block-list {
  background: #f0fdf4;
  padding: 0 22px 18px 22px;
  border-left: 4px solid #86efac;
  border-radius: 0 0 6px 6px;
  margin-top: -1.5rem;
  margin-bottom: 1.5rem;
}

.post-content p.time-saved-block + ul.time-saved-block-list,
.post-content p.time-saved-block + ol.time-saved-block-list {
  padding-top: 0;
  padding-left: 46px;
}

/* Hero Post Timeline Blocks */
.hero-post .post-content .timeline-header {
  position: relative;
  padding: 2.5rem 0 2rem 4.5rem;
  margin: 4rem 0 2.5rem 0;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-post .post-content .timeline-header::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 2.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 4px solid #667eea;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.hero-post .post-content .timeline-header::after {
  content: '';
  position: absolute;
  left: 2.125rem;
  top: 3.5rem;
  bottom: -4rem;
  width: 3px;
  background: linear-gradient(180deg, #667eea 0%, rgba(102, 126, 234, 0.3) 100%);
  z-index: 1;
}

.hero-post .post-content .timeline-header:last-of-type::after {
  display: none;
}

.hero-post .post-content .timeline-day-range {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #667eea;
  display: block;
}

.hero-post .post-content .timeline-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw + 0.75rem, 2.25rem);
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  display: block;
}

.hero-post .post-content .timeline-phase-1::before {
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.hero-post .post-content .timeline-phase-1::after {
  background: linear-gradient(180deg, #667eea 0%, rgba(102, 126, 234, 0.3) 100%);
}

.hero-post .post-content .timeline-phase-1 .timeline-day-range {
  color: #667eea;
}

.hero-post .post-content .timeline-phase-2::before {
  border-color: #764ba2;
  box-shadow: 0 0 0 4px rgba(118, 75, 162, 0.1);
}

.hero-post .post-content .timeline-phase-2::after {
  background: linear-gradient(180deg, #764ba2 0%, rgba(118, 75, 162, 0.3) 100%);
}

.hero-post .post-content .timeline-phase-2 .timeline-day-range {
  color: #764ba2;
}

.hero-post .post-content .timeline-phase-3::before {
  border-color: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.hero-post .post-content .timeline-phase-3::after {
  background: linear-gradient(180deg, #16a34a 0%, rgba(22, 163, 74, 0.3) 100%);
}

.hero-post .post-content .timeline-phase-3 .timeline-day-range {
  color: #16a34a;
}

/* Hero Post Enhanced Typography */
.hero-post .post-content h3 {
  font-size: clamp(1.25rem, 1.5vw + 0.75rem, 1.5rem);
  margin-top: 2.5rem;
  color: #0a0a0a;
  font-weight: 600;
}

.hero-post .post-content > p:first-of-type {
  font-size: clamp(1.125rem, 1vw + 0.875rem, 1.25rem);
  line-height: 1.8;
  color: #374151;
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Template Section Styling */
.post-content hr + p strong {
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  letter-spacing: 0.5px;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
}

.post-content hr + p + p,
.post-content hr + p + p + p,
.post-content hr + p + p + p + p,
.post-content hr + p + p + p + p + p,
.post-content hr + p + p + p + p + p + p {
  background: #F8F8F8;
  padding: 16px 20px;
  border-left: 4px solid #e5e7eb;
  border-radius: 6px;
  margin-bottom: 12px;
  line-height: 1.8;
  font-size: clamp(0.9375rem, 0.5vw + 0.8125rem, 1.0625rem);
}

.post-content hr + p + p strong,
.post-content hr + p + p + p strong,
.post-content hr + p + p + p + p strong,
.post-content hr + p + p + p + p + p strong,
.post-content hr + p + p + p + p + p + p strong {
  color: #0a0a0a;
  font-weight: 600;
  font-size: clamp(0.9375rem, 0.5vw + 0.8125rem, 1rem);
  text-transform: none;
  letter-spacing: normal;
}

.post-content hr + p + p em,
.post-content hr + p + p + p em,
.post-content hr + p + p + p + p em,
.post-content hr + p + p + p + p + p em,
.post-content hr + p + p + p + p + p + p em {
  display: block;
  margin-top: 6px;
  color: #6b7280;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  font-style: italic;
}

.post-content code {
  background: #f9fafb;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
  font-size: 0.88em;
  color: #374151;
  border: 1px solid #e5e7eb;
  font-weight: 400;
}

.post-content pre {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 1.25rem;
  border-radius: 6px;
  overflow-x: auto;
  margin-bottom: 1.75rem;
  border-left: 3px solid #d1d5db;
}

.post-content pre code {
  background: none;
  padding: 0;
  color: #374151;
  border: none;
  font-size: 0.9em;
  line-height: 1.6;
}

/* Sidebar CTA */
.post-sidebar-cta {
  width: 100%;
}

.post-sidebar-sticky {
  position: sticky;
  top: 100px;
  background: #f3f4f6;
  padding: 2rem;
  border-radius: 8px;
}

.sidebar-pillar-callout {
  background: #f3f4f6;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.sidebar-section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.sidebar-section-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 1.25rem 0;
  line-height: 1.5;
}

/* Sidebar Category Navigation */
.sidebar-category-nav {
  background: #f3f4f6;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.sidebar-category-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
  padding-right: 0.5rem;
}

.sidebar-category-list::-webkit-scrollbar {
  width: 6px;
}

.sidebar-category-list::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-category-list::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.sidebar-category-list::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.sidebar-category-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
  line-height: 1.3;
}

.sidebar-category-arrow {
  display: inline-block;
  font-size: 1rem;
  transition: transform 0.2s ease;
  opacity: 0.6;
}

.sidebar-category-name {
  flex: 1;
}

.sidebar-category-link:hover {
  background: white;
  color: #393334;
}

.sidebar-category-link:hover .sidebar-category-arrow {
  transform: translateX(3px);
  opacity: 1;
}

.sidebar-category-link.active {
  background: rgb(124, 58, 237);
  color: white;
  font-weight: 600;
}

.sidebar-category-link.active .sidebar-category-arrow {
  opacity: 1;
}

@media (max-width: 1024px) {
  .sidebar-category-nav {
    display: none;
  }
}

.sidebar-pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-pillar-item {
  margin: 0;
}

.sidebar-pillar-link {
  position: relative;
  display: block;
  padding: 1.25rem 1.125rem 1rem 1.125rem;
  background: linear-gradient(135deg, #E6D7B8 0%, #D4C5A8 100%);
  border: 1px solid #C9B89A;
  border-radius: 2px 2px 4px 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  margin-top: 12px;
}

.sidebar-pillar-link::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 12px;
  width: 50%;
  max-width: 120px;
  height: 14px;
  background: linear-gradient(135deg, #CCA866 0%, #B89756 100%);
  border: 1px solid #B89756;
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.06);
}

.sidebar-pillar-link:hover {
  background: linear-gradient(135deg, #EBE0C8 0%, #DDD0B8 100%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.sidebar-pillar-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #8B6914;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(139, 105, 20, 0.2);
}

.sidebar-pillar-title {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #4A3F2A;
  line-height: 1.4;
}

.sidebar-cta-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.125rem, 1vw + 0.875rem, 1.25rem);
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
}

.sidebar-cta-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  font-weight: 600;
  color: #0a0a0a;
}

.form-group input {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  background: white;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #0a0a0a;
}

.sidebar-cta-submit {
  background: #0a0a0a;
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-size: clamp(0.9375rem, 0.5vw + 0.8125rem, 1rem);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.sidebar-cta-submit:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

/* Post Footer */
.post-footer {
  margin-top: 4rem;
  padding: 3rem 0 0;
  border-top: 1px solid #e5e7eb;
}

/* Post CTA Box */
.post-cta-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 3rem;
  text-align: center;
  border: 2px solid rgba(124, 58, 237, 0.15);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.08);
}

.post-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.post-cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw + 0.75rem, 2rem);
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.post-cta-description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.9375rem, 0.5vw + 0.8125rem, 1.0625rem);
  line-height: 1.6;
  color: #6b7280;
  margin: 0 0 2rem 0;
}

.post-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgb(124, 58, 237);
  color: white;
  padding: 24px 32px;
  border-radius: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
  border: 1.5px solid rgba(125, 74, 237, 0.2);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
  letter-spacing: 0.07px;
  cursor: pointer;
}

.post-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 20px -3px, rgba(0, 0, 0, 0.1) 0px 6px 8px -4px;
  background: rgb(110, 50, 220);
}

@media (max-width: 768px) {
  .post-cta-box {
    padding: 2rem 1.5rem;
  }
  
  .post-cta-title {
    font-size: 1.5rem;
  }
  
  .post-cta-description {
    font-size: 0.9375rem;
  }
}

.back-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 24px 32px;
  background: rgb(124, 58, 237);
  border: 1.5px solid rgba(125, 74, 237, 0.2);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
  letter-spacing: 0.07px;
  cursor: pointer;
}

.back-link:hover {
  color: white;
  background: rgb(110, 50, 220);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 20px -3px, rgba(0, 0, 0, 0.1) 0px 6px 8px -4px;
  transform: translateY(-2px);
}

.footer {
  background: white;
  border-top: 1px solid #e5e7eb;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
  .footer-container {
    padding: 4rem 2rem;
  }
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  position: relative;
}

@media (min-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.footer-gradient-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, #e5e7eb, #f3f4f6, transparent);
}

.footer-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1e1e1e;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.footer-heading-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, #e5e7eb, #f3f4f6, transparent);
}

.footer-intro {
  font-size: 1.125rem;
  color: #1e1e1e;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 500;
}

.footer-about-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-about-details p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.7;
}

.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-company-info p {
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.7;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-links-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
  }
}

.footer-column-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  position: relative;
  letter-spacing: -0.2px;
}

.footer-column-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, #e5e7eb, #f3f4f6, transparent);
}

.footer-column-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-column-links a {
  font-size: 0.875rem;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column-links a:hover {
  color: #1e1e1e;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #1e1e1e;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 1rem;
  }
  
  .nav-center {
    display: none;
  }
  
  .nav-right {
    gap: 0.5rem;
  }
  
  .btn-login {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .btn-signup {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .hero {
    padding: 3rem 0 2rem;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  
  .post-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .post-title {
    font-size: 32px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .compact-hero {
    padding: 2rem 1rem 1.5rem;
  }
  
  .compact-hero-title {
    font-size: 32px;
  }
  
  .featured-card {
    grid-template-columns: 1fr;
  }
  
  .featured-image-wrapper {
    min-height: 200px;
  }
  
  .featured-content {
    padding: 1.5rem;
  }
  
  .featured-title {
    font-size: 1.5rem;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .compact-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .compact-filters {
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .compact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .compact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   EDITORIAL HOMEPAGE STYLES
   ======================================== */

/* Editorial Hero */
.editorial-hero {
  background: #ffffff;
  padding: 3rem 2rem 4rem;
  margin: 0 -2rem;
  position: relative;
  border-bottom: 1px solid #f3f4f6;
}

.editorial-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.editorial-hero-logo {
  height: 52px;
  width: auto;
  margin-right: 1.25rem;
  vertical-align: middle;
}

.editorial-hero-title {
  font-size: 48px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
  display: inline;
  vertical-align: middle;
}

.editorial-hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #6b7280;
  margin-top: 0.75rem;
  max-width: 720px;
}

.editorial-hero .badge {
  background: transparent;
  color: #6b7280;
  border: none;
  display: inline-block !important;
  margin-bottom: 1.5rem;
  width: auto !important;
  padding: 0;
}

.editorial-hero-title-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

/* Editorial Content Container */
.editorial-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

/* Editorial Featured Post */
.editorial-featured {
  padding: 3.5rem 3rem;
  background: #F8F8F8;
  border-bottom: 1px solid #e5e7eb;
  width: 100%;
}

.editorial-featured-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.editorial-featured-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  background: white;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  padding: 2rem;
  border-radius: 12px;
}

.editorial-featured-card:hover {
  opacity: 0.95;
}

.editorial-featured-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  background: #f9fafb;
  border-radius: 12px;
  position: relative;
}

.editorial-featured-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.25) 0%,
    rgba(118, 75, 162, 0.35) 25%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
  pointer-events: none;
  border-radius: 12px;
}

.editorial-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.editorial-featured-card:hover .editorial-featured-image {
  transform: scale(1.03);
}

.editorial-featured-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.editorial-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}

.editorial-featured-category {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.editorial-featured-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.25;
  margin: 0 0 1.25rem 0;
  letter-spacing: -0.01em;
}

.editorial-featured-description {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.editorial-featured-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9375rem;
  color: #9ca3af;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.editorial-featured-date,
.editorial-featured-read-time {
  font-weight: 500;
}

/* Category Sections */
.category-section {
  padding: 4.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.category-section:first-of-type {
  padding-top: 5rem;
}

.category-section:last-of-type {
  border-bottom: none;
  padding-bottom: 5rem;
}

.category-header {
  margin-bottom: 3rem;
}

.category-title-wrapper {
  max-width: 100%;
  flex: 1;
}

.category-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 0.875rem 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.category-description {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #6b7280;
  max-width: 720px;
  margin: 0;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 3rem 2rem;
  row-gap: 3.5rem;
}

@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-card {
  background: white;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-color: #d1d5db;
}

.category-card-image {
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: #f9fafb;
  position: relative;
}

.category-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.25) 0%,
    rgba(118, 75, 162, 0.35) 25%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.category-card:hover .category-card-image img {
  transform: scale(1.06);
}

.category-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-card-content {
  padding: 1.25rem;
  background: white;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.4;
  margin: 0 0 0.625rem 0;
  flex: 1;
}

.category-card-description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #9ca3af;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding-top: 0.75rem;
  border-top: 1px solid #f3f4f6;
}

.category-card-date,
.category-card-read-time {
  font-weight: 500;
}

/* More Categories Grid */
.more-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .more-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .more-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.more-category-card {
  background: #ffffff;
  padding: 2.25rem;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.more-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgb(124, 58, 237);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.more-category-card:hover::before {
  transform: scaleX(1);
}

.more-category-card:hover {
  background: #fafafa;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.2);
}

.more-category-card:hover .more-category-icon {
  background: rgb(124, 58, 237);
  color: white;
}

.more-category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F8F8;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-size: 20px;
  color: #6b7280;
  transition: all 0.3s ease;
}

.more-category-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}

.more-category-description {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #6b7280;
  margin-bottom: 1.125rem;
  flex: 1;
}

.more-category-count {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.75rem;
  background: #F8F8F8;
  border-radius: 4px;
  align-self: flex-start;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .editorial-hero {
    padding: 1.5rem 0 3rem;
    margin: 0 -1.5rem;
  }
  
  .editorial-hero-inner {
    padding: 0 1.5rem;
  }
  
  .editorial-hero-logo {
    height: 32px;
    margin-right: 0.5rem;
  }
  
  .editorial-hero-title {
    font-size: 2rem;
  }
  
  .editorial-hero-title-wrapper {
    margin-bottom: 1rem;
  }
  
  .editorial-hero-description {
    font-size: 0.9375rem;
  }
  
  .editorial-featured {
    padding: 2.5rem 1.5rem;
    margin-bottom: 0;
  }
  
  .editorial-featured-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .editorial-featured-image-wrapper {
    min-height: 240px;
  }
  
  .editorial-featured-title {
    font-size: 1.375rem;
  }
  
  .editorial-featured-description {
    font-size: 0.9375rem;
  }
  
  .editorial-featured-meta {
    font-size: 0.875rem;
  }
  
  .editorial-featured-content {
    padding: 0;
  }
  
  .editorial-content {
    padding: 0 1.5rem 3rem;
  }
  
  .category-title {
    font-size: 1.75rem;
  }
  
  .category-description {
    font-size: 0.9375rem;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .more-categories-grid {
    grid-template-columns: 1fr;
  }
  
  .pillar-section {
    padding: 3rem 1.5rem;
    margin: 0 -1.5rem 0 -1.5rem;
  }
  
  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pillar-card {
    padding: 1.5rem;
  }
  
  .pillar-hero {
    padding: 2.5rem 1.5rem 2rem;
  }
  
  .pillar-title {
    font-size: 2rem;
  }
  
  .pillar-description {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.125rem;
    line-height: 1.7;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
  }
  
  .author-eeat {
    margin: 2rem -1.5rem 0 -1.5rem;
    padding: 2rem 0;
  }
  
  .author-eeat-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
  }
  
  .author-eeat-avatar {
    width: 64px;
    height: 64px;
  }
}

/* View All Link */
.view-all-link {
  font-size: 14px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 24px 32px;
  background: rgb(124, 58, 237);
  border-radius: 20px;
  border: 1.5px solid rgba(125, 74, 237, 0.2);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
  letter-spacing: 0.07px;
  cursor: pointer;
}

.view-all-link:hover {
  background: rgb(110, 50, 220);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 20px -3px, rgba(0, 0, 0, 0.1) 0px 6px 8px -4px;
  transform: translateY(-2px);
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .category-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .view-all-link {
    align-self: flex-start;
    padding: 18px 24px;
    font-size: 13px;
  }
}

/* More Category Card - make it clickable */
.more-category-card {
  text-decoration: none;
  color: inherit;
}

/* ========================================
   CATEGORY PAGE STYLES
   ======================================== */

.category-page-hero {
  background: #ffffff;
  padding: 3rem 0 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.category-breadcrumb {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #6b7280;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.category-breadcrumb:hover {
  color: #0a0a0a;
}

.category-page-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.category-page-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #6b7280;
  max-width: 720px;
  margin: 0 0 1rem 0;
}

.category-page-count {
  font-size: 0.875rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.category-page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem 4rem;
}

.category-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .category-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-page-card {
  background: white;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.category-page-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-color: #d1d5db;
}

.category-page-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #f9fafb;
  position: relative;
}

.category-page-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.25) 0%,
    rgba(118, 75, 162, 0.35) 25%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.category-page-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.category-page-card:hover .category-page-card-image img {
  transform: scale(1.06);
}

.category-page-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-page-card-content {
  padding: 1.5rem;
  background: white;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-page-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.4;
  margin: 0 0 0.75rem 0;
  flex: 1;
}

.category-page-card-description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-page-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #9ca3af;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding-top: 0.75rem;
  border-top: 1px solid #f3f4f6;
}

.category-page-card-date,
.category-page-card-read-time {
  font-weight: 500;
}

@media (max-width: 768px) {
  .category-page-title {
    font-size: 2.25rem;
  }
  
  .category-page-description {
    font-size: 1rem;
  }
  
  .category-page-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ================================
   MOBILE NAVIGATION
   ================================ */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 50;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 30;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-content {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-section {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  padding: 0.5rem 1rem 0.25rem;
  margin: 0;
}

.mobile-menu-link {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  transition: background 0.2s;
}

.mobile-menu-link:hover {
  background: #f9fafb;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.mobile-menu-login {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
}

.mobile-menu-signup {
  background: #393334;
  color: white;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  text-align: center;
  border-radius: 6px;
  transition: all 0.2s;
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links,
  .nav-right {
    display: none;
  }
}

/* ================================
   MOBILE SINGLE POST RESPONSIVENESS
   ================================ */

@media (max-width: 1024px) {
  .post-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .post-sidebar {
    order: -1;
  }
  
  .post-breadcrumb-wrapper {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .post-hero-header {
    height: 300px;
    margin-bottom: 0;
  }
  
  .post-hero-title {
    font-size: 2rem;
    line-height: 1.15;
  }
  
  .post-hero-date {
    font-size: 0.875rem;
  }
  
  .post-content {
    padding: 0;
    margin-bottom: 2rem;
  }
  
  .post-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
  }
  
  .post-content h3 {
    font-size: 1.375rem;
  }
  
  .post-content p,
  .post-content li {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .post-sidebar {
    padding: 1.5rem 1rem;
  }
  
  .post-breadcrumb {
    font-size: 0.875rem;
  }
  
  .post-breadcrumb-wrapper {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
  }
}

/* ================================
   MOBILE HOMEPAGE RESPONSIVENESS
   ================================ */

@media (max-width: 1024px) {
  .editorial-hero {
    padding: 1.5rem 1.5rem 3rem;
    margin: 0 -1.5rem;
  }
  
  .editorial-content {
    padding: 2rem 1.5rem;
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .more-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .editorial-hero-title {
    font-size: 1.75rem;
  }
  
  .editorial-hero-logo {
    height: 28px;
  }
  
  .editorial-featured {
    margin-bottom: 0;
  }
  
  .editorial-featured-card {
    flex-direction: column;
  }
  
  .editorial-featured-image-wrapper {
    width: 100%;
    height: 240px;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .category-section {
    padding: 2rem 0;
  }
  
  .category-title {
    font-size: 1.75rem;
  }
  
  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .view-all-link {
    align-self: flex-start;
  }
  
  .more-categories-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ================================
   PREVENT HORIZONTAL SCROLL FIX
   ================================ */

@media (max-width: 768px) {
  .post-container,
  .post-layout-grid,
  .post-main-content-area,
  .editorial-content,
  .category-section,
  .footer-container {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .post-hero-header {
    width: 100%;
    max-width: 100vw;
  }
  
  .navbar {
    max-width: 100vw;
  }
}

/* ============================================
   AUTHOR PROFILE STYLES
   ============================================ */

/* Author Profile Page */
.author-profile-page {
  padding-top: 64px;
}

.author-hero {
  background: #F8F8F8;
  padding: 4rem 2rem;
}

.author-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.author-hero-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 4px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.author-hero-text h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a1a1a;
}

.author-role {
  font-size: 1.125rem;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.author-bio-long {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.author-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.author-segment8-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgb(124, 58, 237);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.author-segment8-link:hover {
  background: rgb(110, 50, 210);
}

.author-segment8-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.author-linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgb(124, 58, 237);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.author-linkedin-link:hover {
  background: rgb(110, 50, 210);
}

/* Expertise Section */
.author-expertise {
  padding: 4rem 2rem;
  background: white;
}

.author-expertise-content {
  max-width: 1200px;
  margin: 0 auto;
}

.author-expertise h2 {
  font-size: clamp(1.75rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.expertise-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  list-style: none;
}

.expertise-list li {
  padding: 1rem 1.5rem;
  background: #F8F8F8;
  border-radius: 8px;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.9375rem;
}

/* Experience Section */
.author-experience {
  padding: 4rem 2rem;
  background: #F8F8F8;
}

.author-experience-content {
  max-width: 1200px;
  margin: 0 auto;
}

.author-experience h2 {
  font-size: clamp(1.75rem, 3vw, 2rem);
  margin-bottom: 2rem;
  font-weight: 600;
}

.experience-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.experience-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.experience-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a1a1a;
}

.experience-company {
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.experience-description {
  color: #4b5563;
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* Author Posts Section */
.author-posts {
  padding: 4rem 2rem;
  background: white;
}

.author-posts-content {
  max-width: 1200px;
  margin: 0 auto;
}

.author-posts h2 {
  font-size: clamp(1.75rem, 3vw, 2rem);
  margin-bottom: 2rem;
  font-weight: 600;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.posts-grid .post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.posts-grid .post-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

.posts-grid .post-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.posts-grid .post-image {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.posts-grid .post-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
  filter: blur(3px);
}

.posts-grid .post-image-placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.posts-grid .post-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.posts-grid .post-category {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #8b5cf6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.posts-grid .post-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  flex: 1;
}

.posts-grid .post-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: auto;
}

.posts-grid .post-meta time {
  font-weight: 500;
}

.posts-grid .post-meta span {
  color: #d1d5db;
}

.view-all-posts {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.875rem 2rem;
  background: rgb(124, 58, 237);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.view-all-posts:hover {
  background: rgb(110, 50, 210);
}

@media (max-width: 768px) {
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .posts-grid .post-image {
    height: 180px;
  }
}

/* Author Bio Card (bottom of post) */
.post-author-bio-section {
  margin: 3rem 0;
  padding: 2rem;
  background: #F8F8F8;
  border-radius: 12px;
}

.author-bio-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.author-bio-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-bio-content {
  flex: 1;
}

.author-bio-name {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #1a1a1a;
}

.author-bio-text {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.author-bio-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.author-bio-link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 6px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
}

.author-bio-link:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .post-author-badge {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1.5rem;
    align-items: center;
    text-align: center;
  }
  
  .post-author-badge-avatar {
    width: 64px;
    height: 64px;
  }
  
  .post-author-badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .post-author-badge-header {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  
  .post-author-badge-links {
    order: -1;
  }
  
  .post-author-badge-bio {
    padding-right: 0;
    font-size: 0.9375rem;
  }
  
  .author-hero {
    padding: 2rem 1.5rem;
  }
  
  .author-hero-content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }
  
  .author-hero-image {
    width: 120px;
    height: 120px;
  }
  
  .author-hero-text h1 {
    font-size: 1.75rem;
  }
  
  .author-role {
    font-size: 1rem;
  }
  
  .author-bio-long {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }
  
  .author-expertise,
  .author-experience,
  .author-posts {
    padding: 2.5rem 1.5rem;
  }
  
  .author-expertise h2,
  .author-experience h2 {
    font-size: 1.5rem;
  }
  
  .expertise-list {
    grid-template-columns: 1fr;
  }
  
  .expertise-list li {
    font-size: 0.875rem;
    padding: 0.875rem 1.25rem;
  }
  
  .experience-item {
    padding: 1.5rem;
  }
  
  .experience-item h3 {
    font-size: 1.125rem;
  }
  
  .experience-company {
    font-size: 0.875rem;
  }
  
  .experience-description {
    font-size: 0.9375rem;
  }
  
  .author-bio-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .author-bio-avatar {
    width: 64px;
    height: 64px;
  }
  
  .post-author-bio-section {
    padding: 1.5rem;
  }
  
  .post-author-section {
    padding: 2rem 1.5rem;
  }
  
  .author-bio-links {
    justify-content: center;
  }
}

/* Related Posts Section */
.related-posts-section {
  margin: 3rem 0;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.related-posts-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.related-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-post-item {
  padding: 0;
}

.related-post-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1a1a1a;
  text-decoration: none;
  padding: 0.875rem 1rem;
  background: #f9fafb;
  border-radius: 8px;
  transition: all 0.2s;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
}

.related-post-arrow {
  display: inline-block;
  font-size: 1.25rem;
  color: #393334;
  transition: transform 0.2s ease;
}

.related-post-title {
  flex: 1;
}

.related-post-link:hover {
  background: #F8F8F8;
  transform: translateX(4px);
  color: #393334;
}

.related-post-link:hover .related-post-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .related-posts-section {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .related-posts-heading {
    font-size: 1.125rem;
  }
  
  .related-post-link {
    font-size: 0.875rem;
    padding: 0.75rem 0.875rem;
  }
}

/* ========================================
   PILLAR POSTS SECTION
   Unique design for cornerstone guides
   ======================================== */

.pillar-section {
  background: #F8F8F8;
  padding: 5rem 1.5rem;
  margin: 0 -1.5rem 0 -1.5rem;
  position: relative;
  border-top: 1px solid #e5e7eb;
}

@media (min-width: 1024px) {
  .pillar-section {
    padding: 6rem 3rem;
    margin: 0 -3rem 0 -3rem;
  }
}

.pillar-section-header {
  max-width: 1400px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.pillar-section-badge {
  display: inline-block;
  padding: 0;
  background: transparent;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  border: none;
}

.pillar-section-title {
  font-size: clamp(1.875rem, 2vw + 1.5rem, 2.5rem);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.pillar-section-description {
  font-size: clamp(1.125rem, 1vw + 1rem, 1.25rem);
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.pillar-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

@media (min-width: 1024px) {
  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Homepage pillar cards - scoped to prevent conflicts */
.pillar-section .pillar-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  text-decoration: none;
  color: #333;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.pillar-section .pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgb(124, 58, 237);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pillar-section .pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-section .pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
}

.pillar-section .pillar-card-icon {
  width: 64px;
  height: 64px;
  background: rgb(124, 58, 237);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.pillar-section .pillar-card:hover .pillar-card-icon {
  background: rgb(109, 40, 217);
  transform: rotate(-5deg) scale(1.05);
}

.pillar-section .pillar-card-icon i {
  font-size: 1.75rem;
  color: #ffffff;
}

.pillar-section .pillar-card-title {
  font-size: clamp(1.25rem, 0.9vw + 1rem, 1.5rem);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.pillar-section .pillar-card:hover .pillar-card-title {
  color: rgb(124, 58, 237);
}

.pillar-section .pillar-card-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.pillar-section .pillar-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgb(124, 58, 237);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid rgb(124, 58, 237);
  transition: all 0.2s ease;
  margin-top: auto;
}

.pillar-section .pillar-card:hover .pillar-card-cta {
  background: rgb(109, 40, 217);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.pillar-section .pillar-card-cta::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.pillar-section .pillar-card:hover .pillar-card-cta::after {
  transform: translateX(4px);
}

/* Pillar hero section */
.pillar-hero {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  margin-top: 0;
  padding: 4rem 1.5rem 3rem 1.5rem;
  text-align: center;
  position: relative;
}


@media (min-width: 1024px) {
  .pillar-hero {
    padding: 5rem 3rem;
  }
}

.pillar-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.pillar-badge {
  display: inline-block;
  padding: 0;
  background: transparent;
  color: rgb(124, 58, 237);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  border: none;
  text-transform: uppercase;
}

.pillar-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  padding: 0;
}

@media (min-width: 768px) {
  .pillar-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 640px) {
  .pillar-title {
    font-size: 2rem;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  margin-top: 1.5rem;
}

.breadcrumbs ol {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: '›';
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.125rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: #d4af37;
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.7);
}

/* Pillar post content */
.pillar-post {
  margin: 0 auto;
  padding: 0 0 4rem 0;
}

.pillar-post > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.pillar-post .platform-section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .pillar-post > * {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.pillar-intro {
  text-align: center;
  padding: 3rem 0;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 3rem;
  max-width: 900px !important;
}

.pillar-intro .pillar-description {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.375rem;
  color: #4b5563;
  line-height: 1.8;
  margin: 0 auto 1.5rem auto;
  max-width: 700px;
  padding: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.pillar-hero .pillar-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 auto 3rem auto;
  max-width: 700px;
  padding: 0;
}

/* EEAT Author Section - Default (for pillar pages) */
.author-eeat {
  background: transparent;
  border: none;
  padding: 2.5rem 0;
  margin: 2rem -1.5rem 0 -1.5rem;
  max-width: none !important;
}

/* Single post author section - full bleed background */
.single-post .author-eeat {
  background: #F8F8F8;
  border-top: 2px solid #e5e7eb;
  border-bottom: 2px solid #e5e7eb;
  padding: 3rem 0;
  margin: 2.5rem -1.5rem 0 -1.5rem;
}

.author-eeat-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .author-eeat {
    margin: 2.5rem -3rem 0 -3rem;
  }
  
  .single-post .author-eeat {
    margin: 3rem -3rem 0 -3rem;
    padding: 3.5rem 0;
  }
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.author-info {
  flex: 1;
  min-width: 0;
}

.author-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.125rem, 1vw + 0.875rem, 1.375rem);
  font-weight: 600;
  color: #0a0a0a;
  display: block;
  margin-bottom: 0.25rem;
  text-decoration: none;
  transition: color 0.2s;
}

.author-name:hover {
  color: #393334;
}

.author-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
  color: #6b7280;
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
}

.author-credentials {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.credential-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgb(124, 58, 237);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
}

.author-bio {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.9375rem, 0.5vw + 0.8125rem, 1.0625rem);
  line-height: 1.7;
  color: #374151;
  margin: 0 0 1rem 0;
}

.author-profile-link {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgb(124, 58, 237);
  text-decoration: none;
}

.author-profile-link:hover {
  color: rgb(110, 50, 210);
}

.author-eeat a:has(.author-avatar) {
  transition: opacity 0.2s;
}

.author-eeat a:has(.author-avatar):hover {
  opacity: 0.85;
}

@media (max-width: 640px) {
  .author-eeat-inner {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1.5rem;
  }
  
  .author-avatar {
    width: 64px;
    height: 64px;
  }
  
  .author-bio {
    font-size: 0.9375rem;
  }
}

.pillar-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #999;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.pillar-separator {
  color: #ccc;
}

.pillar-content {
  font-size: 1.125rem;
  line-height: 1.8;
}

/* Platform comparison sections */
.platform-section {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.platform-section.featured-platform {
  background: transparent;
  border: none;
  position: relative;
}

.platform-section.featured-platform::before {
  content: 'RECOMMENDED';
  background: transparent;
  color: rgb(124, 58, 237);
  font-size: 1rem;
  font-weight: 600;
  padding: 0;
  margin-bottom: 0.5rem;
  display: block;
  position: static;
}

.platform-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0;
  border-bottom: none;
}

.platform-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.platform-section h3 {
  margin: 0 0 0.75rem 0;
  color: #0a0a0a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.platform-header h3 {
  margin: 0;
  flex: 1;
}

.platform-section p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #6b7280;
  font-size: 1rem;
}

.platform-section p strong {
  color: #0a0a0a;
  font-weight: 600;
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.platform-section p strong:first-of-type {
  margin-top: 0;
}

.platform-section ul {
  margin: 0 0 1rem 0;
  padding-left: 0;
  list-style: none;
}

.platform-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
}

.platform-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 4px;
  height: 4px;
  background: #0a0a0a;
  border-radius: 50%;
}

.platform-section > p:last-of-type strong {
  background: transparent;
  padding: 0;
  border: none;
  display: block;
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #0a0a0a;
}

@media (max-width: 768px) {
  .platform-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .platform-logo {
    height: 30px;
  }
}

.pillar-content h2 {
  font-size: clamp(1.125rem, 2vw + 0.75rem, 1.625rem);
  font-weight: 600;
  color: #0a0a0a;
  margin-top: 48px;
  margin-bottom: 20px;
  max-width: 900px !important;
  padding-top: 0;
  padding-bottom: 12px;
  border-top: none;
  border-bottom: 2px solid #F8F8F8;
  line-height: 1.3;
  scroll-margin-top: 100px;
}

.pillar-content h2:first-child {
  margin-top: 0;
}

/* Table of Contents */
.toc-container {
  background: transparent;
  border: none;
  padding: 0;
  margin: 3rem 0;
  max-width: 900px !important;
}

.toc-container h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 1rem 0;
  padding: 0;
  border: none;
}

.toc-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .toc-nav ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

.toc-nav li {
  margin: 0;
}

.toc-nav a {
  display: block;
  padding: 0;
  background: transparent;
  border: none;
  color: rgb(124, 58, 237);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.toc-nav a:hover {
  text-decoration: underline;
}

/* Checklist Sections */
.checklist-section {
  background: transparent;
  border: none;
  padding: 0;
  margin: 2rem 0;
  max-width: 900px !important;
}

.checklist-step {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 2rem;
  position: relative;
}

.checklist-step:last-child {
  margin-bottom: 0;
}

.checklist-step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 0.75rem 0;
  padding-left: 2.5rem;
  position: relative;
}

.checklist-step h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  background: rgb(124, 58, 237);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.checklist-step:nth-child(1) h3::before {
  content: '1';
}

.checklist-step:nth-child(2) h3::before {
  content: '2';
}

.checklist-step:nth-child(3) h3::before {
  content: '3';
}

.checklist-step:nth-child(4) h3::before {
  content: '4';
}

.checklist-step:nth-child(5) h3::before {
  content: '5';
}

.checklist-step p,
.checklist-step ul,
.checklist-step ol {
  color: #6b7280;
  line-height: 1.7;
  font-size: 1rem;
}

.checklist-step ul,
.checklist-step ol {
  padding-left: 1.5rem;
}

.checklist-step li {
  margin-bottom: 0.5rem;
}

.pillar-content h3 {
  font-size: clamp(1rem, 1vw + 0.75rem, 1.1875rem);
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.pillar-content p {
  font-size: clamp(0.9375rem, 0.5vw + 0.875rem, 1.125rem);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: #374151;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.pillar-content ul,
.pillar-content ol {
  margin-bottom: 2rem;
  padding: 20px 24px;
  color: #374151;
  list-style: none;
  background: #fafafa;
  border-left: 3px solid #F8F8F8;
  border-radius: 6px;
}

.pillar-content ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
  line-height: 1.7;
  font-size: clamp(0.9375rem, 0.5vw + 0.875rem, 1.125rem);
  font-weight: 400;
}

.pillar-content ul li:last-child {
  margin-bottom: 0;
}

.pillar-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background-color: #0a0a0a;
  border-radius: 50%;
}

.pillar-content ol {
  counter-reset: custom-counter;
}

.pillar-content ol li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
  line-height: 1.7;
  font-size: clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
  font-weight: 400;
  counter-increment: custom-counter;
}

.pillar-content ol li:last-child {
  margin-bottom: 0;
}

.pillar-content ol li::before {
  content: counter(custom-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  font-size: clamp(0.9375rem, 0.5vw + 0.8125rem, 1rem);
  color: #0a0a0a;
}

.pillar-content ul ul,
.pillar-content ol ol,
.pillar-content ul ol,
.pillar-content ol ul {
  margin-top: 12px;
  margin-bottom: 12px;
  background: transparent;
  border-left: 2px solid #e5e7eb;
  padding: 12px 20px;
}

.pillar-content strong {
  font-weight: 600;
  color: #0a0a0a;
}

.pillar-content a {
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #e5e7eb;
  transition: all 0.2s ease;
}

.pillar-content a:hover {
  color: #6b7280;
  border-bottom-color: #6b7280;
}

.pillar-content blockquote {
  border-left: 4px solid #d4af37;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #666;
}

.pillar-content code {
  background: #f5f5f5;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: 'Courier New', monospace;
}

.pillar-content pre {
  background: #f5f5f5;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.pillar-content pre code {
  background: none;
  padding: 0;
}

/* Glossary-specific styles removed - now using standard h3 and p styles */

/* Pros and Cons Lists - Platform Buyers Guide */
.pillar-content .pros-list,
.pillar-content .cons-list {
  padding: 0;
  margin: 1rem 0;
}

.pillar-content .pros-item,
.pillar-content .cons-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.7;
  font-size: clamp(0.9375rem, 0.5vw + 0.875rem, 1.125rem);
}

.pillar-content .pros-item::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0.1em;
  color: #22c55e;
}

.pillar-content .cons-item::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0.1em;
  color: #ef4444;
}

/* Style for bold text in general */
.pillar-content p strong {
  color: #1f2937;
  font-weight: 600;
}

/* Callout box with list - for sections like "What you need to develop" */
.callout-box {
  background: transparent;
  padding: 0;
  border: none;
  margin: 1.5rem 0;
}

.callout-box p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: #6b7280;
}

.callout-box p strong:first-child {
  color: #0a0a0a;
  font-weight: 600;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.callout-box ul,
.callout-box ol {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
}

.callout-box ul li,
.callout-box ol li {
  margin-bottom: 0.5rem;
  color: #6b7280;
}

/* Trends Section Styling */
.trends-section {
  margin: 2rem 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trend-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0;
  background: transparent;
  border: none;
  margin-bottom: 1.5rem;
}

.trend-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(124, 58, 237);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50%;
  line-height: 1;
}

.trend-content {
  flex: 1;
}

.trend-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 0.375rem 0;
  padding: 0;
  border: none;
}

.trend-content p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.trends-conclusion {
  margin: 1.5rem 0;
  padding: 0;
  background: transparent;
  border: none;
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
  font-weight: 400;
}

/* Recommendations Section Styling */
.recommendations-section {
  margin: 2rem 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.recommendation-item {
  padding: 0;
  background: transparent;
  border: none;
  margin-bottom: 1.5rem;
}

.recommendation-label {
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
  display: block;
}

.recommendation-text {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Final Insights Section Styling */
.final-insights {
  margin: 2rem 0;
  padding: 0;
  background: transparent;
  border: none;
}

.final-insights p {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1rem;
}

.final-insights p:last-child {
  margin-bottom: 0;
}

.final-insights strong {
  color: #0a0a0a;
  font-weight: 600;
}

/* Mistakes Section Styling */
.mistakes-section {
  margin: 2rem 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mistake-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0;
  background: transparent;
  border: none;
  margin-bottom: 1.5rem;
}

.mistake-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ef4444;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50%;
  line-height: 1;
}

.mistake-content {
  flex: 1;
}

.mistake-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 0.375rem 0;
  padding: 0;
  border: none;
}

.mistake-content p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* Tech Stack Section Styling */
.tech-stack-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 2rem;
}

.tech-stack-section {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.stack-item {
  background: transparent;
  border: none;
  padding: 0;
}

.stack-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0;
  border-bottom: none;
}

.stack-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0;
  padding: 0;
  border: none;
}

.stack-budget {
  font-size: 1rem;
  font-weight: 600;
  color: rgb(124, 58, 237);
  background: transparent;
  padding: 0;
  white-space: nowrap;
}

.stack-need {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 1rem;
}

.stack-need strong {
  color: #0a0a0a;
  font-weight: 600;
}

.stack-tools {
  margin-bottom: 1rem;
}

.stack-tools-label {
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
}

.stack-tools-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stack-tools-list li {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
  padding-left: 1.5rem;
  position: relative;
}

.stack-tools-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0a0a0a;
  font-weight: 400;
}

.stack-tools-list li strong {
  color: #0a0a0a;
  font-weight: 600;
}

.stack-total {
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
  padding: 0;
  background: transparent;
  border: none;
  margin-bottom: 1rem;
}

.stack-why {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
  padding: 0;
  background: transparent;
}

.stack-why strong {
  color: #0a0a0a;
  font-weight: 600;
}

/* Mobile responsive for trends and recommendations */
@media (max-width: 768px) {
  .stack-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Pillars Category Page */
.pillars-hero {
  background: linear-gradient(135deg, rgba(57, 51, 52, 0.85) 0%, rgba(74, 66, 68, 0.85) 100%), url('https://api.segment8.com/storage/v1/object/public/feature-images/2025-11-02-conny-schneider-xuTJZ7uD7PI-unsplash.jpg');
  background-size: cover;
  background-position: center;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

.pillars-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.pillars-hero .badge {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  border: none;
}

.pillars-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.pillars-hero-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.pillars-grid-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.pillar-card {
  display: block;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.pillar-card:hover {
  border-color: #393334;
  box-shadow: 0 8px 24px rgba(57,51,52,0.15);
  transform: translateY(-4px);
}

.pillar-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar-card-badge {
  display: inline-block;
  background: transparent;
  color: #393334;
  padding: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
  border: none;
}

.pillar-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.625rem;
  font-weight: 600;
  color: #393334;
  line-height: 1.2;
  margin: 0;
}

.pillar-card-description {
  color: #4b5563;
  font-size: clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

.pillar-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f3f4f6;
}

.pillar-card-date {
  color: #6b7280;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .pillars-hero {
    padding: 3rem 1.5rem 2rem;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .pillar-card {
    padding: 1.5rem;
  }
  
  .pillar-card-title {
    font-size: 1.375rem;
  }
}

/* PMM Resources Hub Styling */
.hub-section {
  margin-bottom: 3.5rem;
}

.hub-section h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #393334;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #F8F8F8;
  position: relative;
}

.hub-section h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #393334;
}

.hub-tool {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.hub-tool:hover {
  border-color: #393334;
  box-shadow: 0 4px 12px rgba(57,51,52,0.1);
  transform: translateY(-2px);
}

.hub-tool-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hub-tool-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  flex-shrink: 0;
}

.hub-tool-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #393334;
  margin: 0;
}

.hub-tool-star {
  color: #fbbf24;
  font-size: 1.125rem;
  margin-left: 0.25rem;
}

.hub-tool-domain {
  color: #6b7280;
  font-size: 0.875rem;
  margin-left: 0.5rem;
  font-weight: 400;
}

.hub-tool-details {
  display: grid;
  gap: 0.625rem;
}

.hub-tool-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.hub-tool-label {
  color: #6b7280;
  font-weight: 600;
}

.hub-tool-value {
  color: #1a1a1a;
}

/* Resource sections (books, podcasts, etc) */
.resource-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}

.resource-item:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.resource-item h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #393334;
  margin-bottom: 0.5rem;
}

.resource-item ul {
  margin-left: 1.25rem;
  color: #4b5563;
  font-size: 0.9375rem;
}

.resource-item ul li {
  margin-bottom: 0.375rem;
}

/* Category badges in hub */
.hub-category-badge {
  display: inline-block;
  background: transparent;
  color: #393334;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  border: none;
}

@media (max-width: 768px) {
  .hub-section h3 {
    font-size: 1.5rem;
  }
  
  .hub-tool {
    padding: 1.25rem;
  }
  
  .hub-tool-header {
    flex-wrap: wrap;
  }
  
  .hub-tool-name {
    font-size: 1.25rem;
  }
  
  .hub-tool-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  
  .hub-tool-label {
    font-weight: 600;
    color: #393334;
  }
}

/* Pagination Styles */
.pagination {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
}

.pagination-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.pagination-link {
  display: inline-block;
  padding: 24px 32px;
  background: rgb(124, 58, 237);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
  border: 1.5px solid rgba(125, 74, 237, 0.2);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
  letter-spacing: 0.07px;
  cursor: pointer;
}

.pagination-link:hover {
  background: rgb(110, 50, 220);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 20px -3px, rgba(0, 0, 0, 0.1) 0px 6px 8px -4px;
  transform: translateY(-2px);
}

.pagination-link.pagination-disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
}

.pagination-link.pagination-disabled:hover {
  transform: none;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  color: rgb(124, 58, 237);
  text-decoration: none;
  border-radius: 20px;
  border: 1.5px solid rgba(125, 74, 237, 0.2);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 4px;
  letter-spacing: 0.07px;
  cursor: pointer;
}

.pagination-number:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgb(124, 58, 237);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
}

.pagination-number.pagination-current {
  background: rgb(124, 58, 237);
  color: white;
  border-color: rgba(125, 74, 237, 0.2);
  cursor: default;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}

.pagination-ellipsis {
  color: #9ca3af;
  padding: 0 0.25rem;
}

@media (max-width: 768px) {
  .pagination-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .pagination-numbers {
    order: -1;
  }
  
  .pagination-link {
    width: 100%;
    text-align: center;
  }
}

/* Start Here Section */
.start-here-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 1.5rem;
}

.start-here-header {
  text-align: center;
  margin-bottom: 48px;
}

.start-here-badge {
  display: inline-block;
  background: transparent;
  color: rgb(124, 58, 237);
  padding: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: none;
}

.start-here-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.start-here-description {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.start-here-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

@media (max-width: 768px) {
  .start-here-grid {
    grid-template-columns: 1fr;
  }
}

.start-here-card {
  position: relative;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 28px;
  text-decoration: none;
  transition: all 0.2s;
  display: block;
}

.start-here-card:hover {
  border-color: rgb(124, 58, 237);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(124, 58, 237, 0.15);
}

.start-here-card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #f0f0f0;
  line-height: 1;
}

.start-here-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
  padding-right: 60px;
}

.start-here-card-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.start-here-card-meta {
  font-size: 13px;
  color: #999;
  font-weight: 600;
}

/* More Categories Section */
.more-categories-section {
  background: #f9fafb;
  padding: 80px 0;
  margin-top: 80px;
}

.more-categories-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.more-categories-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
}

.more-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

@media (max-width: 768px) {
  .more-categories-grid {
    grid-template-columns: 1fr;
  }
}

.more-category-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  transition: all 0.2s;
  display: block;
}

.more-category-card:hover {
  border-color: #393334;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.more-category-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.more-category-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Answer callout boxes for interview questions post */
.answer-callout {
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  border-left: 4px solid;
  border-radius: 4px;
  background: #f9fafb;
}

.answer-callout strong {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.good-answer {
  border-left-color: #10b981;
  background: #f0fdf4;
}

.good-answer strong {
  color: #059669;
}

.bad-answer,
.red-flag {
  border-left-color: #ef4444;
  background: #fef2f2;
}

.bad-answer strong,
.red-flag strong {
  color: #dc2626;
}

.follow-up {
  border-left-color: #3b82f6;
  background: #eff6ff;
}

.follow-up strong {
  color: #2563eb;
}

.what-asking {
  border-left-color: #8b5cf6;
  background: #faf5ff;
}

.what-asking strong {
  color: #7c3aed;
}

/* Pricing Page Styles */
.pricing-page {
  min-height: 100vh;
  background: #ffffff;
}

.pricing-hero {
  background: #F8F8F8;
  padding: 6rem 1.5rem 4rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.pricing-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw + 1rem, 3.5rem);
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.pricing-hero-description {
  font-size: clamp(1.125rem, 1vw + 1rem, 1.25rem);
  color: #6b7280;
  line-height: 1.6;
}

.pricing-plans-section {
  padding: 5rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-plans-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.pricing-plan-divider {
  width: 1px;
  height: 100%;
  background: #e5e7eb;
  margin: 0 2rem;
}

.pricing-plan {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  border: 2px solid #e5e7eb;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-plan-featured {
  border-color: rgb(124, 58, 237);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
}

.pricing-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(124, 58, 237);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-plan-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.pricing-plan-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 1rem;
}

.pricing-plan-price {
  margin-bottom: 1rem;
}

.pricing-plan-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #0a0a0a;
}

.pricing-plan-period {
  font-size: 1.125rem;
  color: #6b7280;
  font-weight: 500;
}

.pricing-plan-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

.pricing-plan-features {
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
}

.pricing-feature-icon {
  width: 20px;
  height: 20px;
  color: rgb(124, 58, 237);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgb(124, 58, 237);
  color: white;
  padding: 16px 32px;
  border-radius: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
  border: 1.5px solid rgba(125, 74, 237, 0.2);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
  letter-spacing: 0.07px;
  cursor: pointer;
  width: 100%;
}

.pricing-plan-cta:hover {
  background: rgb(110, 50, 220);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 20px -3px, rgba(0, 0, 0, 0.1) 0px 6px 8px -4px;
  transform: translateY(-2px);
}

.pricing-workflow-section {
  background: #F8F8F8;
  padding: 5rem 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.pricing-workflow-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-workflow-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw + 1rem, 2.5rem);
  font-weight: 600;
  color: #0a0a0a;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.pricing-workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-workflow-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.pricing-workflow-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12);
  transform: translateY(-4px);
}

.pricing-workflow-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pricing-workflow-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.75rem;
}

.pricing-workflow-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pricing-workflow-recommendation {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-workflow-plan {
  font-weight: 600;
  color: rgb(124, 58, 237);
  font-size: 1.125rem;
}

.pricing-workflow-arrow {
  color: rgb(124, 58, 237);
  font-size: 1.25rem;
}

@media (max-width: 1024px) {
  .pricing-plans-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-plan-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: 5rem 1.5rem 3rem 1.5rem;
  }
  
  .pricing-plans-section {
    padding: 3rem 1.5rem;
  }
  
  .pricing-plan {
    padding: 2rem 1.5rem;
  }
  
  .pricing-workflow-section {
    padding: 3rem 1.5rem;
  }
  
  .pricing-workflow-grid {
    grid-template-columns: 1fr;
  }
}
