/* QA remediation – 2026-07-30
 * Kept separately from the legacy bundle so maintenance changes remain auditable.
 */

/* Sheet item: homepage copy inside the grey feature box must be 18px. */
.home-feat .text {
  font-size: 18px;
  line-height: 1.45;
}

/* Sheet item: the in-page section navigation remains visible while reading. */
@media (min-width: 768px) {
  .inner-nav,
  .inner-nav.fixed,
  .inner-nav.absolute {
    position: sticky !important;
    top: 105px !important;
    align-self: flex-start;
  }
}

/* Sheet item: restore the news listing's readable two-column card layout. */
@media (min-width: 992px) {
  .page-id-1101 .wpr-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
  .page-id-1101 .wpr-grid-item {
    width: auto !important;
    margin: 0 !important;
  }
}
.page-id-1101 .wpr-grid-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-id-1101 .wpr-grid-item a,
.page-id-1101 .wpr-grid-item p,
.page-id-1101 .wpr-grid-item h2 {
  overflow-wrap: anywhere;
}

/* Sheet item: give individual news posts the same visual hierarchy as the news index. */
.qa-news-band {
  display: flex;
  align-items: center;
  min-height: 180px;
  margin-top: 0;
  background: #f4f4f4;
  color: #2a2a2a;
}
.qa-news-band > div {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: .04em;
}
.single-post .qa-news-sidebar {
  float: right;
  width: 30%;
  margin: 0 0 30px 40px;
  padding: 24px;
  border-top: 2px solid #f04f23;
  background: #f4f4f4;
}
.single-post .qa-news-sidebar h2 { margin: 0 0 14px; text-transform: uppercase; }
.single-post .qa-news-sidebar ul { margin: 0; padding: 0; list-style: none; }
.single-post .qa-news-sidebar li { margin: 0; padding: 10px 0; border-bottom: 1px solid #c6c6c6; }
.single-post .qa-news-sidebar a { color: #2a2a2a; }
.single-post .qa-news-sidebar a:hover { color: #f04f23; }
@media (max-width: 767px) {
  .qa-news-band { min-height: 120px; }
  .single-post .qa-news-sidebar { float: none; width: auto; margin: 30px 0; }
}

/* Sheet item: centre the page title vertically inside the grey title band. */
.cabecalho-produtos {
  display: flex;
  align-items: center;
  min-height: 180px;
  margin-top: 0;
  margin-bottom: 30px;
}
.cabecalho-produtos .titulo-produtos {
  width: 100%;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .cabecalho-produtos { min-height: 130px; }
}
