body {
  background-color: #f8f9fa;
  color: #333;
}

/* Breadcrumb */
.breadcrumb {
  background: none;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Post Title */
.post-title {
  font-weight: 700;
  color: #e23524;
  line-height: 1.3;
}

/* Author Box */
.author-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.author-box img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: #ff6600;
}

/* Post Card */
.post-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-bottom: 30px;
}

/* Banner Row */
.banner-row img {
  width: 100%;
  object-fit: cover;
}

/* Related Tags */
.related-section {
  margin-top: 40px;
  text-align: center;
}

.related-section h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.tag-list a {
  display: inline-block;
  border: 1px solid #ddd;
  background: #fff;
  padding: 6px 14px;
  border-radius: 25px;
  font-size: 0.9rem;
  margin: 5px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.tag-list a:hover {
  background: #e23524;
  color: #fff;
  border-color: #e23524;
}

/* Sidebar */
.sidebar-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 25px;
}

.sidebar-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.related-article {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.related-article img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
}

.related-article a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

.related-article a:hover {
  color: #e23524;
}

/*# sourceMappingURL=posts.css.map */
