/* ============================= */
/* BLOG-SPECIFIC STYLES */
/* Theme-aware blog styles that work with light and dark modes */
/* ============================= */

/* Blog List Page Styles */
/* ============================= */

/* Hero Section */
.blog-hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
  padding: 3rem 0;
  margin-bottom: 0;
}

.blog-hero-content {
  text-align: center;
  color: var(--white-color);
}

.blog-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* Blog Listing Section */
.blog-listing-section {
  background-color: var(--bg-secondary);
  min-height: 60vh;
}

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

.blog-sidebar-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.blog-sidebar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.blog-sidebar-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
}

.blog-sidebar-title i {
  color: var(--primary-color);
}

[data-theme='dark'] .blog-sidebar-title {
  border-bottom-color: var(--secondary-color);
}

[data-theme='dark'] .blog-sidebar-title i {
  color: var(--secondary-color);
}

/* Blog Author Card */
.blog-author-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.blog-author-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.blog-author-card .card-header {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 1.25rem;
  border-radius: 16px 16px 0 0;
}

.blog-author-card .card-body {
  padding: 1.5rem;
}

.blog-author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0.5rem 0;
}

/* Blog Tag Cloud */
.blog-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-tag i {
  font-size: 0.75rem;
}

.blog-tag:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
  color: var(--white-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(75, 49, 94, 0.3);
}

[data-theme='dark'] .blog-tag:hover {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-orange) 100%);
  border-color: var(--secondary-color);
}

/* Blog Post Card */
.blog-post-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.blog-post-card .card-img-container {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

.blog-post-card:hover .card-img-top {
  transform: scale(1.1);
}

.blog-post-card .card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-post-card .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-post-card .card-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-card .card-title a:hover {
  color: var(--primary-color);
}

[data-theme='dark'] .blog-post-card .card-title a:hover {
  color: var(--secondary-color);
}

.blog-post-card .card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.blog-post-card .card-footer {
  padding: 1rem 1.25rem;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.blog-post-card .blog-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.blog-post-card .blog-read-more-btn {
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-post-card .blog-read-more-btn:hover {
  transform: translateX(-5px);
}

/* Section Titles */
.blog-section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.blog-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

[data-theme='dark'] .blog-section-title::after {
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-orange));
}

/* Blog Detail Page Styles */
/* ============================= */

.blog-detail-section {
  background-color: var(--bg-secondary);
  animation: fadeInUp 0.6s ease-out;
}

/* Blog Title Header */
.blog-title-header {
  margin-bottom: 1.5rem;
}

.blog-title-main {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.blog-meta-info {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-meta-info i {
  color: var(--primary-color);
}

[data-theme='dark'] .blog-meta-info i {
  color: var(--secondary-color);
}

/* Blog Image Gallery Container with Swiper */
.blog-image-gallery-container {
  position: relative;
  margin-bottom: 1.5rem;
}

/* Main Gallery Swiper */
.blog-gallery-swiper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background-color: var(--bg-primary);
}

.blog-gallery-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
  min-height: 400px;
}

.blog-gallery-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
}

.blog-gallery-swiper .swiper-button-next,
.blog-gallery-swiper .swiper-button-prev {
  color: var(--white-color);
  background-color: rgba(0, 0, 0, 0.5);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.blog-gallery-swiper .swiper-button-next:hover,
.blog-gallery-swiper .swiper-button-prev:hover {
  background-color: var(--primary-color);
  transform: scale(1.1);
}

[data-theme='dark'] .blog-gallery-swiper .swiper-button-next:hover,
[data-theme='dark'] .blog-gallery-swiper .swiper-button-prev:hover {
  background-color: var(--secondary-color);
}

.blog-gallery-swiper .swiper-button-next::after,
.blog-gallery-swiper .swiper-button-prev::after {
  font-size: 20px;
}

/* Thumbnail Swiper */
.blog-thumbnails-swiper {
  padding: 0;
}

.blog-thumbnails-swiper .swiper-slide {
  height: 80px;
  opacity: 0.6;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.blog-thumbnails-swiper .swiper-slide:hover {
  opacity: 0.8;
}

.blog-thumbnails-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--primary-color);
  transform: scale(1.05);
}

[data-theme='dark'] .blog-thumbnails-swiper .swiper-slide-thumb-active {
  border-color: var(--secondary-color);
}

.blog-thumbnails-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Legacy Single Image Container (kept for backward compatibility) */
.blog-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-card);
}

.blog-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Blog Content Card */
.blog-content-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
}

.blog-content-card .card-header {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
  border-radius: 16px 16px 0 0;
}

.blog-content-card .card-title-main {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  display: flex;
  align-items: center;
}

.blog-content-card .card-title-main i {
  color: var(--primary-color);
}

[data-theme='dark'] .blog-content-card .card-title-main i {
  color: var(--secondary-color);
}

.blog-content-card .card-body {
  padding: 1.5rem;
}

.blog-content-card .card-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
  border-radius: 0 0 16px 16px;
}

/* Blog Content Text */
.blog-content-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  white-space: pre-wrap;
}

.blog-content-text p {
  margin-bottom: 1rem;
}

/* Blog Actions (Like & Share) */
.blog-actions-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-actions-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.blog-like-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-like-btn {
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-like-btn:hover {
  transform: scale(1.05);
}

.blog-like-btn.active {
  background-color: #dc3545;
  color: white;
  border-color: #dc3545;
}

.blog-like-count {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Blog Share Actions */
.blog-share-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.blog-share-label {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.blog-share-label i {
  color: var(--primary-color);
}

[data-theme='dark'] .blog-share-label i {
  color: var(--secondary-color);
}

.blog-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
}

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

.blog-share-btn.facebook:hover {
  background-color: #1877f2;
  color: white;
  border-color: #1877f2;
}

.blog-share-btn.twitter:hover {
  background-color: #1da1f2;
  color: white;
  border-color: #1da1f2;
}

.blog-share-btn.linkedin:hover {
  background-color: #0a66c2;
  color: white;
  border-color: #0a66c2;
}

.blog-share-btn.whatsapp:hover {
  background-color: #25d366;
  color: white;
  border-color: #25d366;
}

.blog-share-btn.copy-link:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

[data-theme='dark'] .blog-share-btn.copy-link:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.blog-copy-success-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #3a2449;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.blog-copy-success-message.show {
  opacity: 1;
  visibility: visible;
}

/* Blog Comments Section */
/* ============================= */

.blog-comments-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.blog-comments-card .card-header {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
  border-radius: 16px 16px 0 0;
}

.blog-comments-card .card-body {
  padding: 1.5rem;
}

/* Alert Link Styling */
.blog-comments-card .alert-link {
  font-weight: 700;
  text-decoration: none;
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  background-color: transparent;
}

.blog-comments-card .alert-link:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(75, 49, 94, 0.3);
  text-decoration: none;
}

[data-theme='dark'] .blog-comments-card .alert-link {
  color: var(--secondary-color);
}

[data-theme='dark'] .blog-comments-card .alert-link:hover {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-orange) 100%);
  color: var(--white-color);
  box-shadow: 0 4px 12px rgba(255, 96, 1, 0.4);
}

.blog-comments-card .alert-link i {
  transition: transform 0.3s ease;
}

.blog-comments-card .alert-link:hover i {
  transform: translateX(-3px);
}

/* Comment Form */
.blog-comment-form {
  margin-bottom: 2rem;
}

.blog-comment-form textarea {
  width: 100%;
  min-height: 120px;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  resize: vertical;
  transition: all 0.3s ease;
}

.blog-comment-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(75, 49, 94, 0.1);
}

[data-theme='dark'] .blog-comment-form textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(255, 96, 1, 0.1);
}

.blog-comment-reply-info {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.blog-comment-reply-info strong {
  color: var(--text-primary);
  font-weight: 600;
}

.blog-comment-cancel-reply {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-comment-cancel-reply:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Comment List */
.blog-comment-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-comment-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.blog-comment-item:hover {
  background-color: var(--bg-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blog-comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.blog-comment-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-comment-author strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.blog-comment-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-comment-body {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.blog-comment-reply-btn {
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-comment-replies {
  margin-top: 1rem;
  padding-left: 2rem;
  border-left: 2px solid var(--border-color);
}

.blog-comment-replies .blog-comment-item {
  background-color: var(--bg-primary);
}

[data-theme='dark'] .blog-comment-replies .blog-comment-item {
  background-color: var(--bg-secondary-light);
}

/* Empty State */
.blog-empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

.blog-empty-state i {
  font-size: 3rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.blog-empty-state p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Related Posts Section */
.blog-related-posts-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

.blog-related-posts-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.blog-related-posts-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================= */
/* HOME PAGE BLOGS SWIPER */
/* ============================= */

.latest-blogs-section {
  background-color: var(--bg-secondary);
}

.home-blogs-swiper {
  position: relative;
  padding: 0 50px;
  margin-bottom: 2rem;
}

.home-blogs-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.home-blogs-swiper .blog-post-card {
  width: 100%;
}

/* Swiper Navigation Buttons */
.home-blogs-next,
.home-blogs-prev {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.home-blogs-next:hover,
.home-blogs-prev:hover {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
  box-shadow: var(--shadow-card-hover);
}

[data-theme='dark'] .home-blogs-next:hover,
[data-theme='dark'] .home-blogs-prev:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.home-blogs-next::after,
.home-blogs-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Swiper Pagination */
.home-blogs-pagination {
  position: relative;
  margin-top: 2rem;
}

.home-blogs-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--border-color);
  opacity: 1;
  transition: all 0.3s ease;
}

.home-blogs-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

[data-theme='dark'] .home-blogs-pagination .swiper-pagination-bullet-active {
  background: var(--secondary-color);
}

/* Section Header */
.section-header .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.section-header .section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .blog-sidebar-wrapper {
    position: static;
    margin-top: 2rem;
  }

  .blog-title-main {
    font-size: 1.8rem;
  }

  .blog-section-title {
    font-size: 1.5rem;
  }

  .blog-comment-replies {
    padding-left: 1rem;
  }

  .home-blogs-swiper {
    padding: 0 40px;
  }

  .section-header .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .blog-hero-title {
    font-size: 2rem;
  }

  .blog-hero-subtitle {
    font-size: 1rem;
  }

  .blog-title-main {
    font-size: 1.5rem;
  }

  .blog-section-title {
    font-size: 1.3rem;
  }

  .blog-share-action {
    justify-content: center;
  }

  .blog-comment-replies {
    padding-left: 0.5rem;
    border-left-width: 1px;
  }

  .home-blogs-swiper {
    padding: 0 35px;
  }

  .home-blogs-next,
  .home-blogs-prev {
    width: 35px;
    height: 35px;
  }

  .section-header .section-title {
    font-size: 1.8rem;
  }

  .section-header .section-subtitle {
    font-size: 1rem;
  }
}

/* ============================= */
/* BLOG PAGINATION STYLES */
/* ============================= */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.blog-pagination .page-item {
  margin: 0;
}

.blog-pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.blog-pagination .page-link:hover {
  background-color: var(--bg-secondary);
  color: #4b315e; /* --primary-color */
  border-color: #4b315e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.blog-pagination .page-item.active .page-link {
  background-color: #4b315e;
  border-color: #4b315e;
  color: var(--white-color);
  box-shadow: 0 4px 12px rgba(75, 49, 94, 0.3);
  transform: translateY(-2px);
}

.blog-pagination .page-item.disabled .page-link {
  background-color: var(--bg-secondary);
  color: var(--text-muted);
  opacity: 0.6;
  pointer-events: none;
  box-shadow: none;
}

.blog-pagination .page-link:focus {
  box-shadow: 0 0 0 3px rgba(75, 49, 94, 0.2);
}
}
