/* ==========================
   ARTICLE PAGE
   ========================== */

.title {
  max-width: 800px;
  margin: 2em auto;
  text-align: center;
}
.title .subtitle {
  font-style: italic;
  color: #787575a2;
}

.post-meta {
  font-size: 0.95rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid #c7a883; /* optional line like your image */
  padding-top: 0.75rem;
}

.post-meta .separator {
  color: #999;
}

/* Article content blocks */
.body, .quick-review {
  padding: 0 1rem;
  background: #1f1d2e;
  border: 1px solid #45a29e;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(178, 148, 255, 0.3);
  margin: 0 auto;
     flex: 0 1 800px; /* lock content width */
}

/* Page layout */
.page-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
   width: 100%;
  gap: 2rem;
  padding: 1rem;
  position: relative;
  flex-wrap: nowrap;
}

.page-layout main {

  max-width: 800px;
  margin: 0 auto;
}
.content {
  flex: 1;
  margin: 0 auto;
  max-width: 800px;
}
.content-sidebar {
  flex: 0 0 300px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  height: fit-content;
}

.content-sidebar img {
  width: 100%;          /* fills sidebar width */
  height: auto;         /* maintains aspect ratio */
  max-height: 250px;    /* ✅ set your preferred maximum height */
  object-fit: cover;    /* crops slightly instead of stretching */
  border-radius: 8px;   /* optional: matches your rounded style */
  display: block;
  margin: 0 auto 1rem;  /* centers and spaces images */
}

/* Center the main page layout */
.layout-container {
  max-width: 1200px;      /* or whatever width looks good — try 800–1000px */
  margin: 0 auto;        /* centers it horizontally */
  padding: 0 1rem;       /* optional: adds breathing room on smaller screens */
  box-sizing: border-box;
}

/* ==========================
   CLEANUP IMAGES
   ========================== */


