/* ─────────────────────────────────────────
   blog-post.css – Global styling for blog articles
───────────────────────────────────────── */
.post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.post-header {
  margin-bottom: 2rem;
}

.post-tag {
  display: inline-block;
  background: rgba(168, 85, 247, 0.12);
  color: #c084fc;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  border: 1px solid rgba(168, 85, 247, 0.25);
  margin-bottom: 1.5rem;
}

.post-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.5rem;
}

.post-content {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-sans);
}

.post-content h2 {
  font-size: 1.9rem;
  margin: 3.5rem 0 1.25rem;
  color: #fff;
  font-weight: 800;
  line-height: 1.3;
  position: relative;
  padding-left: 1.15rem;
}

.post-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 4px;
  background: linear-gradient(to bottom, #a855f7, #ec4899);
  border-radius: 4px;
}

.post-content h3 {
  font-size: 1.45rem;
  margin: 2.25rem 0 1rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.post-content p {
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.78);
}

/* Premium Pseudo-element Unordered Lists */
.post-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.75rem;
}

.post-content ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.post-content ul li::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  background: #a855f7;
  border-radius: 50%;
  box-shadow: 0 0 8px #a855f7;
}

/* Premium Dynamic Numbered Lists */
.post-content ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.75rem;
  counter-reset: blog-counter;
}

.post-content ol li {
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 1rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  counter-increment: blog-counter;
}

.post-content ol li::before {
  content: counter(blog-counter);
  position: absolute;
  left: 0;
  top: 0.2rem;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(168, 85, 247, 0.3);
}

.post-content strong {
  color: #fff;
  font-weight: 700;
}

.post-content em {
  color: #c084fc;
  font-style: italic;
}

.post-content hr {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  margin: 3.5rem 0;
}

/* Ultra-Premium Bento Table Styling */
.post-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2.75rem 0;
  background: rgba(13, 11, 26, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.post-content th {
  background: rgba(168, 85, 247, 0.08);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 1.15rem 1.4rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.post-content td {
  padding: 1.15rem 1.4rem;
  color: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.65;
  vertical-align: middle;
}

.post-content tr:last-child td {
  border-bottom: none;
}

.post-content tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.015);
}

.post-content tr:hover td {
  background: rgba(168, 85, 247, 0.03);
  color: #fff;
}

/* Elegant Callout Blockquote Block */
.post-content blockquote {
  background: rgba(168, 85, 247, 0.04);
  border-left: 4px solid #a855f7;
  padding: 1.5rem 2rem;
  margin: 2.75rem 0;
  border-radius: 0 16px 16px 0;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.8;
  position: relative;
}

.post-content blockquote p {
  margin-bottom: 0;
  font-size: 1.15rem;
}

