/* === PRODUCT SECTION === */
.product {
  margin: %5 auto;
  -o-transition: 1.1s .4s;
  -moz-transition: 1.1s .4s;
  transition: 1.1s .4s;
}
.blog-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem 1rem;
  flex-wrap: wrap; 
  margin-top: 5%;
}

/* === EACH SECTION === */

.blog {
  flex-direction: column; 
  align-items: center;
  width: 40%; 
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-wrap:wrap;
}
.biz-show-one {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #efefef;
  border-radius: 16px;
  overflow: hidden;
  margin-left:3%;
  margin-right:1%;
}

.biz-show-one:hover{
  transform: translateY(-6px);
}
/* === IMAGE === */
.bs-one-img-cntr {
  flex: 1;
  min-width: 50%;
  position: relative;
}

.bs-one-img-cntr img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 400px;
}

/* === TEXT === */
.bs-one-desc {
  flex: 1;
  padding: 2%;
  box-sizing: border-box;
}
.blog .bs-one-desc {
  padding:4% }
.bs-one-desc h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 24px;
  position: relative;
}
.blog .bs-one-desc h3 {
  margin-top: 15px;
}
.bs-one-desc h3::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 36px;
  height: 3px;
  background: #9E4493;
}

.desc {
  margin-bottom: 20px;
}

.desc h4 {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.desc h5 {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* === REVERSED ORDER FOR SECOND ITEM === */
 .biz-reverse {
  flex-direction: row-reverse;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .biz-show-one {
    flex-direction: column;
  }

  .bs-one-desc {
    margin: auto;
  }

  .bs-one-img-cntr {
    min-width: 100%;
  }

  .bs-one-desc h3 {
    font-size: 24px;
  }

  .desc h4 {
    font-size: 16px;
  }

}

@media (max-width: 768px) {
  .bs-one-desc {
    padding: 30px 15px;
  }

  .bs-one-desc h3 {
    font-size: 20px;
  }

  .desc h5 {
    font-size: 14px;
  }
  .blog {
  width: 90%;
}
.bs-one-img-cntr img {
    height: auto; /* lets it scale naturally */
    max-height: 240px; /* limits vertical stretch */
  }
}
