:root {
  --qgn-bg: #ffffff;
  --qgn-surface: #ffffff;
  --qgn-surface-alt: #fff1e7;
  --qgn-text: #161616;
  --qgn-muted: #6b6763;
  --qgn-primary: #b54a2f;
  --qgn-primary-dark: #923720;
  --qgn-accent: #f4b321;
  --qgn-dark: #1f1b18;
  --qgn-border: #ead8cb;
  --qgn-shadow: 0 18px 50px rgba(25, 12, 5, 0.08);
  --qgn-radius: 18px;
  --qgn-radius-sm: 12px;
  --qgn-container: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--qgn-bg);
  color: var(--qgn-text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

body.admin-bar .main-navigation {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .main-navigation {
    top: 46px;
  }
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-shell,
.site-header,
.site-main,
.site-footer,
.home-hero,
.editorial-picks,
.home-columns,
.ticker-wrap {
  width: 100%;
  max-width: 100%;
}

.container {
  width: min(var(--qgn-container), calc(100% - 40px));
  max-width: var(--qgn-container);
  margin-inline: auto;
}

.site-main {
  padding: 28px 0 56px;
}

.topbar {
  background: var(--qgn-dark);
  color: #fff;
  font-size: 0.85rem;
}

.topbar__inner,
.branding-row,
.nav-row,
.footer-bottom,
.section-heading,
.entry-meta,
.post-categories,
.pagination-wrap,
.search-form,
.entry-footer,
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__inner,
.footer-bottom,
.section-heading {
  justify-content: space-between;
}

.topbar__inner {
  min-height: 40px;
}

.topbar__inner p,
.site-description,
.footer-bottom p,
.footer-grid p,
.social-links,
.search-form {
  margin: 0;
}

.branding-row {
  padding: 26px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.site-logo {
  flex-shrink: 0;
}

.site-logo img,
.custom-logo {
  max-height: 82px;
  width: auto;
  display: block;
}

.branding-text {
  min-width: 0;
}

.site-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: var(--qgn-primary);
  font-weight: 800;
}

.site-title {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.site-title a {
  text-decoration: none;
  color: #0f69b4;
}

.site-description {
  color: var(--qgn-muted);
  margin-top: 10px;
  font-size: 0.98rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header-actions .button--ghost,
.header-actions .button--accent {
  min-height: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--accent {
  background: var(--qgn-primary);
  color: #fff;
}

.button--accent:hover {
  background: var(--qgn-primary-dark);
}

.button--ghost {
  border-color: var(--qgn-border);
  background: var(--qgn-surface);
}

.button--block {
  width: 100%;
}

.top-categories-bar {
  background: #ffffff;
  border-top: 1px solid #ece7e2;
  border-bottom: 1px solid #ece7e2;
}

.top-categories-row {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 84px;
}

.top-categories-wrap {
  flex: 1;
  width: 100%;
}

.top-categories-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin: 0;
  padding: 16px 0;
  flex-wrap: wrap;
}

.top-categories-menu li {
  margin: 0;
  padding: 0;
}

.top-categories-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 2px solid #d9d9d9;
  border-radius: 999px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.top-categories-menu a:hover,
.top-categories-menu a:focus {
  background: #c9572f;
  border-color: #c9572f;
  color: #fff;
}

.top-categories-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #0f69b4;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}

.top-categories-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #0f69b4;
  border-radius: 2px;
}

.main-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-block: 1px solid var(--qgn-border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-row {
  min-height: 58px;
}

.primary-menu-wrap {
  width: 100%;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--qgn-border);
  background: var(--qgn-surface);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  background: var(--qgn-dark);
  display: block;
}

.primary-menu,
.footer-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 18px;
}

.primary-menu a,
.footer-menu a {
  text-decoration: none;
  font-weight: 700;
}

.primary-menu {
  min-height: 58px;
}

.primary-menu li {
  position: relative;
}

.primary-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
}

.primary-menu .current-menu-item > a,
.primary-menu a:hover,
.footer-menu a:hover,
.section-heading a:hover,
.latest-item h3 a:hover,
.mini-post a:hover,
.post-card__title a:hover,
.hero-card h2 a:hover,
.columnist-card h3 a:hover {
  color: var(--qgn-primary);
}

.home-hero,
.ticker-wrap,
.editorial-picks,
.home-columns,
.archive-layout,
.article-layout,
.error-layout {
  margin-top: 28px;
}

.hero-grid,
.home-columns,
.archive-layout,
.article-layout,
.footer-grid {
  display: grid;
  gap: 28px;
}

.hero-grid--portal {
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  align-items: stretch;
}

.hero-secondary--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-content: start;
}

.home-columns {
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
}

.hero-secondary--stack,
.sidebar-column,
.home-bottom-widgets {
  display: grid;
  gap: 22px;
  align-content: start;
}

.hero-card,
.post-card,
.sidebar-panel,
.widget,
.error-box,
.single-article,
.page-article,
.home-banner,
.latest-item {
  background: var(--qgn-surface);
  border: 1px solid var(--qgn-border);
  border-radius: var(--qgn-radius);
  overflow: hidden;
  box-shadow: var(--qgn-shadow);
}

.hero-card__media img,
.post-card__media img,
.entry-image img,
.latest-item__thumb img,
.columnist-card__media img,
.home-banner img {
  width: 100%;
  object-fit: cover;
}

.hero-card__media img {
  aspect-ratio: 16 / 9;
}

.post-card__media img {
  aspect-ratio: 16 / 10;
}

.latest-item__thumb img {
  aspect-ratio: 16 / 10;
}

.columnist-card__media img {
  aspect-ratio: 1 / 1;
}

.placeholder-image {
  min-height: 220px;
  background: linear-gradient(135deg, rgba(181, 74, 47, 0.15), rgba(244, 179, 33, 0.22));
}

.placeholder-image--square {
  min-height: 120px;
}

.hero-card__content,
.post-card__content,
.sidebar-panel,
.widget,
.error-box,
.single-article,
.page-article {
  padding: 22px;
}

.hero-card--main .hero-card__content {
  padding: 26px;
}

.section-title,
.section-heading h2,
.sidebar-panel h2,
.widget-title,
.footer-grid h2,
.entry-title,
.page-header h1 {
  margin: 0;
}

.section-heading {
  margin-bottom: 16px;
}

.section-heading--compact {
  align-items: flex-end;
}

.section-heading a {
  color: var(--qgn-primary);
  font-weight: 800;
  text-decoration: none;
}

.hero-tag {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--qgn-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-card h2 {
  margin: 12px 0 12px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
}

.hero-card--main h2 {
  font-size: clamp(2.2rem, 3.4vw, 4rem);
  line-height: 1.02;
}

.hero-card h2 a,
.post-card__title a,
.mini-post a,
.page-header h1 a,
.latest-item h3 a,
.columnist-card h3 a {
  text-decoration: none;
}

.post-card--compact {
  height: 100%;
}

.post-card--compact .post-card__content {
  padding: 16px;
}

.post-card__title {
  margin: 10px 0 12px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.post-card--compact .post-card__title {
  font-size: 1rem;
  margin: 8px 0 8px;
  line-height: 1.2;
}

.post-card__date {
  color: var(--qgn-muted);
  font-size: 0.92rem;
}

.entry-meta,
.mini-post span,
.archive-description,
.post-card p,
.hero-card p,
.entry-tags,
.widget,
.search-form,
.error-box p,
.single-article p,
.page-article p,
.single-article li,
.page-article li,
.latest-item span,
.columnist-card span {
  color: var(--qgn-muted);
}

.entry-meta {
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.post-categories {
  flex-wrap: wrap;
  margin: 0 0 6px;
}

.post-category {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(181, 74, 47, 0.1);
  color: var(--qgn-primary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.news-grid {
  display: grid;
  gap: 20px;
}

.news-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-grid--stacked {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-banner {
  overflow: hidden;
}

.home-banner--top {
  margin-bottom: 28px;
}

.home-banner img {
  width: 100%;
  max-height: 180px;
}

.home-banner--sidebar img {
  max-height: 500px;
}

.latest-list,
.columnist-list {
  display: grid;
  gap: 16px;
}

.latest-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 10px;
  border-radius: var(--qgn-radius-sm);
}

.latest-item__thumb {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.latest-item h3,
.columnist-card h3 {
  margin: 0 0 4px;
  line-height: 1.25;
  font-size: 1rem;
}

.social-links {
  flex-wrap: wrap;
  margin-top: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  background: var(--qgn-surface-alt);
  border: 1px solid var(--qgn-border);
}

.ticker-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: var(--qgn-surface);
  border: 1px solid var(--qgn-border);
  border-radius: 999px;
}

.ticker-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--qgn-accent);
  color: var(--qgn-dark);
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ticker-items {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ticker-items a {
  text-decoration: none;
  font-weight: 700;
}

.news-section {
  margin-bottom: 28px;
}

.sidebar-panel--social,
.sidebar-panel--contact,
.sidebar-panel--latest,
.sidebar-panel--colunistas {
  background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
}

.mini-post {
  padding: 14px 0;
  border-bottom: 1px solid var(--qgn-border);
}

.mini-post:first-of-type {
  padding-top: 4px;
}

.mini-post:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.mini-post a {
  display: block;
  font-weight: 800;
  margin-bottom: 4px;
}

.columnist-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
}

.columnist-card__media {
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.content-area,
.main-column {
  min-width: 0;
}

.archive-layout,
.article-layout {
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
}

.page-header--archive {
  margin-bottom: 20px;
}

.entry-title {
  font-size: clamp(2rem, 3vw, 3.4rem);
  margin-bottom: 10px;
}

.entry-image {
  margin: 22px 0;
  border-radius: 18px;
  overflow: hidden;
}

.entry-content {
  color: var(--qgn-text);
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content a {
  color: var(--qgn-primary);
}

.entry-content blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--qgn-primary);
  background: rgba(181, 74, 47, 0.06);
  border-radius: 12px;
}

.search-form {
  flex-wrap: wrap;
  padding: 16px;
  border: 1px solid var(--qgn-border);
  border-radius: 18px;
  background: var(--qgn-surface);
}

.search-field {
  min-width: min(100%, 280px);
  width: 100%;
  border: 1px solid var(--qgn-border);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.search-submit {
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  background: var(--qgn-primary);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.error-layout {
  min-height: 50vh;
  display: grid;
  place-items: center;
}

.error-box {
  max-width: 640px;
  text-align: center;
}

.error-code {
  font-size: 4rem;
  font-weight: 900;
  color: var(--qgn-primary);
}

.site-footer {
  background: var(--qgn-dark);
  color: #fff;
  padding: 48px 0 26px;
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
}

.footer-brand {
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 900;
}

.footer-grid a {
  color: #fff;
}

.footer-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-bottom {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1100px) {
  .hero-grid--portal,
  .home-columns,
  .archive-layout,
  .article-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-secondary--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-grid--3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .site-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .top-categories-row {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .top-categories-toggle {
    display: inline-flex;
  }

  .top-categories-wrap {
    display: none;
    width: 100%;
  }

  .top-categories-wrap.is-open {
    display: block;
  }

  .top-categories-menu {
    justify-content: flex-start;
    gap: 10px;
    padding-top: 10px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-row {
    display: block;
    padding: 12px 0;
  }

  .primary-menu-wrap {
    display: none;
    padding-top: 12px;
  }

  .primary-menu-wrap.is-open {
    display: block;
  }

  .primary-menu {
    min-height: auto;
    display: grid;
    gap: 0;
  }

  .primary-menu li {
    border-top: 1px solid var(--qgn-border);
  }

  .primary-menu a {
    min-height: auto;
    padding: 12px 0;
  }

  .latest-item {
    grid-template-columns: 90px 1fr;
  }
}

@media (max-width: 780px) {
  .branding-row,
  .topbar__inner,
  .footer-bottom,
  .header-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-grid--2,
  .news-grid--3,
  .news-grid--4,
  .news-grid--stacked,
  .hero-secondary--grid {
    grid-template-columns: 1fr;
  }

  .site-branding {
    align-items: flex-start;
  }

  .ticker-wrap {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .latest-item,
  .columnist-card {
    grid-template-columns: 1fr;
  }

  .hero-card--main h2 {
    font-size: clamp(1.7rem, 7vw, 2.6rem);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--qgn-container), calc(100% - 24px));
  }

  .branding-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-actions {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .top-categories-menu {
    flex-direction: column;
    align-items: stretch;
  }

  .top-categories-menu a {
    width: 100%;
    justify-content: flex-start;
    border-radius: 14px;
  }
}

/* ===== CORREÇÃO FORÇADA DE LARGURA WORDPRESS / GUTENBERG ===== */

html body .wp-site-blocks,
html body .is-layout-constrained,
html body .site,
html body #page,
html body .site-shell,
html body .site-main,
html body .site-header,
html body .site-footer {
  max-width: 100% !important;
  width: 100% !important;
}

html body .is-layout-constrained > *,
html body .wp-site-blocks > *,
html body .site-main > *,
html body .site-shell > * {
  max-width: none !important;
}

html body .container,
html body .home-hero,
html body .ticker-wrap,
html body .editorial-picks,
html body .home-columns,
html body .branding-row,
html body .topbar__inner,
html body .nav-row,
html body .footer-grid,
html body .footer-bottom,
html body .top-categories-row {
  width: min(1360px, calc(100% - 40px)) !important;
  max-width: 1360px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

html body .hero-grid--portal {
  display: grid !important;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) !important;
  gap: 28px !important;
}

html body .home-columns {
  display: grid !important;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr) !important;
  gap: 28px !important;
}

html body {
  background: #ffffff !important;
}

@media (max-width: 1100px) {
  html body .hero-grid--portal,
  html body .home-columns {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  html body .container,
  html body .home-hero,
  html body .ticker-wrap,
  html body .editorial-picks,
  html body .home-columns,
  html body .branding-row,
  html body .topbar__inner,
  html body .nav-row,
  html body .footer-grid,
  html body .footer-bottom,
  html body .top-categories-row {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
  }
}

body#error-page {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  border: 0 !important;
  box-shadow: none !important;
  background: #ffffff !important;
}

body#error-page .site-shell,
body#error-page .site-header,
body#error-page .site-main,
body#error-page .site-footer {
  width: 100% !important;
  max-width: 100% !important;
}

body#error-page .container,
body#error-page .home-hero,
body#error-page .ticker-wrap,
body#error-page .editorial-picks,
body#error-page .home-columns,
body#error-page .branding-row,
body#error-page .topbar__inner,
body#error-page .nav-row,
body#error-page .footer-grid,
body#error-page .footer-bottom,
body#error-page .top-categories-row {
  width: min(1360px, calc(100% - 40px)) !important;
  max-width: 1360px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body#error-page .hero-grid--portal {
  display: grid !important;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) !important;
  gap: 28px !important;
}

body#error-page .home-columns {
  display: grid !important;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr) !important;
  gap: 28px !important;
}

@media (max-width: 1100px) {
  body#error-page .hero-grid--portal,
  body#error-page .home-columns {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  body#error-page .container,
  body#error-page .home-hero,
  body#error-page .ticker-wrap,
  body#error-page .editorial-picks,
  body#error-page .home-columns,
  body#error-page .branding-row,
  body#error-page .topbar__inner,
  body#error-page .nav-row,
  body#error-page .footer-grid,
  body#error-page .footer-bottom,
  body#error-page .top-categories-row {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
  }
}
-
.site-title img {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}
/* ===== TOPO NOVO ESTILO 40 GRAUS ===== */

.branding-row.branding-row--three {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 28px 0 24px !important;
}

.branding-side {
  min-width: 0;
}

.branding-side--left {
  justify-self: start !important;
}

.branding-side--right {
  justify-self: end !important;
}

.site-branding.site-branding--center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 0 !important;
}

.site-branding.site-branding--center .branding-text {
  min-width: 0;
}

.site-branding.site-branding--center .site-title {
  margin: 0 !important;
  line-height: 1 !important;
  font-size: 0 !important;
}

.site-branding.site-branding--center .site-title a {
  display: inline-block !important;
  text-decoration: none !important;
}

.site-branding.site-branding--center .site-title img {
  max-width: 430px !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.header-weather {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-weather__icon {
  font-size: 42px;
  line-height: 1;
  color: var(--qgn-accent);
}

.header-weather__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.header-weather__city {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--qgn-text);
}

.header-weather__temp {
  font-size: 22px;
  font-weight: 900;
  color: var(--qgn-accent);
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-clock {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--qgn-accent);
}

.header-clock__icon {
  font-size: 28px;
  line-height: 1;
}

.header-clock__time {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: var(--qgn-accent);
}

.header-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--qgn-accent);
  font-size: 28px;
  line-height: 1;
  min-width: 36px;
  min-height: 36px;
}

.header-search:hover {
  opacity: 0.8;
}

.header-search__icon {
  display: inline-block;
  line-height: 1;
}

/* remove interferência do layout antigo */
.branding-row--three .header-actions {
  display: none !important;
}

/* centralizar melhor a faixa de categorias, como no print 2 */
.top-categories-row {
  justify-content: center;
}

.top-categories-wrap {
  flex: 0 1 auto;
}

.top-categories-menu {
  justify-content: center;
}

/* ajustes responsivos */
@media (max-width: 1024px) {
  .branding-row.branding-row--three {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px !important;
  }

  .branding-side--left,
  .branding-side--right,
  .site-branding.site-branding--center {
    justify-self: center !important;
  }

  .header-weather,
  .header-meta {
    justify-content: center;
  }

  .site-branding.site-branding--center .site-title img {
    max-width: 340px !important;
  }
}

@media (max-width: 780px) {
  .branding-row.branding-row--three {
    padding: 20px 0 18px !important;
  }

  .header-weather__icon,
  .header-clock__icon {
    font-size: 24px;
  }

  .header-weather__city {
    font-size: 15px;
  }

  .header-weather__temp {
    font-size: 18px;
  }

  .header-clock__time,
  .header-search {
    font-size: 22px;
  }

  .site-branding.site-branding--center .site-title img {
    max-width: 260px !important;
  }
}

.header-weather {
  min-width: 260px;
  transition: opacity 0.3s ease;
}

.header-weather__city {
  white-space: nowrap;
}

.qgn-sports-box {
  background: #fff;
  border: 1px solid #ead8cb;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(25, 12, 5, 0.06);
}

.qgn-sports-title {
  margin: 0 0 14px;
  font-size: 1.2rem;
  color: #b54a2f;
}

.qgn-sports-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.qgn-sports-item + .qgn-sports-item {
  border-top: 1px solid #eee3da;
  margin-top: 12px;
  padding-top: 12px;
}

.qgn-sports-match {
  font-size: 1rem;
  color: #161616;
}

.qgn-sports-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
  font-size: 0.92rem;
  color: #6b6763;
}