.bs-featured-banners {
  padding: 40px 0;
}

.bs-featured-banners__item {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  gap: 20px;
  height: 340px;
  /* Siyah kenarları kaldırmak için box-shadow ve overflow kontrol */
  /* Siyah renk yok */
}

/* Görsel */
.bs-featured-banners__item img {
  max-height: 280px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
  /* Metin kısmı box-shadow: 0 0 8px rgba(0,0,0,0.05);*/
}

/* Metin kısmı */
.bs-featured-banners__content {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Küçük başlık */
.bs-featured-banners__subtitle {
  color: #0c4147; /* Turuncu / sarı tonu */
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  text-transform: capitalize;
  font-family: "Arial", sans-serif;
}

/* Büyük başlık */
.bs-featured-banners__title {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #111;
}

/* Butonlar */
.bs-featured-banners__btn {
  padding: 0.5rem 1.4rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
}

/* Sarı dolu buton */
.bs-featured-banners__btn--primary {
  background-color: #0c4147;
  color: #fff;
  border: none;
}
.bs-featured-banners__btn--primary:hover {
  background-color: #c38a00;
  color: #fff;
  text-decoration: none;
}

/* Beyaz kenarlı buton */
.bs-featured-banners__btn--outline {
  background-color: transparent;
  color: #999;
  border: 2px solid #ddd;
}
.bs-featured-banners__btn--outline:hover {
  background-color: #0c4147;
  color: #fff;
  border-color: #0c4147;
  text-decoration: none;
}

/* Responsive düzenleme */
@media (max-width: 991px) {
  .bs-featured-banners__item {
    flex-direction: column;
    height: auto;
    text-align: center;
  }
  .bs-featured-banners__content {
    max-width: 100%;
    margin-top: 15px;
  }
  .bs-featured-banners__item img {
    max-width: 80%;
    height: auto;
  }
}

/* about */

.about-factory-section {
  background-color: #ffffff;
}

.about-factory-box {
  background: #ffffff;
  padding: 2.5rem;
  /* border: 1px solid #eeeeee; */
}

.about-factory-box p {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.about-social-icon {
  width: 34px;
  height: 34px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
}

.about-social-icon:hover {
  background-color: #0f4c4c;
  color: #ffffff;
  border-color: #0f4c4c;
}

.about-signature {
  font-style: italic;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

@media (max-width: 991px) {
  .about-factory-box {
    padding: 2rem;
  }
}