/* assets/css/blog-details.css */
/* Premium glassmorphism design for blog details pages - V4.0 */

/* Base Background Enforcement */
body,
main#main-content,
section.about__area {
  background: #ffffff !important;
  color: #2c3e50;
  font-family: "Inter", sans-serif;
}

/* Breadcrumb section */
.breadcrumb {
  position: relative;
  padding: 150px 0;
  text-align: center;
  color: #fff;
}
.breadcrumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}
.breadcrumb .title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -2px;
}

/* Content Alignment Perfection */
.section__heading--title {
  color: #001d23;
  font-weight: 700;
  margin-bottom: 25px;
}

.section__heading--content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 24px;
}

/* Custom Bullet Points */
.blog-detail-list {
  padding-left: 0;
  margin: 30px 0;
}
.blog-detail-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2d3748;
  list-style: none;
}
.blog-detail-list li::before {
  content: "\f00c"; /* fa-check */
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  background: rgba(8, 106, 216, 0.1);
  color: #086ad8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Glassmorphism card for images */
.project-details__content .thumb {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Sidebar glass effect (Light Version) */
.detail-sidebar-glass {
  background: rgba(8, 106, 216, 0.02);
  border-radius: 12px;
  padding: 30px;
  border: 1px dashed rgba(8, 106, 216, 0.12);
  backdrop-filter: blur(4px);
}

.author-info h4 {
  color: #086ad8;
  font-weight: 600;
}

/* Buttons */
.site-btn {
  background: linear-gradient(135deg, #086ad8, #1e90ff);
  color: #fff;
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  padding: 14px 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .breadcrumb .title {
    font-size: 2.2rem;
  }
}
