/* Styles for Blog Post Detail Module (p/blog_post/dom/index.css) */

.back-to-blog-link {
  color: #651fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-category-badge {
  background-color: #651fff;
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-post-meta-text {
  font-size: 14px;
  margin-left: 10px;
}

.blog-post-title {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
}

.blog-post-image-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-post-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.post-body {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ccc;
}

.post-body .post-excerpt {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 25px;
}

.post-body h3 {
  color: #fff;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 15px;
}

.post-body ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 25px;
}

.post-body li {
  margin-bottom: 10px;
}

.blog-post-author-box {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-post-author-avatar {
  background: #651fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.25rem;
}

.blog-post-author-name {
  margin: 0;
  font-weight: 700;
  color: #fff;
}

.blog-post-author-role {
  margin: 0;
  font-size: 14px;
}
