/* Blog Detail Page Styles */

/* Blog Detail Hero Section */
.blog-detail-hero {
  background: linear-gradient(
    135deg,
    #000000 0%,
    #050505 25%,
    #000000 50%,
    #050505 75%,
    #000000 100%
  );
  position: relative;
  overflow: hidden;
  padding: 150px 0 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.blog-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="40" height="40" patternUnits="userSpaceOnUse"><polygon points="20,5 35,15 35,25 20,35 5,25 5,15" fill="none" stroke="rgba(0,255,255,0.03)" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
  opacity: 0.5;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.08) 0%,
    rgba(8, 145, 178, 0.04) 50%,
    transparent 70%
  );
  border-radius: 50%;
  animation: heroGlow 8s ease-in-out infinite;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
}

/* Breadcrumb */
.blog-breadcrumb {
  margin-bottom: 2rem;
}

.blog-breadcrumb .breadcrumb {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 12px 20px;
  margin: 0;
  backdrop-filter: blur(10px);
}

.blog-breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
}

.blog-breadcrumb .breadcrumb-item a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-breadcrumb .breadcrumb-item a:hover {
  color: #0891b2;
}

.blog-breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9);
}

.blog-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
  content: ">";
}

/* Category Badge */
.blog-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #10b981 0%, #0891b2 50%, #06b6d4 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.blog-category-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.category-icon {
  font-size: 1rem;
}

/* Blog Title */
.blog-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 2rem;
  background: linear-gradient(
    135deg,
    #10b981 0%,
    #059669 25%,
    #0891b2 50%,
    #0ea5e9 75%,
    #06b6d4 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Blog Meta */
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 2rem;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.meta-item i {
  color: #10b981;
  font-size: 0.8rem;
}

/* Social Share */
.social-share {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 2rem;
}

.share-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.9rem;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.linkedin {
  background: #0077b5;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Featured Image Section */
.blog-featured-image {
  background: rgba(0, 0, 0, 0.8);
  padding: 0;
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.featured-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: -50px 0 0 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.featured-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-image:hover {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-image-container:hover .image-overlay {
  opacity: 1;
}

.play-btn {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-btn i {
  color: #10b981;
  font-size: 1.5rem;
  margin-left: 4px;
}

.play-btn:hover {
  background: white;
  transform: scale(1.1);
}

/* Blog Content Section */
.blog-content-section {
  background: linear-gradient(
    135deg,
    #000000 0%,
    #050505 25%,
    #000000 50%,
    #050505 75%,
    #000000 100%
  );
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.blog-content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(16, 185, 129, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(8, 145, 178, 0.02) 0%,
      transparent 50%
    );
  z-index: 1;
}

.blog-content-section .container {
  position: relative;
  z-index: 2;
}

/* Blog Article */
.blog-article {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.article-intro .lead {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 3rem;
  padding: 30px;
  background: rgba(16, 185, 129, 0.05);
  border-left: 4px solid #10b981;
  border-radius: 10px;
}

/* Table of Contents */
.table-of-contents {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 3rem;
}

.table-of-contents h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.table-of-contents ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.table-of-contents li {
  margin-bottom: 8px;
}

.table-of-contents a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.table-of-contents a:hover {
  color: #10b981;
}

/* Article Body */
.article-body {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.article-body h2 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin: 3rem 0 1.5rem 0;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

.article-body h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
}

.article-body p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.article-body ul {
  margin-bottom: 1.5rem;
  padding-left: 20px;
}

.article-body li {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

/* Article Quote */
.article-quote {
  background: rgba(16, 185, 129, 0.05);
  border-left: 4px solid #10b981;
  padding: 25px 30px;
  margin: 2rem 0;
  border-radius: 10px;
  position: relative;
}

.article-quote p {
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.article-quote cite {
  color: #10b981;
  font-weight: 600;
  font-style: normal;
}

/* Code Block */
.code-block {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin: 2rem 0;
  overflow: hidden;
}

.code-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-language {
  color: #10b981;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.copy-code-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 5px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.copy-code-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.code-block pre {
  margin: 0;
  padding: 20px;
  background: transparent;
  overflow-x: auto;
}

.code-block code {
  color: #e6fffa;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Info Box */
.info-box {
  background: rgba(8, 145, 178, 0.05);
  border: 1px solid rgba(8, 145, 178, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin: 2rem 0;
  display: flex;
  gap: 20px;
}

.info-icon {
  color: #0891b2;
  font-size: 1.5rem;
  margin-top: 5px;
}

.info-content h4 {
  color: white;
  margin-bottom: 10px;
}

.info-content ul {
  margin: 0;
  padding-left: 20px;
}

.info-content li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

/* Article List */
.article-list {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 20px 25px;
  margin: 1.5rem 0;
}

.article-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.article-list strong {
  color: #10b981;
}

/* Article Conclusion */
.article-conclusion {
  background: rgba(16, 185, 129, 0.05);
  border-radius: 15px;
  padding: 30px;
  margin: 3rem 0;
}

.article-conclusion h3 {
  color: white;
  margin-bottom: 20px;
}

/* Article Tags */
.article-tags {
  margin: 3rem 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-tags h4 {
  color: white;
  margin-bottom: 15px;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.tag:hover {
  background: rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.sidebar-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

/* Author Card */
.author-card {
  text-align: center;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid rgba(16, 185, 129, 0.3);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h5 {
  color: white;
  margin-bottom: 5px;
}

.author-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.author-bio {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px !important;
}

.author-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  width: 35px;
  height: 35px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
}

/* Related Articles */
.related-article {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.related-article:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.related-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-content h6 {
  margin-bottom: 5px;
}

.related-content h6 a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.related-content h6 a:hover {
  color: #10b981;
}

.related-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

/* Newsletter Card */
.newsletter-card {
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(8, 145, 178, 0.05)
  );
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.newsletter-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #10b981, #0891b2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: white;
}

.newsletter-card h5 {
  color: white;
  margin-bottom: 10px;
}

.newsletter-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.sidebar-newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-newsletter .newsletter-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 15px;
  color: white;
  font-size: 0.9rem;
}

.sidebar-newsletter .newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.sidebar-newsletter .newsletter-btn {
  background: linear-gradient(135deg, #10b981, #0891b2);
  border: none;
  color: white;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-newsletter .newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* Popular Tags */
.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Comments Section */
.comments-section {
  background: rgba(0, 0, 0, 0.8);
  padding: 80px 0;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

.comments-header h3 {
  color: white;
  margin: 0;
}

/* Add Comment Form */
.add-comment-form {
  margin-bottom: 40px;
}

.comment-form-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.comment-form-card .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 15px;
}

.comment-form-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.comment-form-card .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
  color: white;
}

.comment-form-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

/* Comments List */
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.comment {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.comment-header h6 {
  color: white;
  margin: 0;
  font-weight: 600;
}

.comment-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.comment-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
}

.comment-actions {
  display: flex;
  gap: 20px;
}

.comment-action {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.comment-action:hover {
  color: #10b981;
}

/* Related Posts Section */
.related-posts-section {
  background: linear-gradient(
    135deg,
    #000000 0%,
    #050505 25%,
    #000000 50%,
    #050505 75%,
    #000000 100%
  );
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.related-posts-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(16, 185, 129, 0.03) 0%,
    transparent 70%
  );
  z-index: 1;
}

.related-posts-section .container {
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #10b981 0%, #0891b2 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* Related Post Cards */
.related-post-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.related-post-card:hover {
  transform: translateY(-10px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(16, 185, 129, 0.2);
}

.post-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-post-card:hover .post-image img {
  transform: scale(1.1);
}

.post-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #10b981, #0891b2);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.post-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-content h4 {
  margin-bottom: 15px;
}

.post-content h4 a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.post-content h4 a:hover {
  color: #10b981;
}

.post-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-date,
.post-read-time {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* Animations */
@keyframes heroGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.5;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-detail-hero {
    padding: 120px 0 60px;
    min-height: 50vh;
  }

  .blog-title {
    font-size: 2.5rem;
  }

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .social-share {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
  }

  .featured-image {
    height: 300px;
  }

  .blog-article {
    padding: 25px;
  }

  .article-intro .lead {
    font-size: 1.1rem;
    padding: 20px;
  }

  .article-body h2 {
    font-size: 1.5rem;
  }

  .article-body h3 {
    font-size: 1.3rem;
  }

  .article-body p {
    font-size: 1rem;
  }

  .blog-sidebar {
    position: static;
    margin-top: 40px;
  }

  .comments-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .comment {
    flex-direction: column;
    gap: 15px;
  }

  .comment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .comment-form-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .blog-detail-hero {
    padding: 100px 0 40px;
  }

  .blog-title {
    font-size: 2rem;
  }

  .blog-article {
    padding: 20px;
  }

  .featured-image-container {
    margin: -30px 0 0 0;
  }

  .featured-image {
    height: 250px;
  }

  .article-intro .lead {
    font-size: 1rem;
    padding: 15px;
  }

  .info-box {
    flex-direction: column;
    gap: 15px;
  }

  .tags-list {
    justify-content: flex-start;
  }
}

/* ========================================
   Blog Gallery Slider - Modern Style
   ======================================== */

.blog-gallery-section {
  padding: 60px 0;
  background: #000;
}

.blog-gallery-slider {
  position: relative;
}

.blog-gallery-slide {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  height: 600px;
}

.blog-gallery-image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-gallery-slide:hover .blog-gallery-image {
  transform: scale(1.05);
}

/* Owl Carousel Dots - Hidden */
.blog-gallery-slider .owl-dots {
  display: none !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .blog-gallery-section {
    padding: 40px 0;
  }

  .blog-gallery-slide {
    border-radius: 12px;
    height: 400px;
  }

  .blog-gallery-image {
    border-radius: 12px;
  }
}
