.promo-banner {
    width: 100%;
    box-sizing: border-box;
    padding: 0; /* adjust if you want outer breathing room */
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  }

  .promo-inner {
    max-width: 100%;      /* make full-bleed by removing or increasing */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;  /* stacks by default (mobile-first) */
    overflow: hidden;
    border-radius: 0px;
  }

  .promo-col {
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    min-height:118px;       /* tweak height as needed */
    box-sizing: border-box;
  }

  .promo-left {
    background: #A81D34;     /* left column color */
    color: #fff;
  }

 .promo-right {
  background: #f2f2f2;
  color: #111;
  display: flex;
  flex-direction: column;
  gap: 6px; /* tweak spacing as needed */
  justify-content: center;
}
        
    .promo-col h2 {
        font-size: 20px !important;
        }

  .promo-col h2,
  .promo-col h3 {
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0.2px;
  }

  .promo-col p {
     margin:0;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.2px;
    line-height:1.05;
    font-size:24px; 
  }

  .under-nav-banner {
    padding-bottom: 10px;
  }
		
 .details{
    margin:0;
    text-transform:uppercase;
    font-weight:500 !important;
    font-size:10px !important;
    letter-spacing:.4px;
    line-height:1.1;
  }
  .details a{ color:#fff; text-decoration:underline; }
  .details a:hover{ text-decoration:underline; }

  .promo-btn {
	font-size: 14px !important;
    align-self: start;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 8px;
    background: #A81D34;
    color: #fff;
    font-weight: 700;
    display: inline-block;
	 line-height: .5 !important;
  }

  .promo-btn:focus-visible,
  .promo-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
  }

  .promo-link {
    align-self: start;
    text-decoration: underline;
    font-weight: 600;
    color: inherit;
  }

  /* Switch to 2 columns on larger screens */
  @media (min-width: 640px) {
    .promo-inner {
      grid-template-columns: 1fr 1fr;
    }
    .promo-col {
      min-height: 118px; /* optional: even height match, per common banner spec */
    }
  }