:root {
  --arenare-deep: #061522;
  --arenare-navy: #0a223a;
  --arenare-blue: #102d4b;
  --arenare-blue-2: #163857;
  --arenare-gold: #c69436;
  --arenare-gold-light: #dfb45a;
  --arenare-gold-dark: #9b722b;
  --arenare-cream: #fbf8f1;
  --arenare-soft: #f6f3ed;
  --arenare-white: #ffffff;
  --arenare-text: #243447;
  --arenare-muted: #65707d;
  --arenare-border: #e6e1d8;
  --arenare-shadow: 0 18px 46px rgba(6, 21, 34, .10);
  --arenare-shadow-dark: 0 24px 60px rgba(0, 0, 0, .26);
  --arenare-radius: 10px;
  --arenare-shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.arenare-site-active {
  margin: 0;
  color: var(--arenare-text);
  background: var(--arenare-white);
  font-family: "Montserrat", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.arenare-site-active .site-header,
body.arenare-site-active .site-footer { display: none !important; }
body.arenare-designed-page .entry-header,
body.arenare-designed-page .post-thumb,
body.arenare-designed-page .entry-footer { display: none !important; }
body.arenare-designed-page .site-content,
body.arenare-designed-page .site-content .ast-container,
body.arenare-designed-page .site-content > .ast-container,
body.arenare-designed-page #content .ast-container,
body.arenare-designed-page #primary,
body.arenare-designed-page .content-area,
body.arenare-designed-page .site-main,
body.arenare-designed-page .entry-content,
body.arenare-designed-page article.page {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.arenare-designed-page .entry-content > * { max-width: none !important; }
body.arenare-site-active img { max-width: 100%; height: auto; }
body.arenare-site-active a { color: inherit; }
body.arenare-site-active button,
body.arenare-site-active input,
body.arenare-site-active select,
body.arenare-site-active textarea { font: inherit; }

.arenare-shell {
  width: min(calc(100% - 48px), var(--arenare-shell));
  margin-inline: auto;
}

/* Header */
.arenare-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(6, 21, 34, .98);
  border-bottom: 1px solid rgba(198, 148, 54, .26);
  box-shadow: 0 8px 26px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
body.admin-bar .arenare-header { top: 32px; }
.arenare-header__inner {
  width: min(calc(100% - 48px), 1240px);
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.arenare-brand {
  width: 290px;
  max-width: 29vw;
  display: block;
  text-decoration: none;
  flex: 0 0 auto;
}
.arenare-brand img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.arenare-brand__name {
  display: block;
  color: var(--arenare-white);
  font-family: "Cinzel", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}
.arenare-brand__tagline {
  display: block;
  margin-top: 5px;
  color: var(--arenare-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.arenare-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.arenare-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.arenare-menu li { position: relative; margin: 0; }
.arenare-menu > li > a {
  position: relative;
  display: block;
  padding: 29px 0 25px;
  color: rgba(255,255,255,.92) !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.arenare-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 2px;
  background: var(--arenare-gold);
  transition: right .22s ease;
}
.arenare-menu > li > a:hover,
.arenare-menu > .current-menu-item > a,
.arenare-menu > .current-menu-ancestor > a { color: var(--arenare-gold-light) !important; }
.arenare-menu > li > a:hover::after,
.arenare-menu > .current-menu-item > a::after,
.arenare-menu > .current-menu-ancestor > a::after { right: 0; }
.arenare-menu .sub-menu {
  position: absolute;
  left: -18px;
  top: calc(100% - 8px);
  min-width: 285px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: var(--arenare-deep);
  border: 1px solid rgba(198,148,54,.25);
  border-radius: 9px;
  box-shadow: var(--arenare-shadow-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .2s ease;
}
.arenare-menu li:hover > .sub-menu,
.arenare-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.arenare-menu .sub-menu a {
  display: block;
  padding: 11px 13px;
  color: rgba(255,255,255,.88) !important;
  border-radius: 6px;
  font-size: 12px;
  text-decoration: none;
}
.arenare-menu .sub-menu a:hover {
  background: rgba(255,255,255,.07);
  color: var(--arenare-gold-light) !important;
}
.arenare-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.arenare-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--arenare-gold);
}

/* Type */
.arenare-page h1,
.arenare-page h2,
.arenare-page h3,
.arenare-footer h2,
.arenare-footer__brand {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: -.02em;
}
.arenare-page h1 {
  margin: 0 0 21px;
  color: var(--arenare-deep);
  font-size: clamp(40px, 4.5vw, 65px);
  line-height: 1.08;
  font-weight: 600;
}
.arenare-page h2 {
  margin: 0 0 17px;
  color: var(--arenare-deep);
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1.17;
  font-weight: 600;
}
.arenare-page h3 {
  margin: 0 0 10px;
  color: var(--arenare-deep);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
}
.arenare-page p {
  margin: 0 0 17px;
  font-size: 15px;
  line-height: 1.72;
}
.arenare-page em {
  color: var(--arenare-gold);
  font-style: normal;
}
.arenare-kicker,
.arenare-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--arenare-gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.arenare-kicker::before,
.arenare-eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}
.arenare-kicker--center {
  display: flex;
  justify-content: center;
  text-align: center;
}
.arenare-kicker--center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}
.arenare-badge {
  display: inline-block;
  margin-bottom: 25px;
  padding: 7px 13px;
  color: var(--arenare-gold-light);
  border: 1px solid rgba(198,148,54,.62);
  border-radius: 5px;
  background: rgba(6,21,34,.38);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.arenare-lead {
  color: var(--arenare-navy);
  font-size: 18px !important;
  line-height: 1.65 !important;
}

/* Buttons */
.arenare-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  color: var(--arenare-deep) !important;
  background: linear-gradient(135deg, var(--arenare-gold-light), var(--arenare-gold));
  border: 1px solid var(--arenare-gold);
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(198,148,54,.18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .025em;
  text-decoration: none;
  text-transform: uppercase;
  transition: .2s ease;
  cursor: pointer;
}
.arenare-button:hover {
  transform: translateY(-1px);
  color: var(--arenare-white) !important;
  background: var(--arenare-gold-dark);
  border-color: var(--arenare-gold-dark);
}
.arenare-button--small { min-height: 42px; padding: 10px 17px; font-size: 10px; }
.arenare-button--outline {
  color: var(--arenare-white) !important;
  background: rgba(5,19,32,.18);
  border-color: rgba(255,255,255,.62);
  box-shadow: none;
}
.arenare-button--outline:hover {
  color: var(--arenare-deep) !important;
  background: var(--arenare-white);
  border-color: var(--arenare-white);
}
.arenare-button--navy {
  color: var(--arenare-white) !important;
  background: var(--arenare-navy);
  border-color: var(--arenare-navy);
  box-shadow: none;
}
.arenare-button--navy:hover { background: var(--arenare-deep); border-color: var(--arenare-deep); }
.arenare-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; }
.arenare-text-link {
  display: inline-flex;
  color: var(--arenare-navy) !important;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.arenare-text-link:hover { color: var(--arenare-gold-dark) !important; }
.arenare-center { margin-top: 30px; text-align: center; }

/* Sections */
.arenare-section { padding: 76px 0; background: var(--arenare-white); }
.arenare-section--soft,
.arenare-section--light { background: var(--arenare-soft); }
.arenare-section--navy { color: rgba(255,255,255,.84); background: var(--arenare-deep); }
.arenare-section--navy h2,
.arenare-section--navy h3 { color: var(--arenare-white); }
.arenare-heading {
  max-width: 820px;
  margin-bottom: 38px;
  text-align: center;
}
.arenare-heading p { color: var(--arenare-muted); }

/* Home hero */
.arenare-hero-v2 {
  position: relative;
  min-height: 575px;
  display: flex;
  align-items: center;
  color: var(--arenare-white);
  background: var(--arenare-deep);
  overflow: hidden;
  isolation: isolate;
}
.arenare-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(3,15,28,.96) 0%, rgba(3,15,28,.87) 38%, rgba(3,15,28,.28) 68%, rgba(3,15,28,.12) 100%),
    var(--arenare-hero-image);
  background-size: cover;
  background-position: center;
}
.arenare-hero-v2::after {
  content: "";
  position: absolute;
  inset: auto -10% -160px;
  height: 230px;
  z-index: -1;
  border: 1px solid rgba(198,148,54,.65);
  border-radius: 50%;
  transform: rotate(2deg);
}
.arenare-hero-v2__grid {
  position: relative;
  min-height: 575px;
  display: grid;
  grid-template-columns: minmax(0, 610px) 1fr;
  align-items: center;
}
.arenare-hero-v2__content {
  padding: 76px 0 105px;
}
.arenare-hero-v2 h1 {
  max-width: 620px;
  color: var(--arenare-white);
  font-size: clamp(45px, 5.2vw, 72px);
}
.arenare-hero-v2 p {
  max-width: 590px;
  color: rgba(255,255,255,.86);
  font-size: 16px;
}
.arenare-hero-v2__aside {
  position: absolute;
  right: 0;
  bottom: 105px;
  width: 190px;
  padding: 15px;
  color: rgba(255,255,255,.84);
  background: rgba(5,20,34,.62);
  border: 1px solid rgba(198,148,54,.55);
  border-radius: 7px;
  backdrop-filter: blur(8px);
}
.arenare-hero-v2__aside div + div {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid rgba(198,148,54,.35);
}
.arenare-hero-v2__aside strong,
.arenare-hero-v2__aside span { display: block; }
.arenare-hero-v2__aside strong {
  margin-bottom: 6px;
  color: var(--arenare-gold-light);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.arenare-hero-v2__aside span { margin: 3px 0; font-size: 10px; }

/* Floating values */
.arenare-values-v2 {
  position: relative;
  z-index: 4;
  margin-top: -57px;
}
.arenare-values-v2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 25px 30px;
  color: var(--arenare-white);
  background: linear-gradient(135deg, #0b263f, #102d4b);
  border: 1px solid rgba(198,148,54,.3);
  border-radius: 9px;
  box-shadow: var(--arenare-shadow-dark);
}
.arenare-values-v2 article {
  display: flex;
  gap: 17px;
  padding: 0 27px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.arenare-values-v2 article:last-child { border-right: 0; }
.arenare-values-v2 svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--arenare-gold);
  stroke-width: 1.7;
}
.arenare-values-v2 h2 { margin: 0 0 5px; color: var(--arenare-white); font-size: 15px; }
.arenare-values-v2 p { margin: 0; color: rgba(255,255,255,.72); font-size: 11px; line-height: 1.55; }

/* Office intro */
.arenare-office-intro { padding-top: 105px; }
.arenare-office-intro__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
}
.arenare-office-intro__grid > div:first-child { max-width: 590px; }
.arenare-office-intro__facts {
  position: relative;
  min-height: 300px;
  padding: 30px 230px 30px 20px;
  border-left: 1px solid var(--arenare-border);
}
.arenare-fact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--arenare-border);
}
.arenare-fact:last-of-type { border-bottom: 0; }
.arenare-fact svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--arenare-navy);
  stroke-width: 1.6;
}
.arenare-fact span { font-size: 12px; text-transform: uppercase; line-height: 1.45; }
.arenare-fact strong { display: block; color: var(--arenare-navy); }
.arenare-office-intro__mark {
  position: absolute;
  right: 25px;
  top: 50%;
  width: 160px;
  opacity: .14;
  transform: translateY(-50%);
  filter: sepia(1) saturate(.7);
}

/* Cards */
.arenare-card-grid { display: grid; gap: 22px; }
.arenare-card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.arenare-service-card,
.arenare-info-card {
  position: relative;
  min-height: 235px;
  padding: 28px;
  background: var(--arenare-white);
  border: 1px solid var(--arenare-border);
  border-radius: var(--arenare-radius);
  box-shadow: 0 10px 28px rgba(6,21,34,.05);
}
.arenare-service-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--arenare-gold), transparent);
}
.arenare-service-card > svg,
.arenare-info-card > svg {
  width: 43px;
  height: 43px;
  margin-bottom: 19px;
  fill: none;
  stroke: var(--arenare-navy);
  stroke-width: 1.5;
}
.arenare-service-card h3,
.arenare-service-card h2,
.arenare-info-card h3,
.arenare-info-card h2 { font-size: 19px; }
.arenare-service-card p,
.arenare-info-card p { color: var(--arenare-muted); font-size: 12px; line-height: 1.65; }
.arenare-service-card ul,
.arenare-check-list { margin: 17px 0 21px; padding: 0; list-style: none; }
.arenare-service-card li,
.arenare-check-list li {
  position: relative;
  margin: 8px 0;
  padding-left: 22px;
  font-size: 13px;
  line-height: 1.55;
}
.arenare-service-card li::before,
.arenare-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--arenare-gold-dark);
  font-weight: 800;
}

/* Situations */
.arenare-situations {
  padding: 35px 0 42px;
  background: var(--arenare-white);
  border-top: 1px solid var(--arenare-border);
}
.arenare-situations__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 20px;
}
.arenare-situations article {
  padding: 5px 18px;
  text-align: center;
  border-right: 1px solid var(--arenare-border);
}
.arenare-situations article:last-child { border-right: 0; }
.arenare-situations svg {
  width: 35px;
  height: 35px;
  margin-bottom: 10px;
  fill: none;
  stroke: var(--arenare-navy);
  stroke-width: 1.5;
}
.arenare-situations h3 { margin: 0; font-family: "Montserrat", Arial, sans-serif; font-size: 10px; line-height: 1.45; }

/* Signature band */
.arenare-signature-band {
  position: relative;
  padding: 43px 0;
  color: var(--arenare-white);
  background:
    radial-gradient(circle at 50% 50%, rgba(40,73,103,.35), transparent 46%),
    var(--arenare-deep);
  overflow: hidden;
}
.arenare-signature-band::before,
.arenare-signature-band::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  height: 85px;
  border-top: 1px solid rgba(198,148,54,.55);
  border-radius: 50%;
}
.arenare-signature-band::before { top: 20px; transform: rotate(2deg); }
.arenare-signature-band::after { bottom: -58px; transform: rotate(-2deg); }
.arenare-signature-band__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 38px;
  align-items: center;
}
.arenare-signature-band__icon {
  display: grid;
  place-items: center;
  width: 125px;
  height: 125px;
  margin-inline: auto;
  border: 1px dashed var(--arenare-gold);
  border-radius: 50%;
}
.arenare-signature-band__icon svg {
  width: 63px;
  height: 63px;
  fill: none;
  stroke: var(--arenare-gold);
  stroke-width: 1.5;
}
.arenare-signature-band h2 { margin: 0 0 8px; color: var(--arenare-white); font-size: clamp(25px, 2.7vw, 37px); }
.arenare-signature-band p { max-width: 760px; margin: 0; color: rgba(255,255,255,.73); font-size: 11px; }

/* Process */
.arenare-process { padding-top: 45px; padding-bottom: 55px; }
.arenare-process__grid,
.arenare-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 25px;
}
.arenare-process__grid article,
.arenare-steps article {
  position: relative;
  padding: 0 19px;
  text-align: center;
}
.arenare-process__grid article:not(:last-child)::after,
.arenare-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 63%;
  width: 74%;
  height: 1px;
  background: linear-gradient(90deg, var(--arenare-gold), var(--arenare-border));
}
.arenare-process__grid span,
.arenare-steps span {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 39px;
  height: 39px;
  margin-bottom: 14px;
  color: var(--arenare-white);
  background: var(--arenare-navy);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}
.arenare-process__grid h3,
.arenare-steps h3 { font-family: "Montserrat", Arial, sans-serif; font-size: 11px; text-transform: uppercase; }
.arenare-process__grid p,
.arenare-steps p { color: var(--arenare-muted); font-size: 10px; line-height: 1.55; }
.arenare-steps--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Audience */
.arenare-audiences { padding: 0 0 26px; background: var(--arenare-white); }
.arenare-audiences__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}
.arenare-audience-v2 {
  position: relative;
  min-height: 228px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--arenare-white) !important;
  background: var(--arenare-navy);
  border-radius: 6px;
  text-decoration: none;
}
.arenare-audience-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(5,20,34,.98) 0%, rgba(5,20,34,.83) 48%, rgba(5,20,34,.22) 100%), var(--audience-image);
  background-size: cover;
  background-position: center;
  transition: transform .35s ease;
}
.arenare-audience-v2:hover::before { transform: scale(1.035); }
.arenare-audience-v2 span {
  position: relative;
  z-index: 1;
  width: 62%;
  padding: 28px 23px;
}
.arenare-audience-v2 strong,
.arenare-audience-v2 small,
.arenare-audience-v2 b { display: block; }
.arenare-audience-v2 strong {
  margin-bottom: 9px;
  color: var(--arenare-white);
  font-family: "Cinzel", Georgia, serif;
  font-size: 20px;
  text-transform: uppercase;
}
.arenare-audience-v2 small { min-height: 55px; color: rgba(255,255,255,.82); font-size: 11px; line-height: 1.55; }
.arenare-audience-v2 b { margin-top: 13px; color: var(--arenare-gold-light); font-size: 10px; text-transform: uppercase; }

/* About */
.arenare-about-v2 { padding-top: 38px; }
.arenare-about-v2__grid {
  display: grid;
  grid-template-columns: 345px 1fr;
  gap: 55px;
  align-items: center;
}
.arenare-about-v2__photo {
  padding: 9px;
  border: 1px solid var(--arenare-gold);
  border-radius: 4px;
}
.arenare-about-v2__photo img {
  width: 100%;
  height: 365px;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
}
.arenare-about-v2__badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-top: 24px;
}
.arenare-about-v2__badges span {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--arenare-navy);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.45;
}
.arenare-about-v2__badges svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--arenare-navy);
  stroke-width: 1.5;
}

/* Services strip */
.arenare-service-strip {
  padding: 0 0 40px;
  background: var(--arenare-white);
}
.arenare-service-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 26px 30px;
  color: var(--arenare-white);
  background: var(--arenare-deep);
  border: 1px solid rgba(198,148,54,.25);
  border-radius: 8px;
  box-shadow: var(--arenare-shadow-dark);
}
.arenare-service-strip article {
  display: flex;
  gap: 17px;
  padding: 0 25px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.arenare-service-strip article:last-child { border-right: 0; }
.arenare-service-strip svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--arenare-gold);
  stroke-width: 1.5;
}
.arenare-service-strip h3 { margin: 0 0 5px; color: var(--arenare-gold-light); font-family: "Montserrat", Arial, sans-serif; font-size: 10px; text-transform: uppercase; }
.arenare-service-strip p { margin: 0 0 8px; color: rgba(255,255,255,.72); font-size: 10px; line-height: 1.55; }
.arenare-service-strip a { color: var(--arenare-gold-light) !important; font-size: 9px; font-weight: 700; text-decoration: none; text-transform: uppercase; }

/* Content */
.arenare-content-showcase { padding-top: 42px; }
.arenare-content-showcase__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}
.arenare-content-showcase__head h2 { margin-bottom: 0; font-size: 26px; }
.arenare-editorial-grid,
.arenare-post-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}
.arenare-editorial-card,
.arenare-post-card {
  overflow: hidden;
  background: var(--arenare-white);
  border: 1px solid var(--arenare-border);
  border-radius: 5px;
  box-shadow: 0 8px 24px rgba(6,21,34,.055);
}
.arenare-editorial-card > img,
.arenare-post-card__image {
  width: 100%;
  height: 145px;
  display: block;
  object-fit: cover;
}
.arenare-post-card__image img { width: 100%; height: 145px; object-fit: cover; }
.arenare-editorial-card > div,
.arenare-post-card__content { padding: 17px; }
.arenare-editorial-card span,
.arenare-post-card__category {
  color: var(--arenare-gold-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.arenare-editorial-card h3,
.arenare-post-card h2 { margin: 9px 0 16px; font-family: "Montserrat", Arial, sans-serif; font-size: 12px; line-height: 1.45; }
.arenare-editorial-card a,
.arenare-post-card a { color: var(--arenare-navy) !important; font-size: 9px; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.arenare-post-card p { color: var(--arenare-muted); font-size: 11px; }
.arenare-post-card__placeholder { display: block; height: 145px; background: linear-gradient(135deg, var(--arenare-navy), var(--arenare-blue-2)); }

/* FAQ */
.arenare-faq { display: grid; gap: 10px; }
.arenare-faq--two { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; margin-top: 22px; }
.arenare-faq details {
  background: var(--arenare-white);
  border: 1px solid var(--arenare-border);
  border-radius: 4px;
}
.arenare-faq summary {
  position: relative;
  padding: 15px 45px 15px 17px;
  color: var(--arenare-navy);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.arenare-faq summary::-webkit-details-marker { display: none; }
.arenare-faq summary::after {
  content: "+";
  position: absolute;
  right: 17px;
  top: 50%;
  color: var(--arenare-navy);
  font-size: 18px;
  transform: translateY(-50%);
}
.arenare-faq details[open] summary::after { content: "−"; }
.arenare-faq details p { padding: 0 17px 15px; color: var(--arenare-muted); font-size: 11px; }

/* CTA */
.arenare-cta,
.arenare-cta-v2 {
  padding: 34px 0;
  color: var(--arenare-white);
  background: var(--arenare-deep);
}
.arenare-cta__grid,
.arenare-cta-v2__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.arenare-cta-v2__grid > div:first-child {
  display: flex;
  align-items: center;
  gap: 23px;
}
.arenare-cta-v2 svg {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--arenare-gold);
  stroke-width: 1.45;
}
.arenare-cta h2,
.arenare-cta-v2 h2 { margin: 0 0 5px; color: var(--arenare-white); font-size: 28px; }
.arenare-cta p,
.arenare-cta-v2 p { margin: 0; color: rgba(255,255,255,.72); font-size: 11px; }

/* Home contact */
.arenare-home-contact__grid,
.arenare-contact-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 65px;
  align-items: start;
}
.arenare-home-contact h2 { font-size: 31px; }
.arenare-contact-list p { margin: 8px 0; color: var(--arenare-navy); font-size: 12px; }
.arenare-contact-list strong { color: var(--arenare-deep); }

/* Forms */
.arenare-form {
  padding: 0;
  background: transparent;
}
.arenare-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.arenare-form label {
  color: var(--arenare-navy);
  font-size: 9px;
  font-weight: 600;
}
.arenare-form input,
.arenare-form select,
.arenare-form textarea {
  width: 100%;
  margin-top: 5px;
  padding: 11px 12px;
  color: var(--arenare-text);
  background: var(--arenare-white);
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  outline: 0;
  font-size: 11px;
}
.arenare-form input:focus,
.arenare-form select:focus,
.arenare-form textarea:focus {
  border-color: var(--arenare-gold);
  box-shadow: 0 0 0 2px rgba(198,148,54,.12);
}
.arenare-form textarea { min-height: 125px; resize: vertical; }
.arenare-form__full { grid-column: 1 / -1; }
.arenare-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  margin: 12px 0;
  font-weight: 400 !important;
  line-height: 1.45;
}
.arenare-consent input { width: auto; margin-top: 2px; }
.arenare-form__notice { color: var(--arenare-muted); font-size: 9px !important; }
.arenare-form .arenare-button { width: 100%; min-height: 40px; color: var(--arenare-white) !important; background: var(--arenare-navy); border-color: var(--arenare-navy); }
.arenare-honeypot { position: absolute !important; left: -9999px !important; }
.arenare-form-message { margin-bottom: 14px; padding: 12px 14px; border-radius: 4px; font-size: 11px; }
.arenare-form-message--success { color: #174c2b; background: #eaf6ee; }
.arenare-form-message--error { color: #7a2530; background: #faecee; }

/* Generic inner page hero */
.arenare-page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  color: var(--arenare-white);
  background:
    radial-gradient(circle at 78% 35%, rgba(29,63,94,.65), transparent 32%),
    var(--arenare-deep);
  overflow: hidden;
}
.arenare-page-hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -95px;
  height: 145px;
  border-top: 1px solid rgba(198,148,54,.56);
  border-radius: 50%;
}
.arenare-page-hero__grid {
  position: relative;
  z-index: 1;
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 55px;
  align-items: center;
  padding-block: 55px;
}
.arenare-page-hero h1 { color: var(--arenare-white); font-size: clamp(38px, 4vw, 58px); }
.arenare-page-hero p { max-width: 650px; color: rgba(255,255,255,.79); }
.arenare-page-hero__image {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.arenare-page-hero__image::before {
  content: "";
  position: absolute;
  inset: 15% -5% 4%;
  border: 1px solid rgba(198,148,54,.3);
  border-radius: 50% 50% 0 0;
}
.arenare-page-hero__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px 8px 0 0;
  filter: saturate(.82);
}
.arenare-page-hero--compact { min-height: 300px; }
.arenare-page-hero--compact .arenare-shell { padding-block: 55px; }
.arenare-page-hero--compact h1 { max-width: 850px; color: var(--arenare-white); }

/* Generic inner page layout */
.arenare-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 55px;
  align-items: center;
}
.arenare-callout {
  padding: 30px;
  background: var(--arenare-cream);
  border: 1px solid var(--arenare-border);
  border-left: 3px solid var(--arenare-gold);
  border-radius: 6px;
}
.arenare-callout--small { margin-top: 25px; padding: 22px; }
.arenare-profile {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 55px;
  align-items: center;
}
.arenare-profile__image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border: 1px solid var(--arenare-gold);
  filter: grayscale(1);
}
.arenare-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.arenare-icon-grid article {
  padding: 17px;
  text-align: center;
  border-right: 1px solid var(--arenare-border);
}
.arenare-icon-grid article:last-child { border-right: 0; }
.arenare-icon-grid svg {
  width: 39px;
  height: 39px;
  margin-bottom: 10px;
  fill: none;
  stroke: var(--arenare-navy);
  stroke-width: 1.5;
}
.arenare-icon-grid h3 { font-family: "Montserrat", Arial, sans-serif; font-size: 11px; }
.arenare-icon-grid p { color: var(--arenare-muted); font-size: 10px; }
.arenare-pillar-grid article {
  padding: 27px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 7px;
}
.arenare-pillar-grid svg {
  width: 43px;
  height: 43px;
  margin-bottom: 16px;
  fill: none;
  stroke: var(--arenare-gold);
  stroke-width: 1.5;
}
.arenare-pillar-grid p { color: rgba(255,255,255,.7); font-size: 12px; }
.arenare-motto { margin-top: 28px !important; color: var(--arenare-gold-light); text-align: center; }
.arenare-content-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 35px;
}
.arenare-content-categories { display: flex; flex-wrap: wrap; gap: 8px; }
.arenare-content-categories span {
  padding: 8px 11px;
  color: var(--arenare-navy);
  background: var(--arenare-soft);
  border: 1px solid var(--arenare-border);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
}
.arenare-empty-state { padding: 45px; text-align: center; background: var(--arenare-soft); border: 1px solid var(--arenare-border); }

/* Footer */
.arenare-footer {
  padding: 43px 0 0;
  color: rgba(255,255,255,.75);
  background: var(--arenare-deep);
  border-top: 1px solid rgba(198,148,54,.23);
}
.arenare-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr .9fr;
  gap: 45px;
  padding-bottom: 35px;
}
.arenare-footer__logo {
  width: 310px;
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
}
.arenare-footer__brand { color: var(--arenare-white); font-size: 24px; }
.arenare-footer h2 {
  margin: 4px 0 15px;
  color: var(--arenare-gold-light);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.arenare-footer p,
.arenare-footer a,
.arenare-footer span {
  display: block;
  margin: 0 0 8px;
  color: rgba(255,255,255,.68);
  font-size: 10px;
  line-height: 1.55;
  text-decoration: none;
}
.arenare-footer a:hover { color: var(--arenare-gold-light); }
.arenare-footer__identity p { max-width: 350px; }
.arenare-footer__oab { color: rgba(255,255,255,.5) !important; }
.arenare-social-links { display: flex; gap: 12px; margin-top: 10px; }
.arenare-footer__bottom {
  min-height: 53px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.arenare-footer__bottom span,
.arenare-footer__bottom a { display: inline; margin: 0; font-size: 9px; }

/* Single posts */
body.arenare-site-active.single-post .site-content {
  padding: 65px 0;
  background: var(--arenare-white);
}
body.arenare-site-active.single-post .site-content .ast-container {
  width: min(calc(100% - 48px), 900px);
  max-width: 900px;
  margin-inline: auto;
}
body.arenare-site-active.single-post .entry-title {
  font-family: "Cinzel", Georgia, serif;
  color: var(--arenare-deep);
  font-size: clamp(36px, 5vw, 55px);
  line-height: 1.12;
}
body.arenare-site-active.single-post .entry-content {
  color: var(--arenare-text);
  font-size: 16px;
  line-height: 1.78;
}
body.arenare-site-active.single-post .entry-content h2,
body.arenare-site-active.single-post .entry-content h3 {
  margin-top: 38px;
  color: var(--arenare-deep);
  font-family: "Cinzel", Georgia, serif;
}

/* Responsive */
@media (max-width: 1120px) {
  .arenare-brand { width: 230px; }
  .arenare-menu { gap: 18px; }
  .arenare-menu > li > a { font-size: 10px; }
  .arenare-header__cta { padding-inline: 12px; }
  .arenare-hero-v2__aside { display: none; }
  .arenare-about-v2__badges { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  body.admin-bar .arenare-header { top: 46px; }
  .arenare-header__inner { min-height: 70px; }
  .arenare-brand { max-width: 60vw; }
  .arenare-menu-toggle { display: block; margin-left: auto; }
  .arenare-navigation {
    position: fixed;
    left: 0;
    right: 0;
    top: 70px;
    max-height: calc(100vh - 70px);
    display: none;
    padding: 18px 24px 28px;
    overflow-y: auto;
    background: var(--arenare-deep);
    border-bottom: 1px solid rgba(198,148,54,.25);
  }
  body.admin-bar .arenare-navigation { top: 116px; }
  .arenare-navigation.is-open { display: block; }
  .arenare-menu { display: block; }
  .arenare-menu > li > a { padding: 13px 0; font-size: 13px; }
  .arenare-menu > li > a::after { display: none; }
  .arenare-menu .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 5px 15px;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    border-left: 1px solid rgba(198,148,54,.4);
    box-shadow: none;
    background: transparent;
  }
  .arenare-header__cta { width: 100%; margin-top: 15px; }

  .arenare-hero-v2__grid,
  .arenare-page-hero__grid { grid-template-columns: 1fr; }
  .arenare-hero-v2 { min-height: 620px; }
  .arenare-hero-v2__content { max-width: 640px; }
  .arenare-values-v2__grid,
  .arenare-service-strip__grid { grid-template-columns: 1fr; gap: 20px; }
  .arenare-values-v2 article,
  .arenare-service-strip article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: 18px; }
  .arenare-values-v2 article:last-child,
  .arenare-service-strip article:last-child { border-bottom: 0; padding-bottom: 0; }

  .arenare-office-intro__grid,
  .arenare-about-v2__grid,
  .arenare-home-contact__grid,
  .arenare-contact-grid,
  .arenare-profile,
  .arenare-split { grid-template-columns: 1fr; }
  .arenare-office-intro__facts { padding-right: 200px; }
  .arenare-card-grid--3,
  .arenare-audiences__grid { grid-template-columns: 1fr; }
  .arenare-situations__grid,
  .arenare-icon-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .arenare-situations article:nth-child(3),
  .arenare-icon-grid article:nth-child(3) { border-right: 0; }
  .arenare-process__grid,
  .arenare-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px 0; }
  .arenare-process__grid article:nth-child(3)::after,
  .arenare-steps article:nth-child(3)::after { display: none; }
  .arenare-editorial-grid,
  .arenare-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .arenare-signature-band__grid { grid-template-columns: 130px 1fr; }
  .arenare-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .arenare-page-hero__image { display: none; }
}
@media (max-width: 680px) {
  .arenare-shell { width: min(calc(100% - 30px), var(--arenare-shell)); }
  .arenare-header__inner { width: calc(100% - 30px); }
  .arenare-brand { width: 240px; max-width: 72vw; }
  .arenare-hero-v2 { min-height: 610px; }
  .arenare-hero-v2::before {
    background-image:
      linear-gradient(90deg, rgba(3,15,28,.98), rgba(3,15,28,.79)),
      var(--arenare-hero-image);
    background-position: 62% center;
  }
  .arenare-hero-v2__content { padding: 70px 0 105px; }
  .arenare-hero-v2 h1 { font-size: 42px; }
  .arenare-actions { align-items: stretch; flex-direction: column; }
  .arenare-actions .arenare-button { width: 100%; }
  .arenare-values-v2 { margin-top: -40px; }
  .arenare-values-v2__grid { padding: 24px 20px; }
  .arenare-office-intro { padding-top: 80px; }
  .arenare-office-intro__facts { padding: 20px 110px 20px 0; border-left: 0; }
  .arenare-office-intro__mark { right: 0; width: 90px; }
  .arenare-section { padding: 58px 0; }
  .arenare-situations__grid,
  .arenare-icon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .arenare-situations article:nth-child(3),
  .arenare-icon-grid article:nth-child(3) { border-right: 1px solid var(--arenare-border); }
  .arenare-situations article:nth-child(even),
  .arenare-icon-grid article:nth-child(even) { border-right: 0; }
  .arenare-signature-band__grid { grid-template-columns: 1fr; text-align: center; }
  .arenare-signature-band__icon { width: 100px; height: 100px; }
  .arenare-process__grid,
  .arenare-steps,
  .arenare-steps--4 { grid-template-columns: 1fr; }
  .arenare-process__grid article::after,
  .arenare-steps article::after { display: none !important; }
  .arenare-audience-v2 span { width: 75%; }
  .arenare-about-v2__grid { gap: 32px; }
  .arenare-about-v2__photo { max-width: 360px; margin-inline: auto; }
  .arenare-about-v2__badges { grid-template-columns: 1fr; }
  .arenare-content-showcase__head { align-items: flex-start; flex-direction: column; }
  .arenare-editorial-grid,
  .arenare-post-grid,
  .arenare-faq--two,
  .arenare-form__grid { grid-template-columns: 1fr; }
  .arenare-form__full { grid-column: auto; }
  .arenare-cta__grid,
  .arenare-cta-v2__grid { align-items: stretch; flex-direction: column; }
  .arenare-cta-v2__grid > div:first-child { align-items: flex-start; }
  .arenare-footer__grid { grid-template-columns: 1fr; }
  .arenare-footer__bottom { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .arenare-page-hero { min-height: 370px; }
  .arenare-page-hero__grid { min-height: 370px; padding-block: 50px; }
}


/* =========================================================
   ARENARE SITE CORE 2.1
   Legibilidade, links, formulário e refinamento responsivo
   ========================================================= */

/* Links de interface sem sublinhado. Links dentro dos artigos permanecem livres
   para receber o estilo editorial do WordPress/tema. */
body.arenare-site-active .arenare-header a,
body.arenare-site-active .arenare-footer a,
body.arenare-designed-page .arenare-page a,
body.arenare-site-active .arenare-button,
body.arenare-site-active .arenare-text-link,
body.arenare-site-active .arenare-post-card a,
body.arenare-site-active .arenare-editorial-card a,
body.arenare-site-active .arenare-audience-v2,
body.arenare-site-active .arenare-service-strip a {
  text-decoration: none !important;
  text-decoration-line: none !important;
}

body.arenare-site-active .arenare-menu > li > a::after {
  display: none !important;
}

/* Escala tipográfica geral */
body.arenare-site-active {
  font-size: 16px;
  line-height: 1.65;
}

body.arenare-site-active .arenare-page p,
body.arenare-site-active .arenare-page li {
  font-size: 16px;
  line-height: 1.68;
}

body.arenare-site-active .arenare-lead {
  font-size: 19px !important;
  line-height: 1.62 !important;
}

body.arenare-site-active .arenare-kicker,
body.arenare-site-active .arenare-eyebrow {
  font-size: 11.5px;
}

body.arenare-site-active .arenare-badge {
  font-size: 11.5px;
}

/* Cabeçalho */
body.arenare-site-active .arenare-header__inner {
  min-height: 84px;
}

body.arenare-site-active .arenare-brand {
  width: 305px;
}

body.arenare-site-active .arenare-navigation {
  gap: 20px;
}

body.arenare-site-active .arenare-menu {
  gap: 22px;
}

body.arenare-site-active .arenare-menu > li > a {
  padding-top: 31px;
  padding-bottom: 29px;
  font-size: 13px;
  line-height: 1.3;
}

body.arenare-site-active .arenare-menu .sub-menu a {
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
}

/* Botões e links de ação */
body.arenare-site-active .arenare-button {
  min-height: 48px;
  padding: 13px 21px;
  font-size: 13px;
  line-height: 1.25;
}

body.arenare-site-active .arenare-button--small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 12px;
}

body.arenare-site-active .arenare-text-link {
  font-size: 12.5px;
  line-height: 1.4;
}

/* Hero */
body.arenare-site-active .arenare-hero-v2 p {
  font-size: 17px;
  line-height: 1.68;
}

body.arenare-site-active .arenare-hero-v2__aside {
  width: 210px;
  padding: 17px;
}

body.arenare-site-active .arenare-hero-v2__aside strong {
  font-size: 11px;
}

body.arenare-site-active .arenare-hero-v2__aside span {
  font-size: 12.5px;
  line-height: 1.45;
}

/* Valores e apresentação institucional */
body.arenare-site-active .arenare-values-v2 h2 {
  font-size: 17px;
}

body.arenare-site-active .arenare-values-v2 p {
  font-size: 13.5px;
  line-height: 1.58;
}

body.arenare-site-active .arenare-fact span {
  font-size: 13.5px;
  line-height: 1.5;
}

/* Cards de áreas e páginas internas */
body.arenare-site-active .arenare-service-card,
body.arenare-site-active .arenare-info-card {
  min-height: 255px;
  padding: 30px;
}

body.arenare-site-active .arenare-service-card h3,
body.arenare-site-active .arenare-service-card h2,
body.arenare-site-active .arenare-info-card h3,
body.arenare-site-active .arenare-info-card h2 {
  font-size: 20px;
}

body.arenare-site-active .arenare-service-card p,
body.arenare-site-active .arenare-info-card p {
  font-size: 14.5px;
  line-height: 1.62;
}

body.arenare-site-active .arenare-service-card li,
body.arenare-site-active .arenare-check-list li {
  font-size: 14.5px;
  line-height: 1.58;
}

/* Situações */
body.arenare-site-active .arenare-situations h3 {
  font-size: 12.5px;
  line-height: 1.5;
}

/* Faixa de posicionamento */
body.arenare-site-active .arenare-signature-band p {
  font-size: 14.5px;
  line-height: 1.62;
}

/* Método */
body.arenare-site-active .arenare-process__grid span,
body.arenare-site-active .arenare-steps span {
  font-size: 12px;
}

body.arenare-site-active .arenare-process__grid h3,
body.arenare-site-active .arenare-steps h3 {
  font-size: 13px;
  line-height: 1.42;
}

body.arenare-site-active .arenare-process__grid p,
body.arenare-site-active .arenare-steps p {
  font-size: 12.5px;
  line-height: 1.58;
}

/* Públicos */
body.arenare-site-active .arenare-audience-v2 small {
  min-height: 66px;
  font-size: 13.5px;
  line-height: 1.55;
}

body.arenare-site-active .arenare-audience-v2 b {
  font-size: 12px;
}

/* Sobre */
body.arenare-site-active .arenare-about-v2__badges span {
  font-size: 12px;
  line-height: 1.5;
}

/* Atendimento e prevenção */
body.arenare-site-active .arenare-service-strip h3 {
  font-size: 12px;
}

body.arenare-site-active .arenare-service-strip p {
  font-size: 13px;
  line-height: 1.58;
}

body.arenare-site-active .arenare-service-strip a {
  font-size: 11.5px;
}

/* Conteúdos */
body.arenare-site-active .arenare-editorial-card span,
body.arenare-site-active .arenare-post-card__category {
  font-size: 10.5px;
}

body.arenare-site-active .arenare-editorial-card h3,
body.arenare-site-active .arenare-post-card h2 {
  margin-bottom: 17px;
  font-size: 15.5px;
  line-height: 1.45;
}

body.arenare-site-active .arenare-editorial-card a,
body.arenare-site-active .arenare-post-card a {
  font-size: 11.5px;
}

body.arenare-site-active .arenare-post-card p {
  font-size: 13.5px;
  line-height: 1.58;
}

/* Perguntas frequentes */
body.arenare-site-active .arenare-faq summary {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 14px;
  line-height: 1.45;
}

body.arenare-site-active .arenare-faq details p {
  font-size: 14px;
  line-height: 1.62;
}

/* CTA */
body.arenare-site-active .arenare-cta p,
body.arenare-site-active .arenare-cta-v2 p {
  font-size: 14px;
  line-height: 1.55;
}

/* Contato e formulário */
body.arenare-site-active .arenare-contact-list p {
  font-size: 14.5px;
  line-height: 1.55;
}

body.arenare-site-active .arenare-form label {
  font-size: 13px;
  line-height: 1.4;
}

body.arenare-site-active .arenare-form input,
body.arenare-site-active .arenare-form select,
body.arenare-site-active .arenare-form textarea {
  min-height: 48px;
  padding: 12px 13px;
  font-size: 15px;
  line-height: 1.45;
}

body.arenare-site-active .arenare-form textarea {
  min-height: 155px;
}

body.arenare-site-active .arenare-consent {
  font-size: 12.5px !important;
  line-height: 1.5;
}

body.arenare-site-active .arenare-form__notice {
  font-size: 12px !important;
  line-height: 1.5;
}

body.arenare-site-active .arenare-form-message {
  font-size: 14px;
}

/* Elementos de páginas internas */
body.arenare-site-active .arenare-page-hero p {
  font-size: 17px;
  line-height: 1.65;
}

body.arenare-site-active .arenare-icon-grid h3 {
  font-size: 13px;
  line-height: 1.45;
}

body.arenare-site-active .arenare-icon-grid p {
  font-size: 12.5px;
  line-height: 1.55;
}

body.arenare-site-active .arenare-pillar-grid p {
  font-size: 14px;
  line-height: 1.6;
}

body.arenare-site-active .arenare-content-categories span {
  font-size: 11.5px;
}

/* Rodapé */
body.arenare-site-active .arenare-footer h2 {
  font-size: 12px;
}

body.arenare-site-active .arenare-footer p,
body.arenare-site-active .arenare-footer a,
body.arenare-site-active .arenare-footer span {
  font-size: 13.5px;
  line-height: 1.6;
}

body.arenare-site-active .arenare-footer__bottom span,
body.arenare-site-active .arenare-footer__bottom a {
  font-size: 11.5px;
}

/* Ajuste intermediário para manter o menu em uma linha */
@media (max-width: 1180px) and (min-width: 981px) {
  body.arenare-site-active .arenare-brand {
    width: 235px;
  }

  body.arenare-site-active .arenare-navigation {
    gap: 13px;
  }

  body.arenare-site-active .arenare-menu {
    gap: 15px;
  }

  body.arenare-site-active .arenare-menu > li > a {
    font-size: 11.5px;
  }

  body.arenare-site-active .arenare-header__cta {
    padding-inline: 12px;
    font-size: 11px;
  }
}

/* Tablet e menu móvel */
@media (max-width: 980px) {
  body.arenare-site-active .arenare-header__inner {
    min-height: 74px;
  }

  body.arenare-site-active .arenare-navigation {
    top: 74px;
  }

  body.admin-bar.arenare-site-active .arenare-navigation {
    top: 120px;
  }

  body.arenare-site-active .arenare-menu > li > a {
    padding: 14px 0;
    font-size: 15px;
  }

  body.arenare-site-active .arenare-menu .sub-menu a {
    font-size: 14px;
  }

  body.arenare-site-active .arenare-values-v2 p,
  body.arenare-site-active .arenare-service-strip p {
    font-size: 14px;
  }

  body.arenare-site-active .arenare-process__grid h3,
  body.arenare-site-active .arenare-steps h3 {
    font-size: 13.5px;
  }

  body.arenare-site-active .arenare-process__grid p,
  body.arenare-site-active .arenare-steps p {
    font-size: 13px;
  }
}

/* Celular */
@media (max-width: 680px) {
  body.arenare-site-active .arenare-page p,
  body.arenare-site-active .arenare-page li {
    font-size: 16px;
  }

  body.arenare-site-active .arenare-hero-v2 p,
  body.arenare-site-active .arenare-page-hero p {
    font-size: 16.5px;
  }

  body.arenare-site-active .arenare-button,
  body.arenare-site-active .arenare-button--small {
    font-size: 12.5px;
  }

  body.arenare-site-active .arenare-values-v2 h2 {
    font-size: 17px;
  }

  body.arenare-site-active .arenare-values-v2 p,
  body.arenare-site-active .arenare-service-strip p,
  body.arenare-site-active .arenare-service-card p,
  body.arenare-site-active .arenare-info-card p,
  body.arenare-site-active .arenare-signature-band p,
  body.arenare-site-active .arenare-faq summary,
  body.arenare-site-active .arenare-faq details p {
    font-size: 14px;
  }

  body.arenare-site-active .arenare-situations h3 {
    font-size: 12.5px;
  }

  body.arenare-site-active .arenare-editorial-card h3,
  body.arenare-site-active .arenare-post-card h2 {
    font-size: 16px;
  }

  body.arenare-site-active .arenare-footer p,
  body.arenare-site-active .arenare-footer a,
  body.arenare-site-active .arenare-footer span {
    font-size: 13.5px;
  }
}


/* =========================================================
   ARENARE SITE CORE 3.0 — CONTEÚDO JURÍDICO
   Biblioteca de artigos, páginas editoriais e FAQ por área
   ========================================================= */

body.arenare-managed-article .entry-header,
body.arenare-managed-article .entry-title,
body.arenare-managed-article .post-thumb,
body.arenare-managed-article .ast-single-post-order,
body.arenare-managed-article .navigation.post-navigation {
  display: none !important;
}

body.arenare-managed-article #primary,
body.arenare-managed-article .site-main,
body.arenare-managed-article article,
body.arenare-managed-article .entry-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.arenare-managed-article .ast-container {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
}

body.arenare-site-active .arenare-article a,
body.arenare-site-active .arenare-library a,
body.arenare-site-active .arenare-content-hub a,
body.arenare-site-active .arenare-faq-area-grid a,
body.arenare-site-active .arenare-faq-library a {
  text-decoration: none !important;
}

.arenare-article {
  background: #fff;
  color: #233142;
}

.arenare-article-hero {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-color: #061522;
  background-position: center;
  background-size: cover;
}

.arenare-article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 14, 28, .98) 0%, rgba(3, 14, 28, .88) 46%, rgba(3, 14, 28, .25) 100%),
    linear-gradient(0deg, rgba(3, 14, 28, .76) 0%, transparent 55%);
}

.arenare-article-hero::after {
  content: "";
  position: absolute;
  left: -7%;
  right: -7%;
  bottom: -135px;
  height: 180px;
  border: 1px solid rgba(201, 154, 69, .74);
  border-radius: 50%;
  transform: rotate(-2deg);
  pointer-events: none;
}

.arenare-article-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 108px 0 72px;
}

.arenare-article-hero__category {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 7px 12px;
  border: 1px solid rgba(201, 154, 69, .7);
  border-radius: 5px;
  color: #f0c36b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(6, 21, 34, .62);
}

.arenare-article-hero h1 {
  max-width: 900px;
  margin: 22px 0 20px;
  color: #fff;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(36px, 5vw, 67px);
  line-height: 1.08;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.arenare-article-hero__summary {
  max-width: 790px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.7;
}

.arenare-article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 25px;
  color: rgba(255, 255, 255, .69);
  font-size: 12.5px;
}

.arenare-article-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.arenare-article-hero__meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c99a45;
}

.arenare-article-layout {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 58px;
  align-items: start;
}

.arenare-article-main {
  min-width: 0;
}

.arenare-article-main > p:first-child,
.arenare-article-lead {
  margin-top: 0;
  color: #26394e;
  font-size: 20px;
  line-height: 1.76;
}

.arenare-article-main h2 {
  margin: 54px 0 18px;
  color: #0b2239;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.22;
  letter-spacing: -.02em;
}

.arenare-article-main h3 {
  margin: 31px 0 12px;
  color: #0b2239;
  font-family: "Cinzel", Georgia, serif;
  font-size: 22px;
  line-height: 1.3;
}

.arenare-article-main p,
.arenare-article-main li {
  color: #354253;
  font-size: 17px;
  line-height: 1.78;
}

.arenare-article-main ul,
.arenare-article-main ol {
  margin: 20px 0 26px;
  padding-left: 23px;
}

.arenare-article-main li + li {
  margin-top: 9px;
}

.arenare-article-main strong {
  color: #0b2239;
}

.arenare-article-summary {
  margin: 0 0 42px;
  padding: 29px 31px;
  border: 1px solid #d9dee5;
  border-left: 4px solid #c99a45;
  border-radius: 8px;
  background: linear-gradient(135deg, #fbfaf7, #f3f0e9);
  box-shadow: 0 14px 36px rgba(11, 34, 57, .07);
}

.arenare-article-summary h2 {
  margin: 0 0 15px;
  font-size: 25px;
}

.arenare-article-summary p,
.arenare-article-summary li {
  font-size: 15.5px;
  line-height: 1.65;
}

.arenare-article-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 46px;
}

.arenare-article-point {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #e0e5ea;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(11, 34, 57, .065);
}

.arenare-article-point::before {
  content: attr(data-number);
  position: absolute;
  right: 16px;
  top: 8px;
  color: rgba(201, 154, 69, .13);
  font-family: "Cinzel", Georgia, serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
}

.arenare-article-point h3 {
  position: relative;
  margin: 0 0 13px;
  padding-right: 38px;
  font-size: 20px;
}

.arenare-article-point p {
  position: relative;
  margin: 0;
  font-size: 15px;
  line-height: 1.68;
}

.arenare-article-note,
.arenare-article-warning,
.arenare-article-disclaimer {
  margin: 35px 0;
  padding: 25px 27px;
  border-radius: 8px;
}

.arenare-article-note {
  border: 1px solid rgba(201, 154, 69, .45);
  background: #fffaf0;
}

.arenare-article-warning {
  color: #fff;
  border: 1px solid rgba(201, 154, 69, .4);
  background: #0b2239;
}

.arenare-article-warning h3,
.arenare-article-warning strong,
.arenare-article-warning p,
.arenare-article-warning li {
  color: #fff;
}

.arenare-article-note h3,
.arenare-article-warning h3 {
  margin-top: 0;
}

.arenare-article-disclaimer {
  border: 1px solid #dfe3e8;
  background: #f7f8fa;
  color: #5e6875;
}

.arenare-article-disclaimer p {
  margin: 0;
  color: #5e6875;
  font-size: 13.5px;
  line-height: 1.65;
}

.arenare-article-faq {
  margin-top: 30px;
}

.arenare-article-faq details {
  border-top: 1px solid #dfe3e8;
}

.arenare-article-faq details:last-child {
  border-bottom: 1px solid #dfe3e8;
}

.arenare-article-faq summary {
  position: relative;
  padding: 20px 46px 20px 0;
  cursor: pointer;
  list-style: none;
  color: #0b2239;
  font-size: 16px;
  font-weight: 700;
}

.arenare-article-faq summary::-webkit-details-marker {
  display: none;
}

.arenare-article-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  color: #b58b45;
  font-size: 25px;
  font-weight: 400;
}

.arenare-article-faq details[open] summary::after {
  content: "−";
}

.arenare-article-faq details > div {
  padding: 0 42px 21px 0;
}

.arenare-article-faq details p {
  margin: 0;
  font-size: 15px;
  line-height: 1.68;
}

.arenare-official-sources {
  margin: 48px 0 0;
  padding: 28px;
  border-top: 3px solid #c99a45;
  background: #f6f4ef;
}

.arenare-official-sources h2 {
  margin-top: 0;
  font-size: 25px;
}

.arenare-official-sources ul {
  margin-bottom: 0;
}

.arenare-official-sources li,
.arenare-official-sources a {
  font-size: 14px;
  line-height: 1.62;
}

.arenare-official-sources a {
  color: #0b4f68;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.arenare-article-sidebar {
  position: sticky;
  top: 112px;
}

.arenare-article-sidebar__card {
  margin-bottom: 18px;
  padding: 25px;
  border: 1px solid #e0e5ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 13px 34px rgba(11, 34, 57, .075);
}

.arenare-article-sidebar__card--dark {
  color: #fff;
  border-color: rgba(201, 154, 69, .34);
  background: #061522;
}

.arenare-article-sidebar__card span {
  color: #b58b45;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.arenare-article-sidebar__card h2,
.arenare-article-sidebar__card h3 {
  margin: 10px 0 12px;
  color: #0b2239;
  font-family: "Cinzel", Georgia, serif;
  font-size: 19px;
  line-height: 1.32;
}

.arenare-article-sidebar__card--dark h2,
.arenare-article-sidebar__card--dark h3,
.arenare-article-sidebar__card--dark p {
  color: #fff;
}

.arenare-article-sidebar__card p,
.arenare-article-sidebar__card li {
  font-size: 13.5px;
  line-height: 1.58;
}

.arenare-article-sidebar__card ul {
  margin: 15px 0 0;
  padding-left: 18px;
}

.arenare-article-sidebar__card .arenare-button {
  width: 100%;
  margin-top: 12px;
  justify-content: center;
}

.arenare-related {
  padding: 70px 0 84px;
  background: #f7f4ed;
}

.arenare-related__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.arenare-related__heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.arenare-related__heading span {
  color: #b58b45;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.arenare-related__heading h2 {
  margin: 8px 0 0;
  color: #0b2239;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
}

.arenare-related-grid,
.arenare-library-grid,
.arenare-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

.arenare-post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dfe4e9;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 13px 34px rgba(11, 34, 57, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.arenare-post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 154, 69, .72);
  box-shadow: 0 19px 42px rgba(11, 34, 57, .13);
}

.arenare-post-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0b2239;
}

.arenare-post-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 2px solid rgba(201, 154, 69, .72);
  pointer-events: none;
}

.arenare-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .42s ease;
}

.arenare-post-card:hover .arenare-post-card__image img {
  transform: scale(1.035);
}

.arenare-post-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #061522, #123553);
}

.arenare-post-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.arenare-post-card__category {
  color: #b58b45;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.arenare-post-card h2,
.arenare-post-card h3 {
  margin: 10px 0 12px;
  color: #0b2239;
  font-family: "Cinzel", Georgia, serif;
  font-size: 19px !important;
  line-height: 1.34 !important;
}

.arenare-post-card h2 a,
.arenare-post-card h3 a {
  color: inherit;
}

.arenare-post-card p {
  margin: 0 0 18px;
  color: #5a6571;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.arenare-post-card .arenare-text-link {
  margin-top: auto;
  color: #0b2239;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
}

/* Content hub */
.arenare-content-hub {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.arenare-content-hub__card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 46px;
  border: 1px solid #dce2e7;
  border-radius: 10px;
  background:
    radial-gradient(circle at 90% 15%, rgba(201, 154, 69, .13), transparent 28%),
    #fff;
  box-shadow: 0 17px 42px rgba(11, 34, 57, .08);
}

.arenare-content-hub__card::after {
  content: "EA";
  position: absolute;
  right: 20px;
  bottom: -40px;
  color: rgba(11, 34, 57, .045);
  font-family: "Cinzel", Georgia, serif;
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
}

.arenare-content-hub__card--dark {
  color: #fff;
  border-color: rgba(201, 154, 69, .32);
  background:
    radial-gradient(circle at 90% 15%, rgba(201, 154, 69, .16), transparent 28%),
    #061522;
}

.arenare-content-hub__card--dark::after {
  color: rgba(255, 255, 255, .035);
}

.arenare-content-hub__card > * {
  position: relative;
  z-index: 2;
}

.arenare-content-hub__card span {
  color: #b58b45;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.arenare-content-hub__card h2 {
  max-width: 520px;
  margin: 15px 0;
  color: #0b2239;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.12;
}

.arenare-content-hub__card--dark h2,
.arenare-content-hub__card--dark p,
.arenare-content-hub__card--dark b {
  color: #fff;
}

.arenare-content-hub__card p {
  max-width: 520px;
  color: #586574;
  font-size: 16px;
  line-height: 1.67;
}

.arenare-content-hub__card b {
  display: inline-block;
  margin-top: 22px;
  color: #0b2239;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Article library */
.arenare-library-tools {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(270px, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 34px;
  padding: 20px;
  border: 1px solid #dfe4e9;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 13px 35px rgba(11, 34, 57, .07);
}

.arenare-library-tools input,
.arenare-faq-search input {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  border: 1px solid #ccd4dc;
  border-radius: 5px;
  color: #0b2239;
  background: #fbfcfd;
  font-size: 15px;
  outline: none;
}

.arenare-library-tools input:focus,
.arenare-faq-search input:focus {
  border-color: #c99a45;
  box-shadow: 0 0 0 3px rgba(201, 154, 69, .14);
}

.arenare-library-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.arenare-library-filters button {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid #d5dce3;
  border-radius: 4px;
  color: #0b2239;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
  cursor: pointer;
}

.arenare-library-filters button:hover,
.arenare-library-filters button.is-active {
  color: #fff;
  border-color: #0b2239;
  background: #0b2239;
}

.arenare-library-card[hidden] {
  display: none !important;
}

.arenare-library-empty {
  margin: 35px 0 0;
  padding: 26px;
  border: 1px dashed #c8d0d9;
  border-radius: 7px;
  color: #5b6672;
  background: #f8f9fa;
  text-align: center;
  font-size: 15px;
}

/* FAQ hubs and knowledge base */
.arenare-faq-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.arenare-faq-area-grid > a {
  position: relative;
  min-height: 345px;
  overflow: hidden;
  padding: 35px;
  border: 1px solid #dfe4e9;
  border-radius: 9px;
  color: #0b2239;
  background: #fff;
  box-shadow: 0 13px 35px rgba(11, 34, 57, .07);
  transition: transform .22s ease, border-color .22s ease;
}

.arenare-faq-area-grid > a:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 154, 69, .78);
}

.arenare-faq-area-grid > a::after {
  content: "";
  position: absolute;
  width: 165px;
  height: 165px;
  right: -70px;
  bottom: -70px;
  border: 1px solid rgba(201, 154, 69, .28);
  border-radius: 50%;
}

.arenare-faq-area-grid span {
  color: #c99a45;
  font-family: "Cinzel", Georgia, serif;
  font-size: 40px;
  font-weight: 700;
}

.arenare-faq-area-grid h2 {
  margin: 28px 0 15px;
  color: #0b2239;
  font-family: "Cinzel", Georgia, serif;
  font-size: 25px;
  line-height: 1.25;
}

.arenare-faq-area-grid p {
  color: #5a6571;
  font-size: 15px;
  line-height: 1.62;
}

.arenare-faq-area-grid b {
  display: inline-block;
  margin-top: 21px;
  font-size: 11.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.arenare-faq-search {
  display: block;
  max-width: 780px;
  margin: 0 auto 32px;
}

.arenare-faq--numbered {
  max-width: 980px;
  margin: 0 auto;
}

.arenare-faq--numbered details {
  border: 1px solid #dfe4e9;
  border-bottom: 0;
  background: #fff;
}

.arenare-faq--numbered details:first-child {
  border-radius: 8px 8px 0 0;
}

.arenare-faq--numbered details:last-child {
  border-bottom: 1px solid #dfe4e9;
  border-radius: 0 0 8px 8px;
}

.arenare-faq--numbered details[hidden] {
  display: none !important;
}

.arenare-faq--numbered summary {
  display: grid !important;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 74px !important;
  padding: 16px 55px 16px 18px !important;
  color: #0b2239;
  font-size: 15px !important;
  line-height: 1.48 !important;
}

.arenare-faq--numbered summary > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0b2239;
  font-family: "Cinzel", Georgia, serif;
  font-size: 12px;
}

.arenare-faq--numbered details[open] summary > span {
  color: #061522;
  background: #c99a45;
}

.arenare-faq--numbered details > div {
  padding: 0 45px 24px 92px;
}

.arenare-faq--numbered details > div p {
  margin: 0 0 14px;
  color: #4d5a68;
  font-size: 15px;
  line-height: 1.68;
}

.arenare-faq--numbered details > div a {
  color: #0b4f68;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
}

/* Page hero refinement for content pages */
.arenare-page-hero--compact {
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(circle at 82% 20%, rgba(201, 154, 69, .12), transparent 27%),
    linear-gradient(135deg, #061522, #0b2740);
}

.arenare-page-hero--compact .arenare-shell {
  padding-top: 102px;
  padding-bottom: 68px;
}

.arenare-page-hero--compact h1 {
  max-width: 980px;
  font-size: clamp(38px, 5.5vw, 67px);
  line-height: 1.08;
  text-wrap: balance;
}

.arenare-page-hero--compact p {
  max-width: 780px;
  font-size: 18px;
  line-height: 1.68;
}

/* Focus and accessibility */
body.arenare-site-active .arenare-library button:focus-visible,
body.arenare-site-active .arenare-faq summary:focus-visible,
body.arenare-site-active .arenare-article a:focus-visible,
body.arenare-site-active .arenare-content-hub a:focus-visible,
body.arenare-site-active .arenare-faq-area-grid a:focus-visible {
  outline: 3px solid #c99a45;
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .arenare-article-layout {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 35px;
  }

  .arenare-related-grid,
  .arenare-library-grid,
  .arenare-latest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .arenare-faq-area-grid {
    grid-template-columns: 1fr;
  }

  .arenare-faq-area-grid > a {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .arenare-article-hero {
    min-height: 455px;
  }

  .arenare-article-hero::before {
    background:
      linear-gradient(90deg, rgba(3, 14, 28, .96), rgba(3, 14, 28, .73)),
      linear-gradient(0deg, rgba(3, 14, 28, .74), transparent);
  }

  .arenare-article-layout {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }

  .arenare-article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .arenare-article-sidebar__card {
    margin: 0;
  }

  .arenare-article-points,
  .arenare-content-hub {
    grid-template-columns: 1fr;
  }

  .arenare-library-tools {
    grid-template-columns: 1fr;
  }

  .arenare-library-filters {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .arenare-article-hero__inner,
  .arenare-article-layout,
  .arenare-related__inner {
    width: min(100% - 28px, 1180px);
  }

  .arenare-article-hero__inner {
    padding-top: 83px;
    padding-bottom: 54px;
  }

  .arenare-article-hero h1 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .arenare-article-hero__summary {
    font-size: 16px;
  }

  .arenare-article-hero__meta {
    flex-direction: column;
    gap: 7px;
  }

  .arenare-article-main > p:first-child,
  .arenare-article-lead {
    font-size: 18px;
  }

  .arenare-article-main h2 {
    margin-top: 43px;
    font-size: 29px;
  }

  .arenare-article-main h3 {
    font-size: 20px;
  }

  .arenare-article-main p,
  .arenare-article-main li {
    font-size: 16px;
  }

  .arenare-article-summary,
  .arenare-article-point,
  .arenare-article-note,
  .arenare-article-warning,
  .arenare-article-disclaimer,
  .arenare-official-sources {
    padding: 22px;
  }

  .arenare-article-points,
  .arenare-related-grid,
  .arenare-library-grid,
  .arenare-latest-grid,
  .arenare-article-sidebar {
    grid-template-columns: 1fr;
  }

  .arenare-article-point {
    min-height: auto;
  }

  .arenare-content-hub__card {
    min-height: auto;
    padding: 32px 27px;
  }

  .arenare-content-hub__card h2 {
    font-size: 34px;
  }

  .arenare-library-tools {
    padding: 14px;
  }

  .arenare-library-filters button {
    flex: 1 1 calc(50% - 8px);
  }

  .arenare-faq-area-grid > a {
    padding: 28px;
  }

  .arenare-faq--numbered summary {
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 10px;
    padding-left: 12px !important;
    padding-right: 42px !important;
    font-size: 14px !important;
  }

  .arenare-faq--numbered summary > span {
    width: 36px;
    height: 36px;
  }

  .arenare-faq--numbered details > div {
    padding: 0 20px 22px 65px;
  }

  .arenare-page-hero--compact {
    min-height: 350px;
  }

  .arenare-page-hero--compact .arenare-shell {
    padding-top: 84px;
    padding-bottom: 52px;
  }

  .arenare-page-hero--compact h1 {
    font-size: 38px;
  }

  .arenare-page-hero--compact p {
    font-size: 16px;
  }
}


/* =========================================================
   3.0.1 — alinhamento do template PHP editorial
   ========================================================= */
body.arenare-managed-article .ast-right-sidebar #primary,
body.arenare-managed-article .ast-left-sidebar #primary,
body.arenare-managed-article #secondary {
  width: 100% !important;
  border: 0 !important;
}

body.arenare-managed-article #secondary {
  display: none !important;
}

.arenare-article-page {
  overflow: hidden;
  background: #fff;
}

.arenare-article-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 48px;
  align-items: end;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 114px;
  padding-bottom: 64px;
}

.arenare-article-hero__grid > div {
  min-width: 0;
}

.arenare-article-hero__grid > img {
  width: 100%;
  max-height: 365px;
  object-fit: cover;
  border: 1px solid rgba(201, 154, 69, .55);
  border-radius: 9px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .32);
}

.arenare-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .62);
  font-size: 11.5px;
}

.arenare-breadcrumb a,
.arenare-breadcrumb span {
  color: inherit;
}

.arenare-breadcrumb a:hover {
  color: #f0c36b;
}

.arenare-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid rgba(201, 154, 69, .68);
  border-radius: 4px;
  color: #f0c36b;
  background: rgba(6, 21, 34, .56);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.arenare-article-hero__grid h1 {
  max-width: 760px;
  margin-top: 19px;
}

.arenare-article-hero__grid > div > p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
  line-height: 1.68;
}

.arenare-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 23px;
  color: rgba(255, 255, 255, .63);
  font-size: 11.5px;
}

.arenare-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.arenare-article-meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c99a45;
}

.arenare-article-summary > span {
  display: block;
  margin-bottom: 9px;
  color: #b58b45;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.arenare-article-summary > div {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(11, 34, 57, .11);
  color: #5e6875;
  font-size: 12.5px;
}

.arenare-article-points {
  counter-reset: arenare-article-point;
}

.arenare-article-point {
  counter-increment: arenare-article-point;
}

.arenare-article-point::before {
  content: counter(arenare-article-point, decimal-leading-zero);
}

.arenare-article-faq details > p {
  margin: 0;
  padding: 0 42px 21px 0;
  color: #4d5a68;
  font-size: 15px;
  line-height: 1.68;
}

.arenare-article-faq-link {
  margin: 18px 0 42px !important;
  padding: 17px 20px;
  border: 1px solid rgba(201, 154, 69, .44);
  border-radius: 6px;
  background: #fffbf3;
}

.arenare-article-faq-link a {
  color: #0b2239;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.arenare-related-card {
  position: relative;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid #dfe4e9;
  border-radius: 7px;
  color: #0b2239;
  background: linear-gradient(145deg, #fff, #f7f4ed);
  box-shadow: 0 11px 28px rgba(11, 34, 57, .065);
  transition: transform .2s ease, border-color .2s ease;
}

.arenare-related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 154, 69, .78);
}

.arenare-related-card::after {
  content: "EA";
  position: absolute;
  right: -12px;
  bottom: -23px;
  color: rgba(11, 34, 57, .045);
  font-family: "Cinzel", Georgia, serif;
  font-size: 78px;
  font-weight: 700;
}

.arenare-related-card span,
.arenare-related-card strong,
.arenare-related-card small {
  position: relative;
  z-index: 2;
}

.arenare-related-card span {
  color: #b58b45;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.arenare-related-card strong {
  margin: 13px 0 20px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 16px;
  line-height: 1.4;
}

.arenare-related-card small {
  margin-top: auto;
  color: #0b4f68;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.arenare-article-sources {
  margin: 49px 0 0;
  padding: 28px;
  border-top: 3px solid #c99a45;
  background: #f6f4ef;
}

.arenare-article-sources h2 {
  margin-top: 0;
  font-size: 25px;
}

.arenare-article-sources p,
.arenare-article-sources li,
.arenare-article-sources a {
  font-size: 14px;
  line-height: 1.63;
}

.arenare-article-sources a {
  color: #0b4f68;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.arenare-legal-disclaimer {
  margin: 28px 0 0;
  padding: 23px 25px;
  border: 1px solid #dfe3e8;
  border-radius: 7px;
  background: #f8f9fa;
}

.arenare-legal-disclaimer > strong {
  display: block;
  margin-bottom: 8px;
  color: #0b2239;
  font-family: "Cinzel", Georgia, serif;
  font-size: 16px;
}

.arenare-legal-disclaimer p {
  margin: 5px 0;
  color: #5e6875;
  font-size: 13px;
  line-height: 1.62;
}

.arenare-sidebar-card {
  margin-bottom: 18px;
  padding: 25px;
  border: 1px solid #e0e5ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 13px 34px rgba(11, 34, 57, .075);
}

.arenare-sidebar-card > strong {
  display: block;
  margin-bottom: 8px;
  color: #b58b45;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.arenare-sidebar-card > span {
  display: block;
  margin-bottom: 17px;
  color: #0b2239;
  font-family: "Cinzel", Georgia, serif;
  font-size: 18px;
  line-height: 1.35;
}

.arenare-sidebar-card > a:not(.arenare-button) {
  display: block;
  padding: 11px 0;
  border-top: 1px solid #e7ebef;
  color: #0b4f68;
  font-size: 12px;
  font-weight: 700;
}

.arenare-sidebar-card--dark {
  color: #fff;
  border-color: rgba(201, 154, 69, .34);
  background: #061522;
}

.arenare-sidebar-card--dark > strong,
.arenare-sidebar-card--dark p {
  color: #fff;
}

.arenare-sidebar-card--dark p {
  font-size: 13px;
  line-height: 1.58;
}

.arenare-sidebar-card--dark .arenare-button {
  width: 100%;
  margin-top: 11px;
  justify-content: center;
}

.arenare-author-box {
  border-top: 1px solid rgba(201, 154, 69, .35);
  border-bottom: 1px solid rgba(201, 154, 69, .35);
  background: #061522;
}

.arenare-author-box > .arenare-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding-top: 35px;
  padding-bottom: 35px;
}

.arenare-author-box strong {
  display: block;
  color: #f0c36b;
  font-family: "Cinzel", Georgia, serif;
  font-size: 20px;
}

.arenare-author-box p {
  max-width: 760px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: 13.5px;
  line-height: 1.58;
}

.arenare-author-box a {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .arenare-article-hero__grid {
    grid-template-columns: 1fr;
    padding-top: 92px;
  }

  .arenare-article-hero__grid > img {
    max-width: 650px;
    max-height: none;
  }
}

@media (max-width: 620px) {
  .arenare-article-hero__grid {
    width: min(100% - 28px, 1180px);
    gap: 28px;
    padding-top: 78px;
    padding-bottom: 46px;
  }

  .arenare-breadcrumb {
    font-size: 10.5px;
  }

  .arenare-article-hero__grid > div > p {
    font-size: 16px;
  }

  .arenare-article-meta {
    flex-direction: column;
    gap: 6px;
  }

  .arenare-related-card {
    min-height: 155px;
  }

  .arenare-article-faq details > p {
    padding-right: 24px;
  }

  .arenare-author-box > .arenare-shell {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   ARENARE SITE CORE 4.1 — AJUSTES VISUAIS E UX
   ===================================================== */
body.arenare-site-active .arenare-page-hero--background {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  background: linear-gradient(120deg, rgba(4,18,43,.96), rgba(7,31,69,.88));
}
body.arenare-site-active .arenare-page-hero--background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(4,18,43,.92) 0%, rgba(4,18,43,.86) 44%, rgba(4,18,43,.45) 100%), var(--arenare-page-hero-image);
  background-size: cover;
  background-position: center;
}
body.arenare-site-active .arenare-page-hero--background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 22%, rgba(214,166,64,.22), transparent 24%), radial-gradient(circle at 10% 90%, rgba(214,166,64,.12), transparent 18%);
  pointer-events: none;
}
body.arenare-site-active .arenare-page-hero--background .arenare-page-hero__grid {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 470px;
  padding-block: 86px 72px;
}
body.arenare-site-active .arenare-page-hero__content { max-width: 760px; }
body.arenare-site-active .arenare-page-hero--background h1 { max-width: 13ch; font-size: clamp(34px, 4.4vw, 62px); line-height: 1.08; }
body.arenare-site-active .arenare-page-hero--background p { max-width: 62ch; font-size: 17px; line-height: 1.7; }
body.arenare-site-active .arenare-page-hero__image { display: none !important; }
body.arenare-site-active .arenare-signature-band__grid,
body.arenare-site-active .arenare-office-intro__grid,
body.arenare-site-active .arenare-about-v2__grid,
body.arenare-site-active .arenare-home-contact__grid,
body.arenare-site-active .arenare-contact-grid,
body.arenare-site-active .arenare-split { align-items: start; }
body.arenare-site-active .arenare-signature-band h2,
body.arenare-site-active .arenare-page h1,
body.arenare-site-active .arenare-page h2,
body.arenare-site-active .arenare-page h3 { word-break: normal; overflow-wrap: normal; hyphens: none; }
body.arenare-site-active .arenare-signature-band p { font-size: 15px; line-height: 1.75; max-width: 65ch; }
body.arenare-site-active .arenare-office-intro__grid p,
body.arenare-site-active .arenare-home-contact__grid p,
body.arenare-site-active .arenare-contact-grid p,
body.arenare-site-active .arenare-page p { font-size: 16px; line-height: 1.75; }
body.arenare-site-active .arenare-home-contact h2,
body.arenare-site-active .arenare-about-v2 h2,
body.arenare-site-active .arenare-heading h2 { line-height: 1.18; }
body.arenare-site-active .arenare-social-panel { margin-top: 22px; }
body.arenare-site-active .arenare-social-panel__label { display: block; margin-bottom: 10px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--arenare-gold); font-weight: 700; }
body.arenare-site-active .arenare-social-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
body.arenare-site-active .arenare-social-link { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 999px; border: 1px solid rgba(19,37,68,.12); background: #fff; color: var(--arenare-navy); text-decoration: none; font-weight: 600; }
body.arenare-site-active .arenare-social-link:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(7,31,69,.08); }
body.arenare-site-active .arenare-social-link__icon { width: 18px; height: 18px; display: inline-flex; }
body.arenare-site-active .arenare-social-link__icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.85; stroke-linecap: round; stroke-linejoin: round; }
body.arenare-site-active .arenare-social-link--facebook .arenare-social-link__icon svg,
body.arenare-site-active .arenare-social-link--linkedin .arenare-social-link__icon svg,
body.arenare-site-active .arenare-social-link--whatsapp .arenare-social-link__icon svg { fill: currentColor; stroke: none; }
body.arenare-site-active .arenare-footer .arenare-social-links { margin-top: 16px; }
body.arenare-site-active .arenare-footer .arenare-social-link { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); color: #fff; }
body.arenare-site-active .arenare-whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 1000; display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 999px; background: #25D366; color: #fff; text-decoration: none; font-weight: 700; box-shadow: 0 18px 38px rgba(0,0,0,.24); }
body.arenare-site-active .arenare-whatsapp-float__icon { width: 22px; height: 22px; display: inline-flex; }
body.arenare-site-active .arenare-whatsapp-float svg { width: 22px; height: 22px; fill: currentColor; stroke: none; }
body.arenare-site-active .arenare-whatsapp-float:hover { transform: translateY(-2px); }
body.arenare-site-active .arenare-article-layout { grid-template-columns: minmax(250px, 290px) minmax(0, 1fr); align-items: start; }
body.arenare-site-active .arenare-article-sidebar { position: sticky; top: 110px; }
body.arenare-site-active .arenare-sidebar-card--keywords ul { margin: 14px 0 0; padding-left: 18px; }
body.arenare-site-active .arenare-sidebar-card--keywords li { margin: 0 0 8px; color: var(--arenare-text); }
body.arenare-site-active .arenare-sidebar-card--keywords > span { display: block; margin-top: 8px; }
@media (max-width: 1024px) {
  body.arenare-site-active .arenare-article-layout { grid-template-columns: 1fr; }
  body.arenare-site-active .arenare-article-sidebar { position: static; order: -1; }
}
@media (max-width: 768px) {
  body.arenare-site-active .arenare-page-hero--background,
  body.arenare-site-active .arenare-page-hero--background .arenare-page-hero__grid { min-height: 390px; }
  body.arenare-site-active .arenare-page-hero--background .arenare-page-hero__grid { padding-block: 70px 52px; }
  body.arenare-site-active .arenare-page-hero--background h1 { max-width: none; font-size: clamp(28px, 8vw, 42px); }
  body.arenare-site-active .arenare-page-hero--background p { font-size: 15px; }
  body.arenare-site-active .arenare-social-link { width: 100%; justify-content: center; }
  body.arenare-site-active .arenare-whatsapp-float { right: 16px; bottom: 16px; padding: 12px 14px; }
  body.arenare-site-active .arenare-whatsapp-float__label { display: none; }
}


/* =====================================================
   ARENARE SITE CORE 4.2 — MIGRAÇÃO DAS PÁGINAS VISUAIS
   ===================================================== */
body.arenare-site-active .arenare-visual-page .arenare-page-hero--cover {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 480px;
  overflow: hidden;
  isolation: isolate;
  padding: 0;
}
body.arenare-site-active .arenare-visual-page .arenare-page-hero--cover::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: 20px;
  width: 62%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,154,69,.9), transparent);
  transform: rotate(2deg);
  z-index: 2;
}
body.arenare-site-active .arenare-visual-page .arenare-page-hero--cover .wp-block-cover__background {
  background: linear-gradient(90deg, rgba(4,18,43,.96) 0%, rgba(4,18,43,.88) 48%, rgba(4,18,43,.52) 100%) !important;
  opacity: 1 !important;
}
body.arenare-site-active .arenare-visual-page .arenare-page-hero--cover .wp-block-cover__image-background {
  object-position: center 30%;
  filter: saturate(.72) contrast(1.05);
}
body.arenare-site-active .arenare-visual-page .arenare-page-hero--cover .wp-block-cover__inner-container {
  position: relative;
  z-index: 3;
  width: 100%;
}
body.arenare-site-active .arenare-visual-page .arenare-page-hero--cover .arenare-page-hero__content {
  display: block;
  width: min(100% - 40px, 1180px);
  max-width: 1180px;
  margin-inline: auto;
  padding-block: 82px 72px;
}
body.arenare-site-active .arenare-visual-page .arenare-page-hero--cover h1 {
  max-width: 15ch;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.08;
  text-wrap: balance;
}
body.arenare-site-active .arenare-visual-page .arenare-page-hero--cover p:not(.arenare-eyebrow) {
  max-width: 64ch;
  color: rgba(255,255,255,.84);
  font-size: 17px;
  line-height: 1.72;
}
body.arenare-site-active .arenare-visual-page .arenare-page-hero--cover .arenare-eyebrow {
  color: #d8aa50;
}
body.arenare-site-active .arenare-visual-page .arenare-signature-band__grid {
  grid-template-columns: 150px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 42px !important;
}
body.arenare-site-active .arenare-visual-page .arenare-signature-band__grid > .wp-block-column {
  min-width: 0;
}
body.arenare-site-active .arenare-visual-page .arenare-signature-band__content h2 {
  max-width: 24ch;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.18;
  text-wrap: balance;
}
body.arenare-site-active .arenare-visual-page .arenare-signature-band__content p {
  max-width: 68ch;
  font-size: 15px;
  line-height: 1.75;
}
body.arenare-site-active .arenare-visual-page .arenare-social-panel {
  margin-top: 26px;
}
body.arenare-site-active .arenare-visual-page .arenare-social-panel .wp-block-shortcode {
  margin: 0;
}
body.arenare-site-active .arenare-visual-page .arenare-about-v2__grid,
body.arenare-site-active .arenare-visual-page .arenare-home-contact__grid,
body.arenare-site-active .arenare-visual-page .arenare-contact-grid,
body.arenare-site-active .arenare-visual-page .arenare-office-intro__grid {
  align-items: start !important;
}
body.arenare-site-active .arenare-visual-page h1,
body.arenare-site-active .arenare-visual-page h2,
body.arenare-site-active .arenare-visual-page h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
@media (max-width: 900px) {
  body.arenare-site-active .arenare-visual-page .arenare-signature-band__grid {
    grid-template-columns: 100px minmax(0, 1fr) !important;
    gap: 28px !important;
  }
}
@media (max-width: 680px) {
  body.arenare-site-active .arenare-visual-page .arenare-page-hero--cover,
  body.arenare-site-active .arenare-visual-page .arenare-page-hero--cover[style] {
    min-height: 420px !important;
  }
  body.arenare-site-active .arenare-visual-page .arenare-page-hero--cover .arenare-page-hero__content {
    width: min(100% - 30px, 1180px);
    padding-block: 68px 54px;
  }
  body.arenare-site-active .arenare-visual-page .arenare-page-hero--cover h1 {
    max-width: none;
    font-size: clamp(30px, 10vw, 43px);
  }
  body.arenare-site-active .arenare-visual-page .arenare-page-hero--cover p:not(.arenare-eyebrow) {
    font-size: 15.5px;
  }
  body.arenare-site-active .arenare-visual-page .arenare-signature-band__grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  body.arenare-site-active .arenare-visual-page .arenare-signature-band__icon {
    margin-inline: auto;
  }
  body.arenare-site-active .arenare-visual-page .arenare-signature-band__content h2,
  body.arenare-site-active .arenare-visual-page .arenare-signature-band__content p {
    max-width: none;
  }
}
