/* ============================================================
   LUNA WEBB - BLOG ARCHITECTURE
   ============================================================ */

.blog-post-container {
  max-width: 900px;
  margin: 200px auto 60px; /* Space for the fixed header */
  padding: 40px;
  background: rgba(10, 15, 25, 0.7); /* Deep space glass */
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 10;
}

.post-header {
  text-align: center;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
}

.post-header .eyebrow {
  font-family: 'Poppins', sans-serif;
  color: #00d4ff;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.milky-way-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  color: #fff;
  font-weight: 700;
}


.post-meta {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 15px;
}

/* Body Content Styling */
.post-body {
  font-family: 'Poppins', sans-serif;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 1.1rem;
}

.post-body p {
  margin-bottom: 25px;
}

.post-body h3 {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 1.5rem;
  margin-top: 45px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.post-body h3::before {
  content: "";
  width: 30px;
  height: 2px;
  background: #00d4ff;
  display: inline-block;
  margin-right: 15px;
}

/* Callout Box (Architect's Note) */
.tech-callout {
  margin: 50px 0;
  padding: 30px;
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(0, 212, 255, 0.1));
  border-left: 4px solid #9b59b6;
  border-radius: 0 15px 15px 0;
}

.tech-callout h4 {
  color: #9b59b6;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.tech-callout p {
  margin-bottom: 0;
  font-style: italic;
}

/* CTA Highlight */
.post-body p:last-of-type {
  font-size: 1rem;
  color: #00d4ff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 40px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .blog-post-container {
    margin: 100px 15px 40px;
    padding: 25px;
  }
  
  .milky-way-title {
    font-size: 2.2rem;
  }
}

.blog-landing {
  padding: 200px 0;
  min-height: 100vh;
}

.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.entry-number {
  font-family: 'Poppins', sans-serif;
  color: #9b59b6; /* Purple accent to match your tech callout */
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.read-more {
  color: #00d4ff;
  text-decoration: none;
  font-weight: 500;
  margin-top: 20px;
  display: inline-block;
}

.artifact-card.locked {
  opacity: 0.5;
  filter: grayscale(1);
  border-style: dashed;
}