/* ============================================================================
   Shared product-hero section — image left, product highlights right.
   Used by NitroMag / Magnum / MicroMag controller pages.
   ============================================================================ */

.product-hero {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 8px;
  padding: 1.5rem 1rem;
}

/* -------- image frame -------- */
.product-hero-img-frame {
  background: #ffffff;
  border: 1px solid #e5e9ef;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 14px rgba(0, 46, 87, 0.08);
  display: inline-block;
  max-width: 100%;
}
.product-hero-img-frame img,
.product-hero-img-frame video {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;    /* keep media centered inside the frame */
  margin-right: auto;   /* (helps when a page-level rule sets width < 100%) */
}

/* -------- content column -------- */
.product-hero-content {
  padding: 0 0.5rem;
}

/* Big product title in MCS blue with a small orange accent bar */
.product-hero-title {
  color: #002e57;
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  padding-left: 0.75rem;
  border-left: 4px solid #ff8c00;
  line-height: 1.25;
}

.product-hero-lead {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

/* Section headings with an orange icon */
.product-hero-section-title {
  color: #002e57;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0.8rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.product-hero-section-title i {
  color: #ff8c00;
  font-size: 1rem;
}

/* Feature list with green check marks — 2-col grid on wide screens */
.product-hero-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem 1rem;
  color: #333;
  font-size: 0.92rem;
}
@media (min-width: 992px) {
  .product-hero-feature-list {
    grid-template-columns: 1fr 1fr;
  }
}
.product-hero-feature-list li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.4;
}
.product-hero-feature-list li::before {
  content: "\f00c";                 /* Font Awesome 4 check */
  font-family: 'FontAwesome';
  color: #28a745;
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.85rem;
}

/* Feature-groups layout — used when each capability is a small
   labelled block (dt / dd style) instead of a one-line bullet */
.product-hero-feature-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem 1.2rem;
  margin: 0 0 0.8rem;
}
@media (min-width: 992px) {
  .product-hero-feature-groups {
    grid-template-columns: 1fr 1fr;
  }
}
.product-hero-feature-group {
  background: #ffffff;
  border-left: 3px solid #ff8c00;
  padding: 0.5rem 0.75rem;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 1px 3px rgba(0, 46, 87, 0.05);
}
.product-hero-feature-group b,
.product-hero-feature-group strong {
  color: #002e57;
  display: block;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.15rem;
}
.product-hero-feature-group p {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0;
}

/* Two-column mini info blocks below the main features */
.product-hero-info-row {
  margin-top: 0.6rem;
}
.product-hero-info-text {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Smaller title on tablets so it doesn't wrap awkwardly */
@media (max-width: 991.98px) {
  .product-hero-title { font-size: 1.4rem; }
  .product-hero { padding: 1rem 0.5rem; }
}
