/* Main section styling */
.more-section {
  padding: 3rem 0;
}

/* Swiper container wrapper for positioning arrows */
.swiper-container-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Swiper container styling */
#blog-swiper {
  padding: 20px 0;
}

/* Swiper slide styling */
.swiper-slide {
  height: auto !important;
  display: flex;
}

/* Image styling - uniform size with full content visible */
.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background-color: #f8f9fa;
  border-radius: 2rem 2rem 0 0;

}

/* Card body styling */
.card-body {
  padding-left: 0;
  padding-right: 0;
  padding-top: 1.5rem;
}

/* Large screen padding */
@media (min-width: 992px) {
  .px-lg-6 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}



/* Loading spinner */
.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

/* Blog excerpt styling */
.blog-excerpt p {
  margin-bottom: 0.5rem;
}

/* Card title styling */

/* Responsive adjustments */
@media (max-width: 768px) {
  .more-section {
    padding: 2rem 0;
  }

  .card img {
    height: 250px;
  }

  .card-body {
    padding-top: 1rem;
  }
}

/* Additional styling for better visual hierarchy */
.text-muted.small {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card hover effect */
.card:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.card {
  transition: transform 0.3s ease;
  padding: 0;
}

/* Hide default Swiper navigation buttons */
.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

/* Custom Circular Navigation Arrows */
.custom-navigation {
  position: absolute;
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.custom-prev,
.custom-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #64748b;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-prev:hover,
.custom-next:hover {
  background: #475569;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.custom-prev:active,
.custom-next:active {
  transform: scale(0.95);
}

/* Swiper pagination bullets */
.swiper-pagination-bullet {
  background: #dee2e6;
  opacity: 1;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: #007bff;
}

/* Responsive adjustments */
@media (max-width: 1300px) {
  .custom-navigation {
    right: -60px;
  }

  .custom-prev,
  .custom-next {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 1200px) {
  .custom-navigation {
    right: -50px;
  }

  .custom-prev,
  .custom-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 992px) {
  .custom-navigation {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 2rem;
    transform: none;
    gap: 20px;
  }

  .custom-prev,
  .custom-next {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .custom-prev,
  .custom-next {
    width: 40px;
    height: 40px;
  }
}
