/* ========================================
   BLOG SYSTEM STYLES
   ======================================== */

/* Blog Hero Section */
.blog-hero {
  position: relative;
  background: linear-gradient(135deg, 
    #0d1117 0%, 
    #1a3254 25%, 
    #2D5085 50%, 
    #1a3254 75%, 
    #0d1117 100%);
  padding: 180px 0 120px;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 20%, rgba(171, 150, 108, 0.15) 0%, transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(171, 150, 108, 0.12) 0%, transparent 35%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(26, 35, 50, 0.3) 0%, 
    transparent 50%, 
    rgba(45, 80, 133, 0.2) 100%);
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero-title {
  font-size: 56px;
  line-height: 1.2;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.blog-hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}

/* Blog Main Section */
.blog-main-section {
  padding: 80px 0 100px;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(45, 80, 133, 0.15);
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(45, 80, 133, 0.95);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Open Sans', sans-serif;
  backdrop-filter: blur(10px);
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.blog-date,
.blog-read-time {
  font-size: 13px;
  color: #647187;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-date i,
.blog-read-time i {
  color: #AB966C;
}

.blog-card-title {
  font-size: 22px;
  line-height: 1.4;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: #141417;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
  color: #2D5085;
}

.blog-card-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #647187;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #ebedf4;
  margin-top: auto;
}

.blog-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2D5085 0%, #AB966C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.blog-author-info {
  display: flex;
  flex-direction: column;
}

.blog-author-name {
  font-size: 14px;
  font-weight: 600;
  color: #141417;
  font-family: 'Open Sans', sans-serif;
}

.blog-author-role {
  font-size: 12px;
  color: #647187;
  font-family: 'Open Sans', sans-serif;
}

/* Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.pagination-btn {
  padding: 12px 24px;
  background: #fff;
  border: 1px solid #d7dbea;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2D5085;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
  background: #2D5085;
  color: #fff;
  border-color: #2D5085;
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  gap: 8px;
}

.pagination-number {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #d7dbea;
  font-size: 14px;
  font-weight: 600;
  color: #2D5085;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-number:hover,
.pagination-number.active {
  background: #2D5085;
  color: #fff;
  border-color: #2D5085;
}

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

.sidebar-widget {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.widget-title {
  font-size: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: #141417;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #AB966C;
}

/* Search Widget */
.search-form {
  display: flex;
  gap: 8px;
}

.search-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #d7dbea;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #2D5085;
  box-shadow: 0 0 0 3px rgba(45, 80, 133, 0.1);
}

.search-btn {
  padding: 12px 20px;
  background: #2D5085;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: #1a3254;
}

/* Categories Widget */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item {
  margin-bottom: 8px;
}

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #141417;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.category-item.active .category-link,
.category-link:hover {
  background: #2D5085;
  color: #fff;
}

.category-name {
  font-weight: 500;
}

.category-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.category-item.active .category-count {
  background: rgba(255, 255, 255, 0.25);
}

/* Popular Posts Widget */
.popular-posts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popular-post-item {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  padding: 12px;
  border-radius: 8px;
}

.popular-post-item:hover {
  background: #f8f9fa;
}

.popular-post-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.popular-post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.popular-post-title {
  font-size: 14px;
  line-height: 1.4;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #141417;
  margin: 0;
}

.popular-post-date {
  font-size: 12px;
  color: #647187;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Newsletter Widget */
.newsletter-text {
  font-size: 14px;
  line-height: 1.6;
  color: #647187;
  margin-bottom: 16px;
}

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

.newsletter-input {
  padding: 12px 16px;
  border: 1px solid #d7dbea;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

.newsletter-input:focus {
  outline: none;
  border-color: #2D5085;
  box-shadow: 0 0 0 3px rgba(45, 80, 133, 0.1);
}

.newsletter-btn {
  padding: 12px;
  background: #AB966C;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.newsletter-btn:hover {
  background: #8B7A5A;
}

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

.tag-item {
  padding: 8px 16px;
  background: #f8f9fa;
  border-radius: 20px;
  font-size: 13px;
  color: #2D5085;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tag-item:hover {
  background: #2D5085;
  color: #fff;
  border-color: #2D5085;
}

/* ========================================
   BLOG DETAIL PAGE STYLES
   ======================================== */

/* Blog Detail Hero */
.blog-detail-hero {
  position: relative;
  background: linear-gradient(135deg, 
    #0d1117 0%, 
    #1a3254 25%, 
    #2D5085 50%, 
    #1a3254 75%, 
    #0d1117 100%);
  padding: 160px 0 80px;
  overflow: hidden;
}

.blog-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 70% 15%, rgba(171, 150, 108, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 25% 85%, rgba(171, 150, 108, 0.15) 0%, transparent 40%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.blog-detail-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(26, 35, 50, 0.3) 0%, 
    transparent 50%, 
    rgba(45, 80, 133, 0.2) 100%);
}

.blog-detail-breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

.blog-detail-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-detail-breadcrumb a:hover {
  color: #AB966C;
}

.blog-detail-breadcrumb i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.blog-detail-breadcrumb span {
  color: #fff;
  font-weight: 600;
}

.blog-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.blog-detail-category {
  display: inline-block;
  background: rgba(171, 150, 108, 0.2);
  color: #AB966C;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(171, 150, 108, 0.3);
}

.blog-detail-title {
  font-size: 48px;
  line-height: 1.3;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-detail-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #AB966C 0%, #8B7A5A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.author-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Open Sans', sans-serif;
}

.blog-detail-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.detail-date,
.detail-read-time {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Open Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-date i,
.detail-read-time i {
  color: #AB966C;
}

/* Blog Detail Section */
.blog-detail-section {
  padding: 80px 0 100px;
  background: #fff;
}

.blog-detail-content {
  background: #fff;
}

.blog-detail-featured-image {
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.blog-detail-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Article Body */
.blog-detail-body {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.blog-detail-body .lead-paragraph {
  font-size: 20px;
  line-height: 1.7;
  color: #2D5085;
  font-weight: 400;
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 4px solid #AB966C;
}

.blog-detail-body h2 {
  font-size: 36px;
  line-height: 1.3;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: #141417;
  margin-top: 50px;
  margin-bottom: 20px;
}

.blog-detail-body h3 {
  font-size: 28px;
  line-height: 1.4;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: #2D5085;
  margin-top: 40px;
  margin-bottom: 16px;
}

.blog-detail-body h4 {
  font-size: 22px;
  line-height: 1.4;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #141417;
  margin-top: 30px;
  margin-bottom: 12px;
}

.blog-detail-body p {
  margin-bottom: 20px;
}

.blog-detail-body ul.blog-list,
.blog-detail-body ol {
  margin: 24px 0;
  padding-left: 24px;
}

.blog-detail-body ul.blog-list li,
.blog-detail-body ol li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.blog-quote {
  background: linear-gradient(135deg, #f8f9fa 0%, #ebedf4 100%);
  border-left: 4px solid #AB966C;
  padding: 30px 40px;
  margin: 40px 0;
  border-radius: 8px;
  font-size: 20px;
  line-height: 1.6;
  font-style: italic;
  color: #2D5085;
  font-family: 'Cormorant Garamond', serif;
}

.blog-quote cite {
  display: block;
  margin-top: 16px;
  font-size: 15px;
  font-style: normal;
  color: #647187;
  font-family: 'Open Sans', sans-serif;
}

.info-box {
  background: #f0f7ff;
  border: 1px solid #d0e7ff;
  border-radius: 12px;
  padding: 28px;
  margin: 30px 0;
}

.info-box h4 {
  color: #2D5085;
  margin-top: 0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box h4 i {
  color: #AB966C;
}

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

.info-box ul li {
  margin-bottom: 10px;
}

.cta-box {
  background: linear-gradient(135deg, #2D5085 0%, #1a3254 100%);
  color: #fff;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 50px 0;
}

.cta-box h3 {
  font-size: 32px;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 0;
  margin-bottom: 12px;
  color: #fff;
}

.cta-box p {
  font-size: 16px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #AB966C;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #8B7A5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(171, 150, 108, 0.3);
}

/* Tags & Share */
.blog-detail-tags,
.blog-detail-share {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #ebedf4;
}

.blog-detail-tags h4,
.blog-detail-share h4 {
  font-size: 16px;
  font-weight: 600;
  color: #141417;
  margin-bottom: 16px;
  font-family: 'Open Sans', sans-serif;
}

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

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

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

.share-email {
  background: #647187;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Author Bio */
.author-bio-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #ebedf4 100%);
  border-radius: 16px;
  padding: 32px;
  margin-top: 50px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.author-bio-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2D5085 0%, #AB966C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  flex-shrink: 0;
}

.author-bio-content {
  flex: 1;
}

.author-bio-name {
  font-size: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: #141417;
  margin-bottom: 4px;
}

.author-bio-role {
  font-size: 14px;
  color: #AB966C;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 12px;
}

.author-bio-description {
  font-size: 15px;
  line-height: 1.7;
  color: #647187;
  margin: 0;
}

/* Related Posts */
.related-posts-section {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 2px solid #ebedf4;
}

.related-posts-title {
  font-size: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: #141417;
  margin-bottom: 30px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.related-post-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: block;
}

.related-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(45, 80, 133, 0.12);
}

.related-post-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

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

.related-post-content {
  padding: 20px;
}

.related-post-category {
  display: inline-block;
  background: #f0f7ff;
  color: #2D5085;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.related-post-title {
  font-size: 18px;
  line-height: 1.4;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: #141417;
  margin-bottom: 8px;
}

.related-post-date {
  font-size: 12px;
  color: #647187;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Table of Contents Widget */
.toc-widget .toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-widget .toc-list li {
  margin-bottom: 10px;
}

.toc-widget .toc-list a {
  color: #647187;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
}

.toc-widget .toc-list a:hover {
  color: #2D5085;
  background: #f8f9fa;
  padding-left: 16px;
}

/* CTA Widget */
.cta-widget {
  background: linear-gradient(135deg, #2D5085 0%, #1a3254 100%);
  color: #fff;
}

.cta-widget .widget-title {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cta-widget p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.widget-cta-btn {
  display: block;
  text-align: center;
  padding: 12px;
  background: #AB966C;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.widget-cta-btn:hover {
  background: #8B7A5A;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .blog-hero-title {
    font-size: 42px;
  }

  .blog-detail-title {
    font-size: 36px;
  }

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

  .author-bio-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .blog-hero {
    padding: 140px 0 80px;
  }

  .blog-hero-title {
    font-size: 32px;
  }

  .blog-hero-subtitle {
    font-size: 16px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-detail-title {
    font-size: 28px;
  }

  .blog-detail-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-detail-featured-image {
    height: 280px;
  }

  .blog-detail-body {
    font-size: 16px;
  }

  .blog-detail-body h2 {
    font-size: 28px;
  }

  .blog-detail-body h3 {
    font-size: 22px;
  }

  .blog-quote {
    padding: 20px;
    font-size: 18px;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }

  .pagination-numbers {
    display: none;
  }
}
