/* Blog Slider Widget Styles - 2x2 Grid Layout */

.blog-slider-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.blog-swiper-container {
  width: 100%;
  position: relative;
  overflow: visible;
  padding-bottom: 60px;
}

.blog-swiper-container .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.blog-swiper-container .swiper-slide {
  height: auto;
  display: flex;
}

/* Blog Card Styling */
.blog-slider-card {
  width: 100%;
  background: #EBF8FF;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Card Image */
.blog-card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
  height: 195px;
}

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

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

.blog-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card Content */
.blog-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  padding: 24px;
}

/* Meta Info */
.blog-card-icon {
  display: flex;
  align-items: center;
  color: #8b92a7;
}

.blog-card-icon svg {
  width: 14px;
  height: 14px;
}

.blog-card-date {
  font-family: "NeueMontreal" !important;
  font-size: 14px;
  font-weight: 500;
  color: #350f6b;
  letter-spacing: -0.25px;
}

.blog-card-content .meta {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.36px;
  color: #350f6b;
  line-height: 1;
  flex-wrap: wrap;
}

.blog-card-content .meta .blog-category {
  position: relative;
}

.blog-card-content .meta .blog-category::before {
  position: absolute;
  content: "\2022";
  font-size: 30px;
  left: -16px;
  top: -8px;
}

/* Title */
.blog-card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #350f6b;
  margin: 0;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: #5b7cff;
}

/* Excerpt */
.blog-card-excerpt {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #350f6b;
  letter-spacing: -0.2px;
  margin: 0 0 32px 0;
  flex-grow: 1;
}

/* Read More Link */
.blog-card-content .blog-card-link {
  font-family: "NeueMontreal" !important;
  display: inline-flex;
  align-items: self-start;
  padding: 11px 20px;
  border: 1px solid #d7bbff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  color: #350f6b;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* .blog-card-link::after {
  content: "�";
  margin-left: 6px;
  transition: margin-left 0.3s ease;
} */

.blog-card-link:hover {
  color: #fff;
  border-color: #350f6b;
  background-color: #350f6b;
}

.blog-card-link:hover::after {
  margin-left: 12px;
}

/* Navigation Buttons */
.blog-swiper-button-prev,
.blog-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #2e3956;
}

.blog-swiper-button-prev {
  left: -24px;
}

.blog-swiper-button-next {
  right: -24px;
}

.blog-swiper-button-prev:hover,
.blog-swiper-button-next:hover {
  background: #5b7cff;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.blog-swiper-button-prev.swiper-button-disabled,
.blog-swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Pagination Dots - Image Design */
.blog-swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  align-items: center;
  justify-content: center;
}

.blog-swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #c1e9ff;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  margin: 0 !important;
}

.blog-swiper-pagination .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background: #2683b5;
}


@media screen and (max-width: 1199px) {
  .blog-card-title {
    font-size: 20px;
    letter-spacing: -0.5px;
  }

  .blog-card-content .meta {
    font-size: 15px;
  }
}