.container-header,
.grid-child.container-header,
.container-header .navbar {
  box-shadow: none !important;
}

.container-limited,
.site-container,
.main-content,
.com-content-article,
#quix-wrapper .quix-section {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  
}

/* Allow long titles to wrap nicely */
a.wrap-title { 
  white-space: normal !important;
  overflow-wrap:anywhere;
  display:block;
  max-width:16rem;
}

/* Apply 1.5rem only where intended */
.content-text p {
  font-size: 1.5rem;
  line-height: 1.6;
}
/* REMOVE this if you don't want site-wide big paragraphs */
/* p { font-size: 1.5rem; line-height:1.6; } */

/* Buttons — avoid clobbering Bootstrap variants */
.btn:not(.btn-link) {
  background-color: #cc3c46;
  color: #fff;
  border-color: #cc3c46;
}
.btn:not(.btn-link):hover,
.btn:not(.btn-link):focus {
  filter: brightness(0.95);
}

/* Link bar (single declaration) */
.link-bar, #link-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin: 0 auto;
}
.link-bar a, #link-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1rem;
  border-radius: .75rem;
  background: #cc3c46;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  transition: background .2s, transform .1s, box-shadow .2s, border-color .2s;
}
.link-bar a:hover, #link-bar a:hover,
.link-bar a:focus, #link-bar a:focus {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,.18);
}
.link-bar a:focus-visible, #link-bar a:focus-visible {
  outline: 3px solid #ffcc00;
  outline-offset: 2px;
}
.link-bar a.is-secondary, #link-bar a.is-secondary {
  background: #fff; color: #0056b3; border-color: #0056b3;
}
.link-bar a.is-ghost, #link-bar a.is-ghost {
  background: transparent; color: #0056b3; border-color: #0056b3;
}

/* Media + title block (consolidated) */
.qa-media {
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;           /* allow wrapping by default */
}
.qa-media .qa-img {
  width:120px; height:auto; flex:0 0 auto; display:block;
}
.qa-media .qa-title { margin:0; }

/* Stack on small screens */
@media (max-width:600px){
  .qa-media { flex-direction:column; align-items:flex-start; }
}

/* Center contents horizontally (and vertically if needed) */
/* Parent: align items to the top */
.video-player {
  display: flex;
  justify-content: flex-start;   /* left edge horizontally */
  align-items: flex-start;       /* TOP vertically */
  text-align: left;              /* optional; doesn't affect video */
  width: 100%;
}

/* Ensure the media itself doesn’t re-center */
.video-player {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.video-player > video,
.video-player > iframe,
.video-player > object,
.video-player > img {
  width: 100%;          /* <-- force fill */
  max-width: 100%;
  height: auto;
  display: block;
  flex: 1 1 auto;       /* let it grow in the flex row */
}


/* If this class is applied, it won't center—just gives height */
.video-player--tall { min-height: 60vh; }  /* remove if it creates extra space you don't want */

/* Make the Quix row a flex row with no gaps */
.fill-cols {
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Target Quix columns in that row */
.fill-cols > [class*="qx-col"] {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box;
}

/* Force direct children inside each column to occupy full space */
.fill-cols > [class*="qx-col"] > * {
  width: 100% !important;
  height: 100%;
}

/* Quix often wraps content in .qx-element — ensure it stretches */
.fill-cols > [class*="qx-col"] > .qx-element,
.fill-cols > [class*="qx-col"] > .qx-element > * {
  width: 100% !important;
  height: 100%;
}

/* Common media should fill the column width */
.fill-cols img,
.fill-cols video,
.fill-cols iframe,
.fill-cols object {
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  display: block;
}

/* If any Quix element ships with a limiting max-width, neutralize it */
.fill-cols .qx-text,
.fill-cols .qx-image,
.fill-cols .qx-element {
  max-width: none !important;
}

.fill-cols [class*="qx-col"] .qx-container,
.fill-cols [class*="qx-col"] .qx-inner { padding:0 !important; margin:0 !important; }

.equal-media .media-frame{
  width:100%;
  aspect-ratio: var(--ratio, 16/9);
  position:relative;
  overflow:hidden;           /* avoid overflow when cropping */
}

.equal-media .media-frame img,
.equal-media .media-frame video{
  position:absolute; inset:0;
  width:100%; height:100%;
  display:block;
  object-fit:cover;          /* or 'contain' */
  object-position: top;      /* <— anchor to the top */
}

/* If you prefer letterboxing but still top-aligned */
.equal-media .media-frame.is-contain img,
.equal-media .media-frame.is-contain video{
  object-fit:contain;
  object-position: top;      /* stays at the top edge */
}
/* Reusable sub-header with image on the left */
.subhead{
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 1.25em 0;
}
.subhead__media {
    flex: 0 0 200px;    /* Fixed width container */
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.subhead__media img {
    width: auto !important;
    height: auto !important;
    max-width: 100%;    /* Scale down if larger than container */
    object-fit: contain;
    display: block;
}
.subhead__media2 img{
  width: 100px;
  height: auto;
  object-fit: contain;
  display: block;
}



.subhead__body{ flex: 1 1 auto; min-width: 0; }
.subhead__kicker{
  display:block; font-size:.8em; font-weight:600; letter-spacing:.06em;
  text-transform:uppercase; opacity:.75; margin-bottom:.35em;
}
.subhead__title{
  --h2-accent:#cc3c46;
  margin:0; line-height:1.25;
  font-size:clamp(1.25rem, 1.1vw + 1rem, 2rem);
  overflow-wrap:anywhere; hyphens:auto;
}
.subhead__title .accent{ color: var(--h2-accent); }
.subhead--underline .subhead__title{ position:relative; padding-bottom:.35rem; }
.subhead--underline .subhead__title::after{
  content:""; position:absolute; left:0; bottom:0;
  width:64px; height:4px; background:var(--h2-accent); border-radius:2px;
}
@media (max-width: 768px){
  .subhead{ flex-direction: column; text-align:center; }
  .subhead__media{ flex:0 0 auto; max-width:260px; width:60%; }
  .subhead--underline .subhead__title::after{ left:50%; transform:translateX(-50%); }
}

/* Remove the Quix "adjacent heading" top margin just for the subhead */
.subhead-secondary__kicker + .subhead-secondary__title { 
  margin-top: 0 !important; 
}

/* Keep a small, controlled gap under the kicker */
.subhead-secondary__kicker { 
  margin: 0 0 4px 0 !important; 
  display: block; 
  line-height: 1; 
}

.subhead-secondary {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 30px 0 20px 0;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.subhead-secondary__media {
  flex-shrink: 0;
}

.subhead-secondary__media img {
  width: 100px;
  height: auto
  object-fit: contain;
}

.subhead-secondary__media2 img {
  width: 250px;
  height: auto
  object-fit: contain;
}

.subhead-secondary__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.subhead-secondary__kicker {
  font-size: 0.75em;
  font-weight: bold;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1;
}

.subhead-secondary__title {
  font-size: 1.5em;
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}

.subhead-secondary__title .accent {
  color: #0288d1;
}

/* Only affect the immediate children inside this subheader block */
.subhead-secondary__content > * {
  margin: 0 !important;
  padding: 0 !important;
}

/* Provide the *only* vertical gap: under the first child (kicker wrapper) */
.subhead-secondary__content > *:first-child {
  margin-bottom: 4px !important;
}

/* If Quix wraps the kicker in a <p>, normalize it */
.subhead-secondary__content > p.qx-text,
.subhead-secondary__content > p {
  margin: 0 !important;
  padding: 0 !important;
}

/* Cosmetics: make kicker a block so baseline quirks can't add space */
.subhead-secondary__kicker {
  display: block;
  line-height: 1;
}

.paragraph-header{
    display:block;
    font-weight:700;
    line-height:1.25;
    font-size:clamp(1.1rem, 1.2vw + 0.9rem, 1.4rem); /* ≈ h3 scale */
    margin:1.2em 0 0.6em;
    color:inherit; /* inherit text color from context */
  }

.qx-element-heading, 
.qx-element-heading * {
    text-align: left !important;
    justify-content: flex-start !important;
}

.white-text {
   color : #FFF !important;
}

.qa-hero{
  display:grid;
  grid-template-columns: minmax(160px, 33%) 1fr; /* image ≈33%, text gets the rest */
  align-items:center;
  gap:32px;                     /* a bit more space between image & title */
  padding:24px;
  text-align:left;
}

.qa-hero__media{
  width:100%;
  aspect-ratio: auto;          /* keep it square without fixed px */
  display:grid; place-items:center;
  border-radius:12px; overflow:hidden;
}

.qa-hero__media img{
  width:100%; height:100%;
  object-fit:contain; display:block;
}

/* More space for the H1 area */
.qa-hero__title{
  margin:0;
  padding:12px 0 8px;           /* extra breathing room */
  line-height:1.15;
  font-size:clamp(1.8rem, 2.4vw + 1rem, 2.8rem);
  max-width:60ch;               /* avoid super-long lines */
}

.qa-hero__brand{ color:#f74c3c; }
.qa-hero__title{ color:white;}
/* Stack on small screens */
@media (max-width: 640px){
  .qa-hero{
    grid-template-columns: 1fr;
    text-align:center;
  }
  .qa-hero__media{ margin:0 auto; max-width:330px; }
  .qa-hero__title{ padding-top:16px; max-width:unset; }
}

.faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  color: #cc3c46;
  margin-bottom: 20px;
  font-size: 2.5em;
}

.faq-intro {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.2em;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-left: 4px solid #cc3c46;
}

.faq-item h3 {
  color: #cc3c46;
  margin-bottom: 15px;
  font-size: 1.3em;
}

.faq-item p {
  color: #333;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-item {
    padding: 20px;
  }
}

