@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

:root {
  --nav: #090018;
  --ink: #121622;
  --muted: #667085;
  --paper: #f3f0ea;
  --paper-soft: #faf8f3;
  --line: #e4ded4;
  --blue: #004b93;
  --deep-blue: #001f4f;
  --gold: #f4b21b;
  --green: #009a67;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(9, 0, 24, 0.14);
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --motion-fast: 160ms var(--ease);
  --motion-normal: 220ms var(--ease);
  --bs-color-nav: var(--nav);
  --bs-color-deep-blue: var(--deep-blue);
  --bs-color-gold: var(--gold);
  --bs-color-paper: var(--paper);
  --bs-color-white: var(--white);
  --bs-color-ink: var(--ink);
  --bs-color-muted: var(--muted);
  --bs-color-line: var(--line);
  --bs-font-heading: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  --bs-font-body: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  --bs-font-nav: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  --bs-font-button: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  --bs-container-max: var(--max);
  --bs-section-padding: 76px;
  --bs-card-gap: 28px;
  --bs-button-height: 44px;
  --bs-radius-none: 0;
  --bs-shadow-card: var(--shadow);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper-soft);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.wp-theme-belosun-local-theme {
  padding: 0;
}

body.wp-theme-hello-elementor .site-header,
body.wp-theme-hello-elementor .site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: block;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a[href],
button,
[role="button"],
input[type="button"],
input[type="submit"] {
  cursor: pointer;
}

button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled {
  cursor: not-allowed;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

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

.site-header {
  position: relative;
  z-index: 40;
  background: var(--nav);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand-logo {
  width: 154px;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  font-size: 13px;
  font-weight: 700;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color var(--motion-fast);
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--white);
}

.nav-chevron {
  margin-left: 5px;
  color: rgba(255, 255, 255, 0.46);
}

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

.header-search {
  position: relative;
  display: flex;
  align-items: center;
}

.search-dot {
  width: 19px;
  height: 19px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  position: relative;
  padding: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.search-dot::after {
  content: "";
  width: 8px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  position: absolute;
  right: -6px;
  bottom: -3px;
  transform: rotate(45deg);
}

.header-search__panel {
  position: absolute;
  top: calc(100% + 18px);
  right: -44px;
  width: min(380px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 8px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.header-search__panel::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 48px;
  width: 16px;
  height: 16px;
  background: var(--white);
  transform: rotate(45deg);
}

.header-search.is-open .header-search__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-search__panel input {
  position: relative;
  z-index: 1;
  min-height: 44px;
  border: 1px solid var(--line);
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.header-search__panel button {
  position: relative;
  z-index: 1;
  border: 0;
  padding: 0 18px;
  background: var(--gold);
  color: var(--nav);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background var(--motion-fast), box-shadow var(--motion-fast), transform var(--motion-fast);
}

.header-search__panel button:hover,
.header-search__panel button:focus-visible {
  background: #ffd05d;
  box-shadow: 0 10px 22px rgba(244, 178, 27, 0.24);
  transform: translateY(-1px);
}

.language-flag {
  width: 24px;
  height: 18px;
  display: grid;
  place-items: center;
  background: #f7f7f7;
  color: #d30b22;
  font-size: 12px;
  font-weight: 800;
}

.mobile-menu {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--white);
  border-radius: 0;
  font: inherit;
  cursor: pointer;
}

body.wp-theme-hello-elementor .mobile-menu {
  display: none;
}

.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background-color: var(--nav);
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 0, 24, 0.9), rgba(9, 0, 24, 0.42)),
    radial-gradient(circle at 72% 20%, rgba(244, 178, 27, 0.18), transparent 28%);
}

.hero--archive,
.hero--search {
  background-image: url("../reference/10-background-belosun-com-br-wp-content-uploads-2025-09-ol-1-png.png");
}

.hero--single {
  background-image: url("../reference/13-background-belosun-com-br-wp-content-uploads-2025-01-licenciamento-projeto-belo-s.png");
  background-position: center 38%;
}

.hero--not-found {
  background-image: url("../reference/15-background-belosun-com-br-wp-content-uploads-2026-02-a6c5eacc-aebf-4981-be9c-ba0c.jpg");
}

.hero__inner {
  position: relative;
  min-height: 380px;
  display: grid;
  align-items: center;
  padding: 78px 0;
}

.hero__copy {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 800;
}

h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
}

h3 {
  font-size: 21px;
  font-weight: 800;
}

.hero p {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 2px solid transparent;
  background: var(--deep-blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--motion-normal), border-color var(--motion-normal), color var(--motion-normal), box-shadow var(--motion-normal), transform var(--motion-normal);
}

.button--gold {
  background: var(--gold);
  color: var(--nav);
}

.button--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.button--light {
  background: var(--white);
  color: var(--deep-blue);
  border-color: var(--white);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(9, 0, 24, 0.18);
}

.button:not(.button--gold):not(.button--outline):not(.button--light):hover,
.button:not(.button--gold):not(.button--outline):not(.button--light):focus-visible {
  background: var(--blue);
}

.button--gold:hover,
.button--gold:focus-visible {
  background: #ffd05d;
  border-color: #ffd05d;
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--nav);
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--nav);
}

.section {
  padding: 76px 0;
}

.section--paper {
  background: var(--paper);
}

.section--white {
  background: var(--white);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head p {
  width: min(420px, 100%);
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 34px;
  align-items: start;
}

.feature-main {
  min-height: 540px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  background: var(--nav);
  color: var(--white);
  box-shadow: var(--shadow);
}

.feature-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.feature-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 0, 24, 0.02), rgba(9, 0, 24, 0.9));
}

.feature-main__body {
  position: relative;
  z-index: 1;
  padding: 38px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(244, 178, 27, 0.4);
  background: rgba(244, 178, 27, 0.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.feature-main h2 {
  margin-top: 16px;
}

.feature-main p {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
  color: inherit;
  opacity: 0.78;
  font-size: 13px;
  font-weight: 800;
}

.feature-side {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.story-strip,
.post-card,
.result-item,
.related-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.story-strip {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  min-height: 260px;
}

.story-strip img,
.post-card img,
.result-item img,
.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-strip__body {
  padding: 24px;
}

.story-strip h3,
.post-card h3,
.result-item h3,
.related-card h3 {
  color: var(--ink);
}

.story-strip p,
.post-card p,
.result-item p,
.related-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.post-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card:hover,
.result-item:hover,
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.post-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--nav);
}

.post-card__body {
  padding: 24px;
}

.post-card--compact {
  grid-template-columns: 160px minmax(0, 1fr);
  grid-template-rows: none;
}

.post-card--compact .post-card__image {
  aspect-ratio: auto;
  min-height: 150px;
}

.news-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
}

.pagination a,
.pagination span {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  transition: background var(--motion-fast), border-color var(--motion-fast), color var(--motion-fast), box-shadow var(--motion-fast), transform var(--motion-fast);
}

.pagination a {
  cursor: pointer;
}

.pagination .is-current {
  background: var(--deep-blue);
  color: var(--white);
}

.pagination a:hover,
.pagination a:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--nav);
  box-shadow: 0 10px 22px rgba(9, 0, 24, 0.12);
  transform: translateY(-1px);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px 38px;
  background: var(--deep-blue);
  color: var(--white);
}

.cta-band p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 780px) 320px;
  gap: 34px;
  align-items: start;
}

.article-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 48px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.article-card .lead {
  margin-top: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.article-card p {
  color: #333949;
  font-weight: 600;
}

.article-card figure {
  margin: 34px 0;
}

.article-card figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.article-card h2 {
  margin-top: 38px;
  color: var(--ink);
  font-size: 34px;
}

.article-card h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}

.article-card h3 + p {
  margin-top: 0;
}

.article-card ul {
  color: #333949;
  font-weight: 600;
}

.article-table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  font-size: 14px;
}

.article-table th,
.article-table td {
  padding: 14px 16px;
  border: 1px solid var(--line);
  text-align: left;
}

.article-table th {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.article-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 22px;
  min-width: 0;
}

.aside-block {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 26px;
  min-width: 0;
}

.aside-block h3 {
  font-size: 16px;
  text-transform: uppercase;
}

.toc {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.toc a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.related-list,
.related-grid {
  display: grid;
  gap: 18px;
}

.related-card {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  min-height: 126px;
}

.related-card__body {
  padding: 16px;
  min-width: 0;
}

.related-card h3 {
  font-size: 15px;
}

.article-aside .related-card {
  grid-template-columns: 1fr;
}

.article-aside .related-card img {
  aspect-ratio: 16 / 9;
}

.article-aside .related-card h3 {
  font-size: 14px;
  line-height: 1.18;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 30px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.search-panel input {
  width: 100%;
  min-height: 48px;
  border: 0;
  padding: 0 16px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.search-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: start;
}

.result-list {
  display: grid;
  gap: 22px;
}

.result-item {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
}

.result-item__image {
  min-height: 180px;
}

.result-item__body {
  padding: 28px;
}

.empty-state {
  display: none;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
}

.empty-state.is-visible {
  display: block;
}

.utility-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.utility-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--motion-fast), color var(--motion-fast), transform var(--motion-fast);
}

.utility-list a:hover,
.utility-list a:focus-visible {
  border-bottom-color: var(--gold);
  color: var(--blue);
  transform: translateX(3px);
}

.not-found-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 54px;
  align-items: center;
}

.not-found-number {
  color: var(--gold);
  font-size: clamp(86px, 18vw, 220px);
  font-weight: 800;
  line-height: 0.82;
}

.route-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px;
}

.route-panel a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--nav);
  color: var(--white);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 0, 24, 0.88), rgba(9, 0, 24, 0.7)),
    url("../reference/14-background-belosun-com-br-wp-content-uploads-2025-09-sdf-png.png") center / cover;
  opacity: 0.92;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  padding: 74px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr) minmax(220px, 0.65fr);
  gap: 54px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 24px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.site-footer h3 {
  margin-bottom: 18px;
  font-size: 18px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.social-row a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--motion-fast), color var(--motion-fast), box-shadow var(--motion-fast), transform var(--motion-fast);
}

.social-link::before {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: var(--social-mask) center / contain no-repeat;
  mask: var(--social-mask) center / contain no-repeat;
}

.social-link--facebook {
  --social-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 8H11V6.2c0-.7.4-.9 1-.9h1.4V2.2C12.7 2.1 12 2 11.2 2 8.9 2 7.4 3.4 7.4 5.9V8H5v3.2h2.4V18H11v-6.8h2.1L13.5 8z'/%3E%3C/svg%3E");
}

.social-link--instagram {
  --social-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M6.5 2h7A4.5 4.5 0 0 1 18 6.5v7a4.5 4.5 0 0 1-4.5 4.5h-7A4.5 4.5 0 0 1 2 13.5v-7A4.5 4.5 0 0 1 6.5 2zm0 2A2.5 2.5 0 0 0 4 6.5v7A2.5 2.5 0 0 0 6.5 16h7a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 13.5 4h-7zM10 6.6a3.4 3.4 0 1 1 0 6.8 3.4 3.4 0 0 1 0-6.8zm0 2a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8zm4.3-1.9a1 1 0 1 1-2 0 1 1 0 0 1 2 0z'/%3E%3C/svg%3E");
}

.social-link--linkedin {
  --social-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7h3v10H3V7zm1.5-4A1.7 1.7 0 1 1 4.5 6 1.7 1.7 0 0 1 4.5 3zM8 7h2.9v1.4h.1c.4-.8 1.4-1.7 3-1.7 3.1 0 3.7 2.1 3.7 4.8V17h-3v-4.9c0-1.2 0-2.7-1.7-2.7s-1.9 1.3-1.9 2.6v5H8V7z'/%3E%3C/svg%3E");
}

.social-link--tiktok {
  --social-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4 2c.2 2 1.3 3.3 3.4 3.5v3.1a6.2 6.2 0 0 1-3.4-1.1v5.3A5.2 5.2 0 1 1 7.2 7.6c.3 0 .7 0 1 .1V11a2 2 0 1 0 1.2 1.9V2h3z'/%3E%3C/svg%3E");
}

.social-link--x {
  --social-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.7 8.6 17.8 2h-2.2l-4.9 5.3L6.8 2H2l6.4 8.6L2 18h2.2l5.2-5.9 4.3 5.9H18l-6.3-9.4zM5.1 3.7h1l8.9 12.6h-1L5.1 3.7z'/%3E%3C/svg%3E");
}

.social-link--youtube {
  --social-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 6.2s-.2-1.4-.8-2c-.8-.8-1.7-.8-2.1-.9C12.2 3 10 3 10 3s-2.2 0-5.1.3c-.4.1-1.3.1-2.1.9-.6.6-.8 2-.8 2S1.8 7.8 1.8 9.4v1.5c0 1.6.2 3.2.2 3.2s.2 1.4.8 2c.8.8 1.9.8 2.4.9 1.7.2 4.8.3 4.8.3s2.2 0 5.1-.3c.4-.1 1.3-.1 2.1-.9.6-.6.8-2 .8-2s.2-1.6.2-3.2V9.4c0-1.6-.2-3.2-.2-3.2zM8.4 12.5v-6l5.2 3-5.2 3z'/%3E%3C/svg%3E");
}

.social-row a:hover,
.social-row a:focus-visible {
  background: var(--gold);
  color: var(--nav);
  box-shadow: 0 10px 22px rgba(244, 178, 27, 0.22);
  transform: translateY(-2px);
}

.footer-link,
.text-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: color var(--motion-fast), text-decoration-color var(--motion-fast);
}

.footer-bottom a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: color var(--motion-fast), text-decoration-color var(--motion-fast);
}

.footer-link:hover,
.footer-link:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Native Elementor Pro 4.1.2 composition. */
body.wp-theme-hello-elementor .elementor-widget-heading .elementor-heading-title,
body.wp-theme-hello-elementor .elementor-widget-text-editor,
body.wp-theme-hello-elementor .elementor-widget-theme-post-content,
body.wp-theme-hello-elementor .elementor-widget-theme-post-content p {
  color: inherit;
  font-family: inherit;
}

body.wp-theme-hello-elementor .container.e-con,
body.wp-theme-hello-elementor .container > .e-con-inner {
  width: min(var(--max), calc(100% - 48px));
  max-width: var(--max);
  margin-inline: auto;
}

body.wp-theme-hello-elementor .elementor-location-header .site-header {
  background: var(--nav);
  color: var(--white);
}

body.wp-theme-hello-elementor .elementor-location-header .site-header__inner {
  padding: 0;
}

body.wp-theme-hello-elementor .elementor-location-header .site-header__inner.e-con {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
}

body.wp-theme-hello-elementor .elementor-location-header .site-header__inner.e-con:has(> .e-con-inner) {
  display: block;
}

body.wp-theme-hello-elementor .elementor-location-header .site-header__inner > .e-con-inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  width: min(var(--max), calc(100% - 48px));
  max-width: var(--max);
}

body.wp-theme-hello-elementor .elementor-location-header .brand-logo {
  width: 154px;
}

body.wp-theme-hello-elementor .elementor-location-header .brand-logo img {
  width: 154px;
  height: auto;
}

body.wp-theme-hello-elementor .elementor-location-header .primary-nav {
  display: block;
  width: 100%;
}

body.wp-theme-hello-elementor .elementor-location-header .primary-nav .elementor-nav-menu--main {
  display: flex;
  justify-content: center;
}

body.wp-theme-hello-elementor .elementor-location-header .primary-nav .elementor-nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: nowrap;
}

body.wp-theme-hello-elementor .elementor-location-header .primary-nav .elementor-item {
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: color var(--motion-fast);
}

body.wp-theme-hello-elementor .elementor-location-header .primary-nav .elementor-item:hover,
body.wp-theme-hello-elementor .elementor-location-header .primary-nav .elementor-item:focus-visible,
body.wp-theme-hello-elementor .elementor-location-header .primary-nav .elementor-item-active {
  color: var(--white);
}

body.wp-theme-hello-elementor .elementor-location-header .header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

body.wp-theme-hello-elementor .elementor-location-header .header-search-native {
  width: 240px;
}

body.wp-theme-hello-elementor .elementor-location-header .header-search-native .elementor-search-form__container {
  min-height: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

body.wp-theme-hello-elementor .elementor-location-header .header-search-native .elementor-search-form__input {
  min-height: 42px;
  padding-inline: 14px;
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
}

body.wp-theme-hello-elementor .elementor-location-header .header-search-native .elementor-search-form__input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

body.wp-theme-hello-elementor .elementor-location-header .header-search-native .elementor-search-form__submit {
  min-width: 44px;
  color: var(--white);
  background: transparent;
}

body.wp-theme-hello-elementor .elementor-location-header .header-search-native svg {
  width: 14px;
  fill: currentColor;
}

body.wp-theme-hello-elementor .button .elementor-button,
body.wp-theme-hello-elementor .language-button .elementor-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 2px solid transparent;
  border-radius: 0;
  background: var(--deep-blue);
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: background var(--motion-normal), border-color var(--motion-normal), color var(--motion-normal), box-shadow var(--motion-normal), transform var(--motion-normal);
}

body.wp-theme-hello-elementor .button--gold .elementor-button {
  background: var(--gold);
  color: var(--nav);
}

body.wp-theme-hello-elementor .button--outline .elementor-button {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  color: var(--white);
}

body.wp-theme-hello-elementor .button--light .elementor-button {
  background: var(--white);
  color: var(--deep-blue);
}

body.wp-theme-hello-elementor .language-button .elementor-button {
  width: 42px;
  min-width: 42px;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

body.wp-theme-hello-elementor .button .elementor-button:hover,
body.wp-theme-hello-elementor .button .elementor-button:focus-visible,
body.wp-theme-hello-elementor .language-button .elementor-button:hover,
body.wp-theme-hello-elementor .language-button .elementor-button:focus-visible {
  box-shadow: 0 12px 26px rgba(9, 0, 24, 0.16);
  transform: translateY(-1px);
}

body.wp-theme-hello-elementor .hero.e-con {
  color: var(--white);
  background-color: var(--nav);
  background-position: center;
  background-size: cover;
}

body.wp-theme-hello-elementor .hero.e-con::before {
  pointer-events: none;
  z-index: 0;
}

body.wp-theme-hello-elementor .hero > .e-con,
body.wp-theme-hello-elementor .hero > .e-con-inner,
body.wp-theme-hello-elementor .hero .hero__inner,
body.wp-theme-hello-elementor .hero .hero__copy {
  position: relative;
  z-index: 1;
}

body.wp-theme-hello-elementor .hero .elementor-widget-heading,
body.wp-theme-hello-elementor .hero .elementor-widget-text-editor {
  width: min(760px, 100%);
}

body.wp-theme-hello-elementor .hero h1.elementor-heading-title {
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 800;
  line-height: 1.08;
}

body.wp-theme-hello-elementor .hero .elementor-widget-text-editor {
  max-width: 690px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

body.wp-theme-hello-elementor .hero__actions {
  display: flex;
  flex-flow: row wrap;
  gap: 12px;
  margin-top: 30px;
}

body.wp-theme-hello-elementor .section.e-con {
  padding: 72px 0;
}

body.wp-theme-hello-elementor .section--paper.e-con {
  background: var(--paper-soft);
}

body.wp-theme-hello-elementor .section-head {
  width: 100%;
}

body.wp-theme-hello-elementor .section-head > .e-con-inner,
body.wp-theme-hello-elementor .section-head.e-con {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

body.wp-theme-hello-elementor .post-grid--native {
  display: block;
  width: 100%;
}

body.wp-theme-hello-elementor .post-grid--native .elementor-posts-container,
body.wp-theme-hello-elementor .post-grid--native .elementor-posts {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

body.wp-theme-hello-elementor .post-grid--native .elementor-grid-item,
body.wp-theme-hello-elementor .post-grid--native .elementor-post {
  width: auto !important;
}

body.wp-theme-hello-elementor .post-grid--native .elementor-post__card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

body.wp-theme-hello-elementor .post-grid--native .elementor-post__card:hover,
body.wp-theme-hello-elementor .post-grid--native .elementor-post__card:focus-within {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

body.wp-theme-hello-elementor .post-grid--native .elementor-post__thumbnail__link {
  margin-bottom: 0;
}

body.wp-theme-hello-elementor .post-grid--native .elementor-post__thumbnail {
  aspect-ratio: 16 / 10;
  background: var(--nav);
}

body.wp-theme-hello-elementor .post-grid--native .elementor-post__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.wp-theme-hello-elementor .post-grid--native .elementor-post__avatar {
  display: none;
}

body.wp-theme-hello-elementor .post-grid--native .elementor-post__badge {
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  border-radius: 0;
  background: var(--gold);
  color: var(--nav);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

body.wp-theme-hello-elementor .post-grid--native .elementor-post__text {
  padding: 24px;
}

body.wp-theme-hello-elementor .post-grid--native .elementor-post__title,
body.wp-theme-hello-elementor .post-grid--native .elementor-post__title a {
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.16;
}

body.wp-theme-hello-elementor .post-grid--native .elementor-post__excerpt p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.58;
}

body.wp-theme-hello-elementor .post-grid--native .elementor-post__read-more {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

body.wp-theme-hello-elementor .post-grid--native .elementor-post__meta-data {
  padding: 14px 24px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

body.wp-theme-hello-elementor .site-footer.e-con {
  background: var(--nav);
  color: var(--white);
}

body.wp-theme-hello-elementor .site-footer__inner.e-con,
body.wp-theme-hello-elementor .site-footer__inner > .e-con-inner,
body.wp-theme-hello-elementor .site-footer__inner .footer-grid.e-con {
  width: 100%;
  max-width: var(--max);
}

body.wp-theme-hello-elementor .site-footer__inner > .e-con-inner {
  display: block;
}

body.wp-theme-hello-elementor .footer-grid.e-con,
body.wp-theme-hello-elementor .footer-grid > .e-con-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  width: 100%;
  max-width: 100%;
}

body.wp-theme-hello-elementor .site-footer__inner > .e-con-inner {
  width: min(var(--max), calc(100% - 48px));
  max-width: var(--max);
  margin-inline: auto;
}

body.wp-theme-hello-elementor .footer-grid .footer-column {
  width: 100%;
  min-width: 0;
  max-width: none;
  display: block;
}

body.wp-theme-hello-elementor .footer-logo img {
  width: 154px;
  height: auto;
}

body.wp-theme-hello-elementor .footer-grid .elementor-widget-heading h3,
body.wp-theme-hello-elementor .footer-grid .elementor-widget-heading .elementor-heading-title {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

body.wp-theme-hello-elementor .footer-grid .elementor-widget-text-editor {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 600;
}

body.wp-theme-hello-elementor .footer-grid .social-row .elementor-social-icons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

body.wp-theme-hello-elementor .footer-grid .social-row .elementor-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

body.wp-theme-hello-elementor .footer-bottom.e-con {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

body.wp-theme-hello-elementor .footer-bottom-link .elementor-button {
  min-height: 39px;
  padding: 0 18px;
  background: var(--gold);
  color: var(--nav);
  font-size: 12px;
}

@media (max-width: 1080px) {
  .primary-nav {
    gap: 16px;
    font-size: 12px;
  }

  .feature-grid,
  .article-shell,
  .search-layout,
  .not-found-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

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

  body.wp-theme-hello-elementor .post-grid--native .elementor-posts-container,
  body.wp-theme-hello-elementor .post-grid--native .elementor-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.wp-theme-hello-elementor .footer-grid.e-con,
  body.wp-theme-hello-elementor .footer-grid > .e-con-inner {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  body.wp-theme-hello-elementor .container.e-con,
  body.wp-theme-hello-elementor .container > .e-con-inner,
  body.wp-theme-hello-elementor .elementor-location-header .site-header__inner > .e-con-inner {
    width: min(100% - 32px, var(--max));
  }

  body.wp-theme-hello-elementor .elementor-location-header .site-header__inner > .e-con-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  body.wp-theme-hello-elementor .elementor-location-header .site-header__inner.e-con {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  body.wp-theme-hello-elementor .elementor-location-header .primary-nav .elementor-nav-menu--main,
  body.wp-theme-hello-elementor .elementor-location-header .header-actions {
    display: none;
  }

  body.wp-theme-hello-elementor .elementor-location-header .primary-nav {
    width: auto;
  }

  body.wp-theme-hello-elementor .elementor-location-header .primary-nav .elementor-menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
  }

  body.wp-theme-hello-elementor .elementor-location-header .primary-nav .elementor-menu-toggle svg {
    fill: currentColor;
  }

  .site-header.is-mobile-open .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 16px 18px;
    background: var(--nav);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 38px rgba(9, 0, 24, 0.24);
  }

  .site-header.is-mobile-open .primary-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu {
    display: grid;
    place-items: center;
  }

  body.wp-theme-hello-elementor .mobile-menu {
    display: grid;
  }

  .brand-logo {
    width: 132px;
  }

  .hero__inner {
    min-height: 420px;
    padding: 64px 0;
  }

  body.wp-theme-hello-elementor .hero h1.elementor-heading-title {
    font-size: clamp(38px, 13vw, 58px);
  }

  body.wp-theme-hello-elementor .section.e-con {
    padding: 54px 0;
  }

  body.wp-theme-hello-elementor .section-head > .e-con-inner,
  body.wp-theme-hello-elementor .section-head.e-con,
  body.wp-theme-hello-elementor .cta-band.e-con,
  body.wp-theme-hello-elementor .footer-bottom.e-con {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section {
    padding: 54px 0;
  }

  .section-head,
  .cta-band,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .feature-main {
    min-height: 460px;
  }

  .feature-main__body,
  .article-card,
  .empty-state {
    padding: 28px;
  }

  .story-strip,
  .post-card--compact,
  .result-item,
  .related-card {
    grid-template-columns: 1fr;
  }

  .story-strip img,
  .result-item__image {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .post-grid,
  .news-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  body.wp-theme-hello-elementor .post-grid--native .elementor-posts-container,
  body.wp-theme-hello-elementor .post-grid--native .elementor-posts,
  body.wp-theme-hello-elementor .footer-grid.e-con,
  body.wp-theme-hello-elementor .footer-grid > .e-con-inner {
    grid-template-columns: 1fr;
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .search-panel .button {
    width: 100%;
  }

  .article-card h2 {
    font-size: 28px;
  }

  .article-table {
    display: block;
    overflow-x: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover,
  .button:focus-visible,
  .pagination a:hover,
  .pagination a:focus-visible,
  .utility-list a:hover,
  .utility-list a:focus-visible,
  .social-row a:hover,
  .social-row a:focus-visible,
  .header-search__panel button:hover,
  .header-search__panel button:focus-visible {
    transform: none;
  }
}

/* AGA Elementor components: final parity overrides.
   These rules intentionally target Elementor widget wrappers plus the inner
   markup rendered by reusable AGA widgets. */
.aga-header-search-popover .screen-reader-text,
.aga-language-toggle .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.wp-theme-hello-elementor .elementor-location-header .aga-header-search-popover,
.aga-header-search-popover {
  position: relative;
  display: flex;
  align-items: center;
}

body.search.wp-theme-hello-elementor .elementor-location-header .elementor-widget-aga-header-search-popover,
body.search.wp-theme-hello-elementor .elementor-location-header .aga-header-search-popover {
  display: none !important;
}

body.wp-theme-hello-elementor .elementor-location-header .aga-header-search-popover .search-dot,
.aga-header-search-popover .search-dot {
  width: 19px !important;
  min-width: 19px !important;
  max-width: 19px !important;
  height: 19px !important;
  min-height: 19px !important;
  max-height: 19px !important;
  display: block !important;
  position: relative !important;
  padding: 0 !important;
  border: 2px solid rgba(255, 255, 255, 0.88) !important;
  border-radius: 999px !important;
  appearance: none !important;
  background: transparent !important;
  box-shadow: none !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

body.wp-theme-hello-elementor .elementor-location-header .aga-header-search-popover .search-dot::after,
.aga-header-search-popover .search-dot::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -4px;
  width: 9px;
  height: 2px;
  background: rgba(255, 255, 255, 0.88);
  transform: rotate(45deg);
  transform-origin: center;
}

body.wp-theme-hello-elementor .elementor-location-header .aga-header-search-popover .search-dot:hover,
body.wp-theme-hello-elementor .elementor-location-header .aga-header-search-popover .search-dot:focus-visible,
.aga-header-search-popover .search-dot:hover,
.aga-header-search-popover .search-dot:focus-visible {
  border-color: var(--gold) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 178, 27, 0.2) !important;
}

body.wp-theme-hello-elementor .elementor-location-header .aga-header-search-popover .search-dot:hover::after,
body.wp-theme-hello-elementor .elementor-location-header .aga-header-search-popover .search-dot:focus-visible::after,
.aga-header-search-popover .search-dot:hover::after,
.aga-header-search-popover .search-dot:focus-visible::after {
  background: var(--gold);
}

body.wp-theme-hello-elementor .elementor-location-header .aga-language-toggle,
.aga-language-toggle.language-flag,
.aga-language-toggle {
  width: 32px !important;
  min-width: 32px !important;
  height: 32px !important;
  min-height: 32px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #d30b22 !important;
  font-family: var(--bs-font-nav) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

body.wp-theme-hello-elementor .elementor-location-header .aga-language-toggle img,
.aga-language-toggle img {
  width: 32px !important;
  height: 32px !important;
  display: block !important;
  object-fit: contain !important;
}

body.wp-theme-hello-elementor .hero .eyebrow,
body.wp-theme-hello-elementor .hero .eyebrow .elementor-heading-title {
  color: var(--white) !important;
}

body.wp-theme-hello-elementor .elementor-widget-button.button {
  min-height: 0 !important;
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.wp-theme-hello-elementor .elementor-widget-button.button > .elementor-widget-container {
  display: inline-flex;
}

body.wp-theme-hello-elementor .elementor-widget-button.button .elementor-button {
  min-height: var(--bs-button-height) !important;
  height: var(--bs-button-height) !important;
  padding: 0 20px !important;
  border-radius: 0 !important;
  font-family: var(--bs-font-button) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  box-shadow: none;
}

body.wp-theme-hello-elementor .elementor-widget-button.button--outline .elementor-button {
  border: 1px solid rgba(255, 255, 255, 0.48) !important;
  background: transparent !important;
  color: var(--white) !important;
}

body.wp-theme-hello-elementor .elementor-widget-button.button--gold .elementor-button {
  border: 1px solid var(--gold) !important;
  background: var(--gold) !important;
  color: var(--nav) !important;
}

body.wp-theme-hello-elementor .elementor-widget-button.button--light .elementor-button {
  border: 1px solid var(--white) !important;
  background: var(--white) !important;
  color: var(--deep-blue) !important;
}

body.wp-theme-hello-elementor .cta-band .elementor-widget-button {
  align-self: center !important;
  flex: 0 0 auto !important;
}

body.wp-theme-hello-elementor .cta-band .elementor-widget-button > .elementor-widget-container,
body.wp-theme-hello-elementor .cta-band .elementor-widget-button .elementor-button-wrapper {
  display: inline-flex !important;
}

body.wp-theme-hello-elementor .cta-band .elementor-button {
  width: auto !important;
  min-width: 178px !important;
  height: 44px !important;
  min-height: 44px !important;
  white-space: nowrap;
}

body.wp-theme-hello-elementor .footer-bottom-link.elementor-widget-button,
body.wp-theme-hello-elementor .footer-bottom-link.elementor-widget-button > .elementor-widget-container {
  display: inline-flex !important;
}

body.wp-theme-hello-elementor .footer-bottom-link .elementor-button {
  min-height: auto !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

body.wp-theme-hello-elementor .footer-bottom-link .elementor-button:hover,
body.wp-theme-hello-elementor .footer-bottom-link .elementor-button:focus-visible {
  color: var(--white) !important;
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

body.wp-theme-hello-elementor .aga-editorial-latest-posts.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 34px;
  align-items: stretch;
}

body.wp-theme-hello-elementor .aga-editorial-latest-posts .feature-main {
  min-height: 540px;
}

body.wp-theme-hello-elementor .aga-editorial-latest-posts .feature-main img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  opacity: 0.86;
}

body.wp-theme-hello-elementor .aga-editorial-latest-posts .story-strip > a {
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: var(--nav);
}

body.wp-theme-hello-elementor .aga-editorial-latest-posts .story-strip img,
body.wp-theme-hello-elementor .aga-archive-grid .post-card__image img {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  object-fit: cover !important;
}

body.wp-theme-hello-elementor .story-strip h3,
body.wp-theme-hello-elementor .story-strip h3 a,
body.wp-theme-hello-elementor .post-card h3,
body.wp-theme-hello-elementor .post-card h3 a {
  color: var(--ink) !important;
  font-family: var(--bs-font-heading) !important;
  font-size: 21px !important;
  font-weight: 800 !important;
  line-height: 1.16 !important;
}

body.wp-theme-hello-elementor .story-strip h3 a,
body.wp-theme-hello-elementor .post-card h3 a {
  display: -webkit-box !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

body.wp-theme-hello-elementor .story-strip h3 a {
  -webkit-line-clamp: 4;
}

body.wp-theme-hello-elementor .post-card h3 a {
  -webkit-line-clamp: 3;
}

body.wp-theme-hello-elementor .post-card h3 {
  margin: 12px 0 0 !important;
}

body.wp-theme-hello-elementor .article-aside .aga-related-posts .post-card h3 {
  margin: 0 !important;
}

body.wp-theme-hello-elementor .post-card p,
body.wp-theme-hello-elementor .post-card .meta,
body.wp-theme-hello-elementor .story-strip .meta {
  color: var(--muted) !important;
}

body.wp-theme-hello-elementor .post-card .badge,
body.wp-theme-hello-elementor .story-strip .badge,
body.wp-theme-hello-elementor .feature-main .badge {
  color: var(--gold) !important;
}

body.wp-theme-hello-elementor .social-row .elementor-social-icons-wrapper {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start !important;
}

body.wp-theme-hello-elementor .social-row .elementor-grid-item {
  margin: 0 !important;
}

body.wp-theme-hello-elementor .social-row .elementor-social-icon {
  width: 38px !important;
  height: 38px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.16) !important;
  color: var(--white) !important;
  font-size: 15px !important;
}

body.wp-theme-hello-elementor .social-row .elementor-social-icon:hover,
body.wp-theme-hello-elementor .social-row .elementor-social-icon:focus-visible {
  background: var(--gold) !important;
  color: var(--nav) !important;
}

body.wp-theme-hello-elementor .social-row .elementor-social-icon i {
  display: none !important;
}

body.wp-theme-hello-elementor .social-row .elementor-social-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: currentColor;
  -webkit-mask: var(--aga-social-mask) center / contain no-repeat;
  mask: var(--aga-social-mask) center / contain no-repeat;
}

body.wp-theme-hello-elementor .social-row .elementor-social-icon.fa-facebook-f {
  --aga-social-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 8H11V6.2c0-.7.4-.9 1-.9h1.4V2.2C12.7 2.1 12 2 11.2 2 8.9 2 7.4 3.4 7.4 5.9V8H5v3.2h2.4V18H11v-6.8h2.1L13.5 8z'/%3E%3C/svg%3E");
}

body.wp-theme-hello-elementor .social-row .elementor-social-icon.fa-instagram {
  --aga-social-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M6.5 2h7A4.5 4.5 0 0 1 18 6.5v7a4.5 4.5 0 0 1-4.5 4.5h-7A4.5 4.5 0 0 1 2 13.5v-7A4.5 4.5 0 0 1 6.5 2zm0 2A2.5 2.5 0 0 0 4 6.5v7A2.5 2.5 0 0 0 6.5 16h7a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 13.5 4h-7zM10 6.6a3.4 3.4 0 1 1 0 6.8 3.4 3.4 0 0 1 0-6.8zm0 2a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8zm4.3-1.9a1 1 0 1 1-2 0 1 1 0 0 1 2 0z'/%3E%3C/svg%3E");
}

body.wp-theme-hello-elementor .social-row .elementor-social-icon.fa-linkedin-in {
  --aga-social-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7h3v10H3V7zm1.5-4A1.7 1.7 0 1 1 4.5 6 1.7 1.7 0 0 1 4.5 3zM8 7h2.9v1.4h.1c.4-.8 1.4-1.7 3-1.7 3.1 0 3.7 2.1 3.7 4.8V17h-3v-4.9c0-1.2 0-2.7-1.7-2.7s-1.9 1.3-1.9 2.6v5H8V7z'/%3E%3C/svg%3E");
}

body.wp-theme-hello-elementor .social-row .elementor-social-icon.fa-tiktok {
  --aga-social-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4 2c.2 2 1.3 3.3 3.4 3.5v3.1a6.2 6.2 0 0 1-3.4-1.1v5.3A5.2 5.2 0 1 1 7.2 7.6c.3 0 .7 0 1 .1V11a2 2 0 1 0 1.2 1.9V2h3z'/%3E%3C/svg%3E");
}

body.wp-theme-hello-elementor .social-row .elementor-social-icon.fa-x-twitter {
  --aga-social-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.7 8.6 17.8 2h-2.2l-4.9 5.3L6.8 2H2l6.4 8.6L2 18h2.2l5.2-5.9 4.3 5.9H18l-6.3-9.4zM5.1 3.7h1l8.9 12.6h-1L5.1 3.7z'/%3E%3C/svg%3E");
}

body.wp-theme-hello-elementor .social-row .elementor-social-icon.fa-youtube {
  --aga-social-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 6.2s-.2-1.4-.8-2c-.8-.8-1.7-.8-2.1-.9C12.2 3 10 3 10 3s-2.2 0-5.1.3c-.4.1-1.3.1-2.1.9-.6.6-.8 2-.8 2S1.8 7.8 1.8 9.4v1.5c0 1.6.2 3.2.2 3.2s.2 1.4.8 2c.8.8 1.9.8 2.4.9 1.7.2 4.8.3 4.8.3s2.2 0 5.1-.3c.4-.1 1.3-.1 2.1-.9.6-.6.8-2 .8-2s.2-1.6.2-3.2V9.4c0-1.6-.2-3.2-.2-3.2zM8.4 12.5v-6l5.2 3-5.2 3z'/%3E%3C/svg%3E");
}

.aga-post-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: linear-gradient(135deg, var(--deep-blue), var(--nav));
}

body.wp-theme-hello-elementor .feature-main,
body.wp-theme-hello-elementor .feature-main:hover,
body.wp-theme-hello-elementor .feature-main:focus-visible,
body.wp-theme-hello-elementor .feature-main:focus-within {
  color: var(--white) !important;
  text-decoration: none !important;
  transform: none !important;
  box-shadow: var(--shadow);
}

body.wp-theme-hello-elementor .feature-main:hover img,
body.wp-theme-hello-elementor .feature-main:focus-visible img,
body.wp-theme-hello-elementor .feature-main:focus-within img {
  opacity: 0.86 !important;
  filter: none !important;
  transform: none !important;
}

body.wp-theme-hello-elementor .feature-main:hover h2,
body.wp-theme-hello-elementor .feature-main:hover p,
body.wp-theme-hello-elementor .feature-main:hover .meta,
body.wp-theme-hello-elementor .feature-main:focus-visible h2,
body.wp-theme-hello-elementor .feature-main:focus-visible p,
body.wp-theme-hello-elementor .feature-main:focus-visible .meta,
body.wp-theme-hello-elementor .story-strip:hover h3 a,
body.wp-theme-hello-elementor .post-card:hover h3 a,
body.wp-theme-hello-elementor .result-item:hover h3 a,
body.wp-theme-hello-elementor .related-card:hover h3 a {
  color: inherit !important;
  text-decoration: none !important;
}

body.wp-theme-hello-elementor .post-card:hover p,
body.wp-theme-hello-elementor .post-card:hover .meta,
body.wp-theme-hello-elementor .result-item:hover p,
body.wp-theme-hello-elementor .result-item:hover .meta,
body.wp-theme-hello-elementor .related-card:hover p,
body.wp-theme-hello-elementor .related-card:hover .meta {
  color: var(--muted) !important;
  text-decoration: none !important;
}

body.wp-theme-hello-elementor .elementor-post-author,
body.wp-theme-hello-elementor .elementor-post__meta-data .elementor-post-author {
  display: none !important;
}

body.wp-theme-hello-elementor .hero .aga-post-title__heading,
.aga-post-title__heading {
  margin: 0;
  color: inherit;
  font-family: var(--bs-font-heading);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

body.wp-theme-hello-elementor .hero .aga-post-title__heading {
  font-size: clamp(42px, 6vw, 78px);
}

.aga-post-excerpt {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

body.wp-theme-hello-elementor .hero .aga-post-meta {
  color: var(--white);
}

body.wp-theme-hello-elementor .article-shell.e-con > .e-con-inner,
body.wp-theme-hello-elementor .search-layout.e-con > .e-con-inner,
body.wp-theme-hello-elementor .not-found-layout.e-con > .e-con-inner {
  width: min(var(--max), calc(100% - 48px));
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  align-items: start;
}

body.wp-theme-hello-elementor .article-shell.e-con > .e-con-inner {
  grid-template-columns: minmax(0, 780px) 320px;
  gap: 34px;
}

body.wp-theme-hello-elementor .article-shell.e-con {
  padding: 0;
}

body.wp-theme-hello-elementor .search-layout.e-con > .e-con-inner {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
}

body.wp-theme-hello-elementor .not-found-layout.e-con > .e-con-inner {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 54px;
  align-items: center;
}

body.wp-theme-hello-elementor .article-card.e-con {
  display: block;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--line);
}

body.wp-theme-hello-elementor .article-card.e-con:has(> .e-con-inner) {
  padding: 0;
}

body.wp-theme-hello-elementor .article-card.e-con > .e-con-inner {
  width: 100%;
  max-width: none;
  display: block;
  padding: 48px;
}

.aga-post-featured-image {
  margin: 0 0 34px;
}

.aga-post-featured-image img,
.article-featured-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.aga-post-content {
  color: #333949;
  font-weight: 600;
}

.aga-post-content p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.aga-post-content h2 {
  margin-top: 38px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.1;
}

.aga-post-content h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}

body.wp-theme-hello-elementor .article-aside.e-con {
  position: sticky;
  top: 92px;
  padding: 0;
}

body.wp-theme-hello-elementor .article-aside.e-con > .e-con-inner {
  width: 100%;
  max-width: none;
  display: grid;
  gap: 22px;
}

body.wp-theme-hello-elementor .aside-block.e-con {
  display: block;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

body.wp-theme-hello-elementor .aside-block.e-con:has(> .e-con-inner) {
  padding: 0;
}

body.wp-theme-hello-elementor .aside-block.e-con > .e-con-inner {
  width: 100%;
  max-width: none;
  display: block;
  padding: 26px;
}

body.wp-theme-hello-elementor .aside-block h3,
body.wp-theme-hello-elementor .aside-block .elementor-heading-title {
  font-size: 16px;
  text-transform: uppercase;
}

body.wp-theme-hello-elementor .article-aside .aga-related-posts.post-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

body.wp-theme-hello-elementor .article-aside .aga-related-posts .post-card {
  grid-template-columns: 1fr;
}

body.wp-theme-hello-elementor .article-aside .aga-related-posts .post-card__image {
  aspect-ratio: 16 / 9;
}

body.wp-theme-hello-elementor .article-aside .aga-related-posts h3,
body.wp-theme-hello-elementor .article-aside .aga-related-posts h3 a {
  font-size: 15px !important;
}

.aga-search-results .section-head {
  margin-bottom: 28px;
}

.aga-search-results .section-head h2 {
  color: var(--ink);
}

.aga-search-results .search-state-toggle {
  min-height: var(--bs-button-height);
  align-self: start;
}

.result-item__image {
  display: block;
  overflow: hidden;
  background: var(--nav);
}

.result-item h3 {
  font-size: 24px;
  line-height: 1.14;
}

.result-item h3 a {
  color: inherit;
  text-decoration: none;
}

body.wp-theme-hello-elementor .search-panel--native .elementor-search-form,
body.wp-theme-hello-elementor .search-panel--native .elementor-search-form__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  width: 100%;
  min-height: 0;
}

body.wp-theme-hello-elementor .search-panel--native .elementor-search-form__input {
  min-height: 48px;
  padding: 0 16px;
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  font-weight: 700;
}

body.wp-theme-hello-elementor .search-panel--native .elementor-search-form__submit {
  min-width: 0;
  min-height: 48px;
  padding: 0 22px;
  background: var(--gold);
  color: var(--nav);
  border: 0;
  font-family: var(--bs-font-button);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
  transition: background var(--motion-fast), box-shadow var(--motion-fast), transform var(--motion-fast);
}

body.wp-theme-hello-elementor .search-panel--native .elementor-search-form__submit:hover,
body.wp-theme-hello-elementor .search-panel--native .elementor-search-form__submit:focus-visible {
  background: #ffd05d;
  color: var(--nav);
  box-shadow: 0 10px 22px rgba(244, 178, 27, 0.24);
  transform: translateY(-1px);
}

body.wp-theme-hello-elementor .search-panel--native.elementor-search-form--button-type-icon .elementor-search-form__submit .e-font-icon-svg-container {
  display: none;
}

body.wp-theme-hello-elementor .search-panel--native.elementor-search-form--button-type-icon .elementor-search-form__submit::after {
  content: "Pesquisar";
}

body.wp-theme-hello-elementor .route-panel.e-con {
  display: block;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body.wp-theme-hello-elementor .route-panel.e-con:has(> .e-con-inner) {
  padding: 0;
}

body.wp-theme-hello-elementor .route-panel.e-con > .e-con-inner {
  width: 100%;
  max-width: none;
  display: block;
  padding: 30px;
}

body.wp-theme-hello-elementor .route-panel a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 900px) {
  body.wp-theme-hello-elementor .aga-editorial-latest-posts.feature-grid {
    grid-template-columns: 1fr;
  }

  body.wp-theme-hello-elementor .article-shell.e-con > .e-con-inner,
  body.wp-theme-hello-elementor .search-layout.e-con > .e-con-inner,
  body.wp-theme-hello-elementor .not-found-layout.e-con > .e-con-inner {
    grid-template-columns: 1fr;
    width: min(100% - 32px, var(--max));
  }

  body.wp-theme-hello-elementor .article-aside.e-con {
    position: static;
  }
}
