/* ==========================================================================
   Business Strategy Page — Strategy Combined photo panel
   Scoped under .ec-strategy__photo-box — does not touch shared .ec-strategy__box
   ========================================================================== */
.bs-hero-text-card {
  color: #ffffff;
}

.bs-hero-text-card h2 {
  color: white;
  text-transform: none;
  letter-spacing: 3px;
  font-size: 120px;
}

.bs-hero-text-card p {
  font-size: 24px;
  letter-spacing: 2px;
  max-width: 450px;
}

.bs-strategy {
  position: relative;
  background: var(--ec-green-dark) url("../img/service/ecommerce-solutions/business.png") center / cover no-repeat;
  text-align: center;
}

.ec-strategy__photo-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 25px auto 0;
}

.ec-strategy__photo-box-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.ec-strategy__points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.ec-strategy__point {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 17px 35px;
  border-radius: 10px;
  background: rgba(10, 20, 18, 0.55);
}

.ec-strategy__point-icon {
  width: 40px;
}

.ec-strategy__point-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.ec-strategy__point-heading {
  margin: 0;
  font-size: 23px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.ec-strategy__point-copy {
  margin: 0;
  font-size: 21px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

@media (max-width: 768px) {
  .ec-strategy__photo-box {
    min-height: auto;
  }

  .ec-strategy__points {
    width: 100%;
    min-height: auto;
    padding: 20px 16px;
  }

  .ec-strategy__point-heading {
    font-size: 15px;
  }

  .ec-strategy__point-copy {
    font-size: 12px;
  }
}

/* t1 viewport (< 375px): prevent "Strategy" heading from overflowing at 320px */
@media (max-width: 374px) {
  .bs-hero-text-card h2 {
    font-size: 96px;
    letter-spacing: 0;
  }

  .bs-hero-text-card p {
    font-size: 20px;
  }
}