/* ==========================================================================
   Daily Dura - Simple & Clean Blog Detail Page Stylesheet
   Matching Reference Layout
   ========================================================================== */

/* Top Hero Banner */
.blog-detail-hero {
  position: relative;
 
 
  background: linear-gradient(rgba(14, 35, 80, 0.75), rgba(14, 35, 80, 0.85)), url('../assets/banner-1.jpg') center/cover no-repeat;
  color: #FFFFFF;
  padding: 3.5rem 1rem 3.5rem;
  text-align: center;
  overflow: hidden;
}

.blog-detail-hero-inner {
 
  margin: 0 auto;
}

.blog-hero-centered-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

/* Centered Breadcrumb */
.blog-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
  color: #CBD5E1;
  font-weight: 500;
}

.blog-hero-breadcrumb a {
  color: #CBD5E1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-hero-breadcrumb a:hover {
  color: #F48024;
}

.blog-hero-breadcrumb .sep {
  opacity: 0.6;
  font-size: 0.75rem;
}

.blog-hero-breadcrumb .current {
  color: #FFFFFF;
  font-weight: 600;
  max-width: 380px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Main Single Column Container */
.blog-detail-simple-section {
  padding: 3.5rem 0 3rem;
  background: #FFFFFF;
}

.blog-detail-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Meta Line (Author & Category) */
.blog-simple-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #155E42; /* Warm gold/amber accent like reference */
}

.blog-simple-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-simple-meta-item i {
  font-size: 0.9rem;
}

/* Article Heading */
.blog-simple-post-heading {
  font-size: 1.95rem;
  font-weight: 800;
  color: #0E2350;
  line-height: 1.35;
  margin-bottom: 1.75rem;
}

/* Large Featured Image Box */
.blog-simple-featured-img-box {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2.25rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
}

.blog-simple-featured-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* Article Body Typography */
.blog-simple-content {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.85;
}

.blog-simple-content p {
  margin-bottom: 1.5rem;
  color: #334155;
}

.blog-simple-content h2,
.blog-simple-content h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0E2350;
  line-height: 1.4;
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
}

.blog-simple-content ul.simple-bullets {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.blog-simple-content ul.simple-bullets li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.7;
}

.blog-simple-content ul.simple-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #155E42;
  font-size: 1.5rem;
  line-height: 1;
}

 

.blog-simple-conclusion h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0E2350;
  margin-bottom: 0.75rem;
}

/* Bottom Back / Explore Bar */
.blog-simple-bottom-bar {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-back-blogs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #155E42;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: gap 0.2s ease;
}

.btn-back-blogs:hover {
  gap: 12px;
  color: #0E2350;
}

.btn-inquire-simple {
  background: #155E42;
  color: #FFFFFF;
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-inquire-simple:hover {
  background: #1E7956;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-hero-centered-title {
    font-size: 1.75rem !important;
  }
  
  .blog-simple-post-heading {
    font-size: 1.45rem !important;
  }
  
  .blog-detail-hero {
    padding: 2.5rem 1rem !important;
  }
  
  .blog-detail-simple-section {
    padding: 2.5rem 0 3.5rem !important;
  }
}
