:root {
  --adr-dark: #1f1f1f;
  --adr-text: #343232;
  --adr-muted: #848484;
  --adr-gold: #b98d59;
  --adr-olive: #b6bd69;
  --adr-bg: #faf8f3;
  --adr-container: 1320px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Mulish', Arial, sans-serif;
  color: var(--adr-text);
  background: #fff;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.adr-container { width: min(var(--adr-container), calc(100% - 64px)); margin: 0 auto; }
.adr-container--narrow { width: min(920px, calc(100% - 64px)); margin: 0 auto; }
.adr-center { text-align: center; }
.adr-page { padding-top: 120px; }
.adr-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.05;
  margin: 0 0 28px;
}
.adr-entry-content { width: 100%; }
.adr-post-list-item { margin-bottom: 46px; }
.adr-post-list-item h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 500;
}
.adr-single-thumb { margin: 0 0 36px; }
.adr-single-thumb img { width: 100%; height: auto; }

.adr-logo {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  color: #fff;
}
.adr-logo__mark {
  width: 82px;
  height: 82px;
  border: 4px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
}
.adr-logo__text {
  font-size: 28px;
  line-height: 1;
  letter-spacing: .62em;
  font-weight: 700;
  white-space: nowrap;
}
.adr-logo--custom img { max-height: 92px; width: auto; }

.adr-site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  transition: background-color .24s ease, backdrop-filter .24s ease;
}
.adr-site-header--overlay { background: transparent; }
.adr-site-header--solid,
.adr-site-header.is-scrolled {
  background: rgba(22,22,22,.82);
  backdrop-filter: blur(12px);
}
.adr-site-header__inner {
  width: min(calc(var(--adr-container) + 40px), calc(100% - 36px));
  min-height: 108px;
  margin: 0 auto;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
}
.adr-site-header__logo { justify-self: center; }
.adr-site-header__nav { justify-self: start; }
.adr-main-menu,
.adr-footer-menu,
.adr-mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.adr-main-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 34px;
}
.adr-main-menu a,
.adr-footer-menu a,
.adr-mobile-menu a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.adr-menu-dots {
  justify-self: end;
  appearance: none;
  border: 0;
  background: rgba(0,0,0,.48);
  border-radius: 18px;
  width: 58px;
  height: 58px;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  cursor: pointer;
}
.adr-menu-dots span:not(.screen-reader-text) {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}
.adr-menu-dots--static { cursor: default; }
.adr-mobile-menu-panel {
  background: rgba(22,22,22,.97);
  padding: 26px 32px 34px;
}
.adr-mobile-menu { display: grid; gap: 16px; text-align: center; }

.adr-site-footer,
.adr-elementor-footer {
  background: var(--adr-dark);
  color: #fff;
  text-align: center;
  padding: 88px 0 26px;
  position: relative;
}
.adr-site-footer__inner { width: min(var(--adr-container), calc(100% - 64px)); margin: 0 auto; }
.adr-site-footer__logo,
.adr-elementor-footer__logo { margin-bottom: 54px; }
.adr-site-footer .adr-logo__mark,
.adr-elementor-footer .adr-logo__mark { width: 92px; height: 92px; }
.adr-site-footer .adr-logo__text,
.adr-elementor-footer .adr-logo__text { font-size: 34px; }
.adr-footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
}
.adr-footer-social { margin: 44px 0 58px; }
.adr-footer-social a {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-size: 25px;
}
.adr-footer-line { height: 1px; background: rgba(255,255,255,.12); margin-bottom: 24px; }
.adr-footer-copy { color: rgba(255,255,255,.72); margin: 0; font-size: 16px; }
.adr-scroll-top {
  position: absolute;
  right: 22px;
  bottom: 28px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1180px) {
  .adr-site-header__inner { grid-template-columns: 1fr auto; gap: 20px; }
  .adr-site-header__nav { display: none; }
  .adr-site-header__logo { justify-self: start; }
}
@media (max-width: 767px) {
  .adr-container,
  .adr-container--narrow,
  .adr-site-footer__inner { width: min(100% - 32px, 1000px); }
  .adr-site-header__inner { min-height: 84px; padding-top: 14px; width: min(100% - 24px, 1000px); }
  .adr-logo { gap: 14px; }
  .adr-logo__mark { width: 54px; height: 54px; border-width: 3px; font-size: 34px; }
  .adr-logo__text { font-size: 18px; letter-spacing: .36em; }
  .adr-menu-dots { width: 52px; height: 52px; border-radius: 15px; padding: 12px; }
  .adr-page { padding-top: 92px; }
  .adr-footer-menu { gap: 20px 28px; }
}

/* Global cover behaviour for theme images/backgrounds */
.adr-entry-content img,
.adr-post-list-item img,
.adr-single-thumb img,
.wp-block-image img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
[style*="background-image"] {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* 2.3 cover hardening for theme templates and WordPress content */
.adr-cover-image,
.adr-cover-image img,
.adr-post-list-item .post-thumbnail,
.adr-post-list-item .post-thumbnail img,
.adr-single-thumb,
.adr-single-thumb img {
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.adr-single-thumb {
  aspect-ratio: 16 / 9;
}
.adr-single-thumb img {
  display: block !important;
}

/* v2.4 fallback: no fixed social icon; keep official social wrappers generic */
.adr-footer-social { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.adr-footer-social-link { color: #fff; }

/* Ae do Rode 2.6 - personalized logo fallback */
.adr-logo--image-default img {
  display: block;
  width: min(280px, 48vw);
  max-height: 110px;
  object-fit: contain;
}
.adr-site-footer .adr-logo--image-default img {
  width: min(360px, 72vw);
  max-height: 150px;
}

/* Ae do Rode 2.7 - modern pizzeria palette, no black/white */
:root {
  --adr-dark: #3b342e;
  --adr-text: #342f2a;
  --adr-muted: #716b64;
  --adr-gold: #b46a45;
  --adr-olive: #858a55;
  --adr-bg: #f3eee4;
}
body {
  background: #f6f1e7;
  color: var(--adr-text);
}
.adr-site-header--solid,
.adr-site-header.is-scrolled {
  background: rgba(59,52,46,.86);
}
.adr-site-footer {
  background: linear-gradient(135deg, #3b342e, #4d4035);
}
.adr-page-title,
.adr-post-list-item h2 {
  font-family: 'Oswald', 'Mulish', sans-serif;
  font-weight: 300;
  letter-spacing: .015em;
}
.adr-logo--image-default img {
  max-height: 118px;
}

/* v3.2.1: footer social icons are rendered as inline SVGs, so they remain visible even when Font Awesome is not printed on the frontend. */
.adr-footer-social-link .adr-footer-social-svg {
  width: 1em;
  height: 1em;
  display: block;
  color: currentColor;
  fill: currentColor;
}
.adr-footer-social-link .adr-footer-social-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .58em;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  color: currentColor;
}
.adr-footer-social-link .adr-footer-social-svg + i,
.adr-footer-social-link .adr-footer-social-text + i {
  display: none;
}

/* Ae do Rode 3.2.3 - single article layout with editable WordPress sidebar */
.adr-single {
  padding-top: 146px;
  padding-bottom: 92px;
}
.adr-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(46px, 5vw, 74px);
  align-items: start;
}
.adr-single-article {
  min-width: 0;
}
.adr-single-header {
  margin: 0 0 34px;
}
.adr-single-kicker {
  margin: 0 0 14px;
  color: var(--adr-gold);
  font-family: 'Mulish', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.adr-single-kicker a {
  color: inherit;
}
.adr-single-title {
  max-width: 860px;
  margin-bottom: 18px;
}
.adr-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--adr-muted);
  font-size: 15px;
  line-height: 1.4;
}
.adr-single-thumb {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  margin: 0 0 42px;
  border-radius: 22px;
  overflow: hidden !important;
  background: rgba(52,47,42,.07);
}
.adr-single-thumb img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.adr-single-content {
  max-width: 820px;
  font-size: 18px;
  line-height: 1.85;
  color: var(--adr-text);
}
.adr-single-content > :first-child {
  margin-top: 0;
}
.adr-single-content p,
.adr-single-content ul,
.adr-single-content ol {
  margin-bottom: 1.35em;
}
.adr-single-content h2,
.adr-single-content h3,
.adr-single-content h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.12;
  margin: 1.45em 0 .55em;
  color: var(--adr-text);
}
.adr-single-content h2 { font-size: clamp(36px, 3vw, 48px); }
.adr-single-content h3 { font-size: clamp(30px, 2.4vw, 38px); }
.adr-single-content a {
  color: var(--adr-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.adr-single-sidebar {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 22px;
}
.adr-sidebar-widget {
  padding: 28px;
  border: 1px solid rgba(52,47,42,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.52);
  box-shadow: 0 18px 45px rgba(52,47,42,.06);
}
.adr-sidebar-widget__title {
  margin: 0 0 18px;
  font-family: 'Oswald', 'Mulish', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--adr-text);
}
.adr-sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.adr-sidebar-widget li {
  color: var(--adr-muted);
  font-size: 15px;
  line-height: 1.45;
}
.adr-sidebar-widget a {
  color: inherit;
}
.adr-sidebar-widget a:hover {
  color: var(--adr-gold);
}
.adr-sidebar-widget .search-form {
  display: grid;
  gap: 10px;
}
.adr-sidebar-widget .search-field,
.adr-sidebar-widget input[type="search"] {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
  border: 1px solid rgba(52,47,42,.16);
  border-radius: 999px;
  background: #fff;
  color: var(--adr-text);
}
.adr-sidebar-widget .search-submit,
.adr-sidebar-widget input[type="submit"],
.adr-sidebar-widget button[type="submit"] {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--adr-olive);
  color: #fff;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .adr-single-layout {
    grid-template-columns: 1fr;
  }
  .adr-single-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .adr-single {
    padding-top: 104px;
    padding-bottom: 70px;
  }
  .adr-single-layout {
    width: min(100% - 32px, 1000px);
    gap: 38px;
  }
  .adr-single-header {
    margin-bottom: 24px;
  }
  .adr-single-thumb {
    margin-bottom: 30px;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
  }
  .adr-single-content {
    font-size: 17px;
    line-height: 1.78;
  }
  .adr-single-sidebar {
    grid-template-columns: 1fr;
  }
  .adr-sidebar-widget {
    padding: 22px;
    border-radius: 18px;
  }
}


/* Ae do Rode 3.2.4 - more breathing room between fixed header and single post content */
.single-post .adr-single,
.adr-single {
  padding-top: clamp(205px, 15vw, 260px);
}
@media (max-width: 1100px) {
  .single-post .adr-single,
  .adr-single {
    padding-top: 178px;
  }
}
@media (max-width: 767px) {
  .single-post .adr-single,
  .adr-single {
    padding-top: 138px;
  }
}

/* Ae do Rode 3.2.5 - widget sidebar articoli recenti con immagine e meta */
.adr-recent-posts-list {
  display: grid;
  gap: 18px;
}
.adr-recent-posts-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
}
.adr-recent-posts-item.no-thumb {
  grid-template-columns: 1fr;
}
.adr-recent-posts-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(52,47,42,.08);
  aspect-ratio: 1 / 1;
}
.adr-recent-posts-thumb--4-3 { aspect-ratio: 4 / 3; }
.adr-recent-posts-thumb--16-9 { aspect-ratio: 16 / 9; }
.adr-recent-posts-thumb--3-4 { aspect-ratio: 3 / 4; }
.adr-recent-posts-thumb img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  transition: transform .28s ease;
}
.adr-recent-posts-thumb:hover img {
  transform: scale(1.04);
}
.adr-recent-posts-content {
  min-width: 0;
}
.adr-recent-posts-title {
  margin: 0 0 7px;
  font-family: 'Oswald', 'Mulish', sans-serif;
  font-size: 16px;
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--adr-text);
}
.adr-recent-posts-title a:hover {
  color: var(--adr-gold);
}
.adr-recent-posts-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 7px;
  align-items: center;
  color: var(--adr-muted);
  font-size: 12px;
  line-height: 1.35;
}
.adr-recent-posts-meta a {
  color: inherit;
}
.adr-recent-posts-meta a:hover {
  color: var(--adr-gold);
}
.adr-recent-posts-meta-separator {
  opacity: .55;
}
.adr-recent-posts-excerpt {
  margin: 8px 0 0;
  color: var(--adr-muted);
  font-size: 13px;
  line-height: 1.45;
}
.adr-recent-posts-empty {
  margin: 0;
  color: var(--adr-muted);
  font-size: 14px;
}
@media (max-width: 1100px) and (min-width: 768px) {
  .adr-single-sidebar .adr-recent-posts-item {
    grid-template-columns: 78px minmax(0, 1fr);
  }
}
@media (max-width: 420px) {
  .adr-recent-posts-item {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
  }
}

/* Ae do Rode 3.2.6 - sidebar articolo più distante dall'header sticky */
@media (min-width: 1101px) {
  .adr-single-sidebar {
    top: clamp(176px, 12vw, 230px);
  }
}

/* Ae do Rode 3.2.6 - piccoli affinamenti widget articoli recenti */
.adr-recent-posts-widget .adr-recent-posts-empty,
.adr-recent-posts-sidebar-widget .adr-recent-posts-empty {
  background: rgba(52,47,42,.04);
  border-radius: 12px;
  padding: 12px 14px;
}

/* Ae do Rode 3.2.7 - single post più personalizzabile e sidebar più distante dall'header */
.single-post .adr-single,
.adr-single {
  padding-top: clamp(220px, 16vw, 290px);
}
.adr-single-layout--sidebar-left {
  grid-template-columns: 340px minmax(0, 1fr);
}
.adr-single-layout--sidebar-left .adr-single-sidebar {
  grid-column: 1;
  grid-row: 1;
}
.adr-single-layout--sidebar-left .adr-single-article {
  grid-column: 2;
}
.adr-single-layout--no-sidebar {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}
.adr-single-layout--no-sidebar .adr-single-content {
  max-width: 900px;
}
.adr-single-meta a {
  color: inherit;
  text-decoration: none;
}
.adr-single-meta a:hover {
  color: var(--adr-gold);
}
.adr-single-meta__separator {
  opacity: .55;
}
.adr-single-thumb--ratio-21-9 { aspect-ratio: 21 / 9; }
.adr-single-thumb--ratio-16-9 { aspect-ratio: 16 / 9; }
.adr-single-thumb--ratio-3-2 { aspect-ratio: 3 / 2; }
.adr-single-thumb--ratio-4-3 { aspect-ratio: 4 / 3; }
.adr-single-thumb--ratio-original {
  aspect-ratio: auto;
  height: auto !important;
  background: transparent;
}
.adr-single-thumb--ratio-original img {
  position: static !important;
  height: auto !important;
  object-fit: contain !important;
}
.adr-single-footer {
  max-width: 820px;
  margin-top: 44px;
}
.adr-single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.adr-single-tags__label,
.adr-single-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 14px;
  font-size: 13px;
  line-height: 1;
}
.adr-single-tags__label {
  background: var(--adr-text);
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.adr-single-tags a {
  background: rgba(52,47,42,.06);
  color: var(--adr-muted);
  text-decoration: none;
}
.adr-single-tags a:hover {
  background: var(--adr-gold);
  color: #fff;
}
.adr-author-box,
.adr-post-nav,
.adr-comments {
  max-width: 820px;
  margin-top: 52px;
}
.adr-author-box {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(52,47,42,.045);
  border: 1px solid rgba(52,47,42,.08);
}
.adr-author-box__avatar img {
  border-radius: 50%;
}
.adr-author-box h2 {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--adr-text);
}
.adr-author-box p {
  margin: 0;
  color: var(--adr-muted);
  line-height: 1.65;
}
.adr-post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.adr-post-nav a {
  display: block;
  min-height: 118px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(52,47,42,.1);
  color: var(--adr-text);
  text-decoration: none;
}
.adr-post-nav a span {
  display: block;
  margin-bottom: 8px;
  font-family: 'Mulish', Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--adr-muted);
}
.adr-post-nav__next { text-align: right; }
.adr-comments {
  padding-top: 10px;
}
.adr-comments__title,
.adr-comments__reply-title {
  margin: 0 0 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3vw, 46px);
  color: var(--adr-text);
}
.adr-comments__list {
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}
.adr-comments__list .comment {
  margin: 0 0 18px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(52,47,42,.04);
  border: 1px solid rgba(52,47,42,.08);
}
.adr-comments__list .children {
  margin-top: 18px;
  padding-left: 24px;
  list-style: none;
}
.adr-comments .comment-author {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.adr-comments .comment-author img {
  border-radius: 50%;
}
.adr-comments .comment-metadata,
.adr-comments .reply {
  font-size: 13px;
  color: var(--adr-muted);
}
.adr-comments .comment-content {
  color: var(--adr-text);
  line-height: 1.7;
}
.adr-comments__form {
  padding: 30px;
  border-radius: 22px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(52,47,42,.1);
}
.adr-comments__form label {
  display: block;
  margin-bottom: 8px;
  color: var(--adr-text);
  font-weight: 600;
}
.adr-comments__form textarea,
.adr-comments__form input[type="text"],
.adr-comments__form input[type="email"],
.adr-comments__form input[type="url"] {
  width: 100%;
  border: 1px solid rgba(52,47,42,.16);
  border-radius: 14px;
  padding: 13px 15px;
  background: #fff;
  color: var(--adr-text);
}
.adr-comments__form input[type="submit"] {
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  background: var(--adr-olive);
  color: #fff;
  cursor: pointer;
}
@media (min-width: 1101px) {
  .adr-single-sidebar {
    top: clamp(240px, 17vw, 320px);
  }
}
@media (max-width: 1100px) {
  .adr-single-layout--sidebar-left,
  .adr-single-layout--sidebar-right,
  .adr-single-layout--no-sidebar {
    grid-template-columns: 1fr;
  }
  .adr-single-layout--sidebar-left .adr-single-sidebar,
  .adr-single-layout--sidebar-left .adr-single-article {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 767px) {
  .single-post .adr-single,
  .adr-single {
    padding-top: 158px;
  }
  .adr-post-nav {
    grid-template-columns: 1fr;
  }
  .adr-post-nav__next { text-align: left; }
  .adr-author-box {
    grid-template-columns: 1fr;
  }
  .adr-comments__form {
    padding: 22px;
  }
}

/* Ae do Rode 3.2.11 - fallback header alignment and dropdown menu behavior */
.adr-site-header__inner {
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr) !important;
  align-items: center;
}
.adr-site-header__nav { justify-self: start; }
.adr-site-header__logo { justify-self: center; }
.adr-site-header .adr-menu-dots { justify-self: end; }
.adr-site-header .adr-mobile-menu-panel {
  width: min(calc(100% - 36px), calc(var(--adr-container) + 40px));
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 48px rgba(0,0,0,.22);
}
.adr-site-header .adr-mobile-menu-panel[hidden] { display: none !important; }
.adr-site-header .adr-mobile-menu-panel:not([hidden]) { animation: adrHeaderMenuDrop .24s ease both; }
@media (max-width: 1180px) {
  .adr-site-header__inner { grid-template-columns: minmax(0,1fr) auto minmax(0,1fr) !important; }
  .adr-site-header__nav { display: none; }
  .adr-site-header__logo { justify-self: center; }
  .adr-site-header__inner::before {
    content: '';
    display: block;
    width: 52px;
    height: 1px;
    justify-self: start;
  }
}
@keyframes adrHeaderMenuDrop {
  from { opacity: 0; transform: translateY(-10px) scaleY(.98); }
  to { opacity: 1; transform: translateY(0) scaleY(1); }
}


/* Ae do Rode 3.2.12 - fallback header: margine superiore e allineamento responsive a tre colonne */
:root { --adr-header-top-gap: clamp(10px, 1.15vw, 18px); }
.adr-site-header {
  top: var(--adr-header-top-gap) !important;
  inset: var(--adr-header-top-gap) 0 auto 0 !important;
  overflow: visible !important;
}
@media (max-width: 1180px) {
  .adr-site-header__inner {
    grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) !important;
    align-items: center !important;
  }
  .adr-site-header__inner::before { content: none !important; display: none !important; }
  .adr-site-header__nav { display: none !important; }
  .adr-site-header__logo {
    grid-column: 2 !important;
    justify-self: center !important;
    width: 100%;
    text-align: center;
  }
  .adr-site-header .adr-menu-dots {
    grid-column: 1 !important;
    justify-self: start !important;
  }
}
@media (max-width: 767px) {
  :root { --adr-header-top-gap: 10px; }
  .adr-site-header__inner { width: min(100% - 28px, 1000px) !important; }
}
