.blog-post {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  color: #f0f0f0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  border-radius: 12px;
  background-color: var(--blog-post-bg, #dcdcdc); /* default background */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

/* Post Header */
.post-header {
    padding: 1rem;
    border-bottom: 1px solid #333;
    background-color: var(--post-header-bg, #71ab23); /* default */
    border-radius: 8px 8px 0 0;
    position: static;
    top: auto;
    z-index: auto;
}
.post-title {
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
  color: #ffffff;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background-color: var(--post-meta-bg, #4b6f19); /* default background */
}

/* Default profile circle */
.author-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

/* Author-specific images */
.author-Admin .author-pic {
  background-image: url('/img/authors/admin.png');
}

.author-Anvura .author-pic {
  background-image: url('/img/authors/anvura.png');
}

.author-Nether .author-pic {
  background-image: url('/img/authors/nether.png');
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: bold;
  color: #fff;
}

.post-date {
  font-size: 0.85rem;
  color: #ffffff;
}

/* Post Content */
.post-content {
  line-height: 1.7;
  color: #000000;
}

.post-content h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #000000;
}

.post-content img {
  width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.5);
}
