/* ================================================
   BLOG DETAILS PAGE STYLES - UPDATED
   ================================================ */

/* Content Width & Alignment */
.blog-details-section {
  max-width: 1100px;
  margin: 0 auto;
}

.blog-article-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.blog-main-content {
  display: flex;
  flex-direction: column;
}

/* Featured Image - Directly below Hero */
.blog-featured-img {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 50px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-featured-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Typography & Spacing */
.blog-article p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.blog-article h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-dark);
  margin: 35px 0 15px;
  line-height: 1.3;
}

.blog-article h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 40px 0 20px;
  line-height: 1.3;
}

/* Quote Block - Premium Design */
.blog-quote-block {
  background: #38B6FF;
  padding: 40px 50px;
  border-radius: 4px;
  margin: 40px 0;
  display: flex;
  gap: 25px;
  align-items: center;
  color: var(--color-white);
  box-shadow: 0 10px 30px rgba(197, 165, 104, 0.2);
}

.quote-icon-wrap {
  font-size: 60px;
  line-height: 1;
  font-family: serif;
  opacity: 0.6;
  flex-shrink: 0;
  margin-top: 15px;
}

.quote-text-wrap p {
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-white);
  margin-bottom: 0;
}

/* Bullet Points */
.blog-list {
  list-style: none;
  margin-bottom: 25px;
  padding: 0;
}

.blog-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 17px;
  color: #555;
}

.blog-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

/* Footer Meta */
.blog-footer-meta {
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.blog-tags {
  display: flex;
  gap: 10px;
}

.tag {
  background: var(--color-gold);
  color: var(--color-white);
  padding: 6px 15px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s;
}

.tag:hover {
  opacity: 0.8;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-link-circle {
  width: 40px;
  height: 40px;
  background: #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 16px;
  transition: all 0.3s;
}

.share-link-circle:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Navigation */
.blog-nav {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding: 30px 0;
  margin-top: 50px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 48%;
}

.nav-item-link {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-item-link:hover {
  color: var(--color-gold);
}

/* Page Specific Hero Fix */
.blog-single-page .page-hero {
  height: 600px;
}

.blog-single-page .page-title {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.blog-single-page .breadcrumb {
  font-size: 18px;
  font-weight: 500;
  color: #ccc;
}

.blog-content-section {
  padding-top: 60px;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-single-page .page-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .blog-single-page .page-hero {
    height: 500px;
  }
  .blog-single-page .page-title {
    font-size: 36px;
  }
  .blog-quote-block {
    padding: 30px;
    flex-direction: column;
    text-align: center;
  }
  .quote-icon-wrap {
    margin-top: 0;
  }
  .blog-nav {
    flex-direction: column;
    gap: 30px;
  }
}