/* ==========================================================================
   product_showcase — "Our Products" band with alternating two-column blocks.
   ========================================================================== */

.biz-products {
  background-color: #f3f4f6;
  padding: 2rem 0 3rem;
}

.biz-products__heading {
  text-align: center;
  text-transform: uppercase;
  color: var(--color-primary, #012269);
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 2.25rem;
  margin: 0;
  padding: 1.5rem 1rem;
}

.biz-products__block {
  max-width: 1280px;
  margin: 0 auto 4rem;
  padding: 2.0rem 0.75rem 0;
  border-top: 2px solid #e5e7eb;
}
.biz-products__block:last-child { margin-bottom: 0; }

.biz-products__block-head { margin-bottom: 1.25rem; }
.biz-products__block-title {
  color: #0f172a;
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 1.85rem;
  margin: 0;
}
.biz-products__block-desc {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  margin: 1rem 0 0;
  max-width: 70ch;
}

/* Card */
.biz-products__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, .12);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .biz-products__card { grid-template-columns: 1fr 1fr; }
  /* Reverse → media column moves to the right. */
  .biz-products__card--reverse .biz-products__media   { order: 2; }
  .biz-products__card--reverse .biz-products__content { order: 1; }
}

/* Environment image + caption overlay */
.biz-products__media {
  position: relative;
  min-height: 320px;
  background-color: #f1f5f9;
}
.biz-products__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.biz-products__caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, .7), rgba(0, 0, 0, .3) 45%, transparent);
}
.biz-products__caption-title {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: .35rem;
}
@media (min-width: 1024px) { .biz-products__caption-title { font-size: 1.85rem; } }
.biz-products__caption-text {
  color: rgba(255, 255, 255, .9);
  font-size: .95rem;
  margin: 0;
}

/* Content */
.biz-products__content { padding: 1.5rem; }
@media (min-width: 1024px) { .biz-products__content { padding: 1.75rem; } }

.biz-products__content-title {
  color: #0f172a;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0;
}
.biz-products__content-text {
  color: #475569;
  margin: 1rem 0 0;
}

.biz-products__photo {
  margin-top: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  height: 288px;
  background-color: #f1f5f9;
}
.biz-products__photo img { width: 100%; height: 100%; object-fit: contain; }
