/* ===== BLOG POST LAYOUT ===== */
.blog-post-section { padding: 60px 0 80px; }
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: flex-start;
}
.post-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.post-meta span { display: flex; align-items: center; gap: 6px; }
.post-body h2 {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 36px 0 16px;
  line-height: 1.3;
}
.post-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #CBD5E1;
  margin: 28px 0 12px;
}
.post-body p {
  font-size: 16px;
  color: #94A3B8;
  line-height: 1.85;
  margin-bottom: 16px;
}
.post-lead {
  font-size: 18px !important;
  color: #CBD5E1 !important;
  font-weight: 500;
  border-left: 4px solid #2DD4BF;
  padding-left: 20px;
  margin-bottom: 32px !important;
}
.post-body ul, .post-body ol {
  margin: 12px 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post-body li {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.7;
  list-style: disc;
}
.post-body ol li { list-style: decimal; }
.post-highlight {
  display: flex;
  gap: 16px;
  background: linear-gradient(135deg, rgba(45,212,191,0.1), rgba(45,212,191,0.05));
  border: 1px solid rgba(45,212,191,0.3);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 24px 0;
  align-items: flex-start;
}
.post-highlight > i {
  color: #2DD4BF;
  font-size: 22px;
  margin-top: 2px;
  flex-shrink: 0;
}
.post-highlight strong { color: #FFFFFF; display: block; margin-bottom: 4px; }
.post-highlight div { font-size: 14px; color: #94A3B8; line-height: 1.7; }
.post-table {
  overflow-x: auto;
  margin: 20px 0;
}
.post-table table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #334155;
}
.post-table th {
  background: #2DD4BF;
  color: #0F172A;
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.post-table td {
  padding: 12px 20px;
  font-size: 14px;
  color: #CBD5E1;
  border-bottom: 1px solid #334155;
}
.post-table tr:nth-child(even) td { background: rgba(30,41,59,0.5); }
.post-cta {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  border: 1px solid rgba(45,212,191,0.3);
  padding: 40px;
  border-radius: var(--radius-xl);
  text-align: center;
  margin: 40px 0 0;
}
.post-cta h3 {
  color: #FFFFFF !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px !important;
  margin: 0 0 8px !important;
}
.post-cta p { color: rgba(148,163,184,1) !important; margin-bottom: 20px !important; }
.post-cta .btn { margin: 0; }

/* ===== SIDEBAR ===== */
.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #334155;
}
.sidebar-posts {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sidebar-posts li {
  padding: 12px 0;
  border-bottom: 1px solid #334155;
}
.sidebar-posts li:last-child { border-bottom: none; }
.sidebar-posts a {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.5;
  transition: var(--transition);
}
.sidebar-posts a:hover { color: #2DD4BF; }
.sidebar-cta {
  background: #0F172A;
  border-color: #334155;
}
.sidebar-cta p { font-size: 14px; color: #94A3B8; margin-bottom: 16px; line-height: 1.6; }

@media (max-width: 900px) {
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}
@media (max-width: 480px) {
  .post-body h2 { font-size: 22px; }
  .post-cta { padding: 28px 20px; }
}
