/* ====== Global Professional Theme ====== */
/* Base row layout */

.img-col,
.text-col {
  flex: 1;
}

.b-example-divider {
  border: 0;
  height: 1px;
  background-color: #d1d5db;
  /* light gray line */
  margin: 60px 0;
}

/* Cleaned for Product Pages Consistency */


.feature-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

/* Image LEFT */
.feature-row.left {
  flex-direction: row;
}

/* Image RIGHT */
.feature-row.right {
  flex-direction: row-reverse;
}

/* Columns */
.img-col,
.text-col {
  flex: 1;
}

/* Images */
.img-col img {
  width: 100%;
  border-radius: 8px;
  /* height removed for automatic sizing */
  object-fit: cover;
  box-shadow: 0px 4px 14px rgba(19, 0, 0, 0.236);
}

/* Text */
.text-col h2 {
  color: #3873bd;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
}

.text-col p {
  text-align: left;
  color: #444;
  line-height: 1.4rem;
  font-size: medium;
}

/* MOBILE */
@media (max-width: 768px) {
  .feature-row {
    flex-direction: column !important;
    text-align: center;
  }

  .text-col h1,
  .text-col p {
    text-align: center !important;
  }
}