.cards-wrapper {
  width: 100%;
  max-width: 85%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  padding: 3rem 0;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-img {
  width: 100%;
  /* height:220px; */
  overflow: hidden;
}

.card-img img {
  width: 100%;
  /* height:100%; */
  object-fit: cover;
}

.card-content {
  padding: 1rem;
  /* height: 200px; */
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  font-size: 1.1rem;
  font-weight: 300;
  color: #111827;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #111827;
  font-weight: 500;
  text-decoration: none;
}

.read-more span {
  transition: transform 0.2s ease;
}

.read-more:hover span {
  transform: translateX(5px);
}

@media (max-width: 360px) {
  .cards-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Simple Detail Page Styles */
/* .story-detail-wrapper {
  padding: 60px 0;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid;
}
.story-header {
  text-align: center;
  margin-bottom: 40px;
}

.story-meta {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 30px;
}
.story-main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.story-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
} */
/* Handle images inside the content area */
/* .story-content img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
.back-btn {
  display: inline-block;
  margin-bottom: 20px;
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
} */

.customer_detail_banner_container{
  padding: 4rem 0;
  background-color: var(--dark-sky-blue);
  /* height: 80vh; */
  /* position: relative; */
}
.customer_detail_banner_container .customer_detail_banner{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}
.customer_detail_banner_container h1{
  font-size: 3rem;
  font-weight: 400;
  /* padding-bottom: 2rem; */
}
.customer_detail_banner_container .customer_detail_img_box{
  /* position: absolute; */
  /* top: 40%; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  /* width: 100%; */
  /* max-width: 85%; */
  border-radius: 1rem;
  overflow: hidden;
}
.customer_detail_banner_container .customer_detail_img_box img{
  width: 100%;
}
.story-detail-wrapper .customer_content{
  padding-top: 3rem;
  padding-bottom: 2rem;
}
.story-detail-wrapper .customer_content p{
  padding-bottom: .5rem;
}
.story-detail-wrapper .customer_content h2{
  padding-bottom: 1rem;
  font-weight: 400;
}