/* Story Slider Cards - Modern Minimalist Restyle */
.blogSlider .swiper-slide {
  height: auto; /* Ensures flex container works correctly */
}

.story-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.story-img-container {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.story-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0, 1);
}

.story-card:hover .story-img-container img {
  transform: scale(1.08);
}

.story-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.story-title {
  font-family: sans-serif; /* Change to your preferred font */
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
 
}

.story-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 16px;
  font-weight: 600;
}

.story-text {
  font-size: 0.95rem;
  color: #64748b;
 
}

.btn-story {
  display: inline-block;
  color: #1e293b;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #1e293b;
  width: fit-content;
  transition: all 0.3s;
}

.btn-story:hover {
  color: #000;
  border-color: #000;
  padding-left: 5px;
}