﻿@media (min-width: 1400px) {
  /* Cap the container *and* pin it to the left edge */
  .banner .container-wide {
    max-width: 1320px;       /* adjust as needed */
    margin-left: 8%;          /* left-anchored */
    margin-right: auto;      /* not centered */
    padding-left: 1.5rem;    /* comfortable gutter */
    padding-right: 1.5rem;
  }

  /* Make sure the text column itself doesn't expand oddly */
  .banner .col-12.col-md-5 {
    max-width: 560px;        /* optional guardrail */
  }

  /* Defensive: keep row aligned to the left, not centered */
  .banner .row {
    justify-content: flex-start;
  }
}