:root {
  --red: #b0141d;
  --red-dark: #870d15;
  --dark: #151312;
  --dark-soft: #262220;
  --light: #fffdf8;
  --muted: #f1eee8;
  --muted-strong: #ddd7ce;
  --text: #25211f;
  --text-soft: #625c56;
  --white: #ffffff;
  --focus: #f4c430;
  --hero-overlay-strength: 0.68;
  --shadow: 0 24px 70px rgba(21, 19, 18, 0.18);
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--light);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.has-lightbox-open {
  overflow: hidden;
}

body.has-mobile-menu-open {
  overflow: hidden;
}

main {
  position: relative;
  overflow: hidden;
  --thread-progress: 0%;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--dark);
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--light);
  border-bottom: 1px solid rgba(21, 19, 18, 0.12);
}

.utility-bar {
  color: rgba(255, 255, 255, 0.78);
  background: var(--dark);
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  max-width: 1304px;
  margin: 0 auto;
  padding: 0 1rem;
  gap: 1rem;
}

.utility-inner p {
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.utility-inner nav {
  display: none;
  align-items: center;
  gap: 1.6rem;
}

.fedvvfvol-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.utility-inner .fedvvfvol-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.utility-inner a {
  min-height: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.utility-inner a:hover,
.utility-inner a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.32rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  max-width: 1304px;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: block;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--red);
  border-radius: 2px;
}

.brand-mark img {
  display: block;
  width: auto;
  height: 100%;
  max-width: min(34vw, 180px);
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0.08rem;
  width: var(--fedvvfvol-brand-title-max-width, 340px);
  max-width: min(var(--fedvvfvol-brand-title-max-width, 340px), calc(100vw - 260px));
  min-width: 0;
}

.brand-text strong,
.brand-text span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-text strong {
  color: var(--dark);
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: var(--fedvvfvol-brand-title-size, 1rem);
  font-weight: 700;
  line-height: 0.98;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.brand-text span {
  color: #5e5a54;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.42em;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 719px) {
  .header-inner {
    gap: 0.5rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-text {
    display: grid;
    width: 250px;
    max-width: calc(100vw - 234px);
  }

  .brand-text strong {
    font-size: min(var(--fedvvfvol-brand-title-size, 1rem), 0.75rem);
    line-height: 1.04;
  }

  .header-inner .header-actions {
    gap: 0.15rem;
  }
}

.primary-nav {
  position: fixed;
  inset: 120px 0 auto 0;
  display: none;
  height: auto;
  max-height: calc(100vh - 120px);
  max-height: calc(100dvh - 120px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 1rem;
  background: var(--light);
  border-bottom: 1px solid rgba(21, 19, 18, 0.1);
  box-shadow: var(--shadow);
}

.primary-nav.is-open {
  display: grid;
  align-content: start;
}

.primary-menu,
.primary-menu .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.primary-menu .menu-item {
  position: relative;
}

.primary-menu .menu-item-has-children {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: start;
}

.primary-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  position: relative;
  min-height: 48px;
  padding: 0.8rem 0.25rem;
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(21, 19, 18, 0.08);
  white-space: nowrap;
}

.primary-nav .sub-menu {
  display: none;
  grid-column: 1 / -1;
  margin-left: 1rem;
  border-left: 2px solid rgba(176, 20, 29, 0.2);
}

.primary-nav .menu-item.is-submenu-open > .sub-menu {
  display: grid;
}

.primary-nav .sub-menu a {
  min-height: 42px;
  padding-left: 0.85rem;
  color: #4d4843;
  font-size: 0.88rem;
  white-space: normal;
}

.mobile-utility-menu {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(21, 19, 18, 0.12);
}

.mobile-utility-menu p {
  margin: 0;
  color: #6f6a64;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-utility-links {
  display: grid;
  gap: 0;
}

.mobile-utility-links .fedvvfvol-menu {
  display: grid;
  gap: 0;
}

.mobile-utility-links a {
  color: #4d4843;
  font-size: 0.88rem;
  font-weight: 700;
}

.mobile-area-icon {
  text-decoration: none;
}

.mobile-area-icon i {
  font-size: 1rem;
}

.primary-submenu-toggle {
  display: inline-grid;
  width: 44px;
  min-height: 48px;
  place-items: center;
  color: var(--dark);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(21, 19, 18, 0.08);
}

.primary-submenu-toggle::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.primary-submenu-toggle[aria-expanded="true"]::before {
  transform: rotate(225deg) translate(-2px, -2px);
}

.primary-nav .menu-item-has-children > a::before {
  content: none;
  width: 0.38rem;
  height: 0.38rem;
  margin-left: 0.25rem;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  order: 2;
  transform: rotate(45deg) translateY(-2px);
}

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

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0.25rem;
  bottom: 0.35rem;
  left: 0.25rem;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.primary-nav .sub-menu a::after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-button,
.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--dark);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(21, 19, 18, 0.08);
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.menu-toggle {
  gap: 3px;
}

.menu-toggle span[aria-hidden="true"] {
  width: 19px;
  height: 2px;
  background: currentColor;
}

.area-button,
.primary-cta,
.site-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 6px;
  font-weight: 750;
  text-decoration: none;
}

.primary-cta {
  align-self: flex-start;
}

.hero .primary-cta {
  width: 100%;
  max-width: 340px;
}

.area-button {
  display: none;
  gap: 0.65rem;
  min-height: 45px;
  padding: 0.48rem 0.5rem 0.48rem 1.05rem;
  background: var(--red);
  border-color: var(--red);
  border-radius: 999px;
  font-size: 0.84rem;
}

.area-button:hover,
.area-button:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.area-button svg {
  width: 34px;
  height: 34px;
  padding: 0.42rem;
  color: var(--red);
  background: var(--white);
  border-radius: 999px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-search {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1rem 1rem;
}

.site-search label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.search-row {
  display: flex;
  gap: 0.5rem;
}

.search-row input {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--muted-strong);
  border-radius: 6px;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(520px, calc(100vh - 168px), 650px);
  overflow: hidden;
  color: var(--white);
  background: #080807;
}

.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image,
.hero-overlay,
.volunteer img,
.volunteer-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image,
.volunteer img {
  object-fit: cover;
}

.hero-image {
  object-position: 58% center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1800ms ease, transform 9000ms linear;
}

.hero-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.hero-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: #cf1823;
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-progress-fill.is-running {
  animation-name: hero-progress-fill;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes hero-progress-fill {
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-progress {
    display: none;
  }
}

.hero-image:nth-child(2) {
  object-position: 50% center;
}

.hero-image:nth-child(3) {
  object-position: 52% center;
}

.hero-image:nth-child(4),
.hero-image:nth-child(5) {
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgb(0 0 0 / calc(var(--hero-overlay-strength) * 1.1)),
      rgb(0 0 0 / calc(var(--hero-overlay-strength) * 0.44)) 45%,
      rgb(0 0 0 / calc(var(--hero-overlay-strength) * 0.91))
    ),
    linear-gradient(
      0deg,
      rgb(8 8 7 / calc(var(--hero-overlay-strength) * 1.1)) 0%,
      rgb(8 8 7 / calc(var(--hero-overlay-strength) * 1.06)) 20%,
      rgb(8 8 7 / calc(var(--hero-overlay-strength) * 0.08)) 58%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 2rem;
  min-height: calc(clamp(520px, calc(100vh - 168px), 650px) - 132px);
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 5rem 1rem 3rem;
}

.eyebrow,
.section-kicker,
.meta {
  margin: 0 0 0.65rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.volunteer .section-kicker {
  color: #ffd6d6;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.05rem, 6vw, 4.65rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 700;
}

.hero-copy p {
  max-width: 610px;
  margin: 1.55rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  width: fit-content;
  margin-top: 1.6rem;
  min-height: 54px;
  padding: 0.55rem 0.62rem 0.55rem 1.35rem;
  color: #11100f;
  background: rgba(255, 253, 248, 0.95);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.hero-cta svg {
  width: 34px;
  height: 34px;
  padding: 0.55rem;
  color: var(--white);
  background: #11100f;
  border-radius: 999px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  color: var(--white);
  background: #11100f;
  text-decoration: none;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
}

.hero-cta:hover svg,
.hero-cta:focus-visible svg {
  color: #11100f;
  background: var(--white);
  transform: translateX(2px);
}

.hero-cta:focus-visible {
  outline: 3px solid var(--focus, #f4c430);
  outline-offset: 3px;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.35rem 1rem 2rem;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats div {
  padding: 0.85rem 0;
}

.hero-stats dt {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
}

.hero-stats dd {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.page-thread {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(24px, 5.4vw, 92px);
  z-index: 4;
  width: clamp(52px, 6vw, 92px);
  pointer-events: none;
}

/* Filo rosso: elemento identitario, stabile e non “progress bar”. */
.page-thread::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(176, 20, 29, 0.98),
    rgba(176, 20, 29, 0.92) 82%,
    rgba(176, 20, 29, 0)
  );
}

.thread-curve,
.thread-dot,
.thread-cross {
  position: absolute;
  color: var(--red);
}

.thread-curve {
  left: 0;
  width: clamp(38px, 5.5vw, 74px);
  height: clamp(78px, 7vw, 118px);
  border: 2px solid currentColor;
  opacity: 0.88;
}

.thread-curve-one {
  top: var(--thread-quick, 650px);
  border-right: 0;
  border-bottom: 0;
  border-radius: 48px 0 0 0;
  transform: translateY(-52%);
}

.thread-curve-two {
  top: var(--thread-map, 1100px);
  border-right: 0;
  border-top: 0;
  border-radius: 0 0 0 48px;
  transform: translateY(-32%);
}

.thread-curve-three {
  top: var(--thread-news, 1600px);
  border-right: 0;
  border-bottom: 0;
  border-radius: 48px 0 0 0;
  transform: translateY(-45%);
}

.thread-dot {
  left: -5px;
  width: 12px;
  height: 12px;
  background: var(--light);
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(176, 20, 29, 0.08);
}

.thread-dot-news {
  top: var(--thread-news, 1600px);
}

.thread-dot-events {
  top: var(--thread-events, 2150px);
}

.thread-cross {
  top: var(--thread-events, 2150px);
  left: 0;
  width: min(1120px, calc(100vw - 7rem));
  height: 2px;
  background: currentColor;
  transform: translateY(6px);
}

.thread-cross::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  width: 12px;
  height: 12px;
  background: var(--light);
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(176, 20, 29, 0.08);
}

@media (max-width: 719px) {
  .page-thread {
    left: 18px;
    width: 34px;
  }

  .thread-curve {
    width: 30px;
    height: 70px;
  }

  .thread-cross {
    display: none;
  }
}

.network-section {
  position: relative;
  z-index: 1;
  max-width: none !important;
  padding: 0 !important;
  scroll-margin-top: 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 32% 12%, rgba(21, 19, 18, 0.06), transparent 24rem),
    var(--light);
}

.network-inner {
  position: relative;
  z-index: 5;
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.8rem 1rem 3.4rem;
}

.network-thread {
  display: none;
}

.network-thread::before,
.network-thread::after {
  display: none;
}

.network-thread::before {
  top: 0;
  border-bottom: 0;
  border-radius: 34px 0 0 0;
  transform: translateX(0);
}

.network-thread::after {
  top: 15rem;
  border-top: 0;
  border-radius: 0 0 0 34px;
}

.quick-header {
  padding-left: 1.7rem;
}

.quick-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
  padding-left: 1.7rem;
}

.quick-photo-card {
  position: relative;
  min-height: 172px;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(21, 19, 18, 0.12);
}

.quick-photo-card img,
.quick-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.quick-photo-card img {
  object-fit: cover;
  transition: transform 220ms ease;
}

.quick-card-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent);
}

.quick-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: inherit;
  padding: 1rem;
}

.quick-card-content svg {
  width: 30px;
  height: 30px;
  margin-bottom: 0.7rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.quick-card-content strong {
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

.quick-card-content small {
  margin-top: 0.35rem;
  font-size: 1rem;
  line-height: 1;
}

.quick-photo-card:hover img,
.quick-photo-card:focus-visible img {
  transform: scale(1.04);
}

.network-map-row {
  display: grid;
  gap: 2rem;
  margin-top: 4.5rem;
  padding-left: 1.7rem;
}

.network-copy h2 {
  margin: 0;
  color: #161312;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.network-copy p {
  max-width: 390px;
  margin: 1.2rem 0 1.4rem;
  color: #37322e;
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.65;
}

.outline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 48px;
  padding: 0.55rem 0.6rem 0.55rem 1rem;
  color: var(--red);
  background: transparent;
  border: 1px solid rgba(176, 20, 29, 0.55);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.outline-cta:hover,
.outline-cta:focus-visible {
  color: var(--white);
  background: var(--red);
  text-decoration: none;
}

.outline-cta-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  color: var(--white);
  border-radius: 50%;
  background: var(--red);
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.outline-cta-icon::before {
  content: "\2192";
  display: block;
  transform: translateY(-1px);
}

.outline-cta:hover .outline-cta-icon,
.outline-cta:focus-visible .outline-cta-icon {
  color: var(--red);
  background: var(--white);
  transform: translateX(2px);
}

.trentino-network-map {
  position: relative;
  min-width: 0;
}

.trentino-network-map img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(21, 19, 18, 0.14));
  user-select: none;
}

.map-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  width: 22px;
  height: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.map-hotspot::before {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: inherit;
  box-shadow: 0 0 0 2px rgba(176, 20, 29, 0.22), 0 7px 14px rgba(21, 19, 18, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.map-hotspot:hover::before,
.map-hotspot:focus-visible::before,
.map-hotspot.is-open::before {
  transform: scale(1.45);
  box-shadow: 0 0 0 7px rgba(176, 20, 29, 0.14);
}

.map-label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  min-width: max-content;
  padding: 0.18rem 0.35rem;
  color: #1f1b18;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(21, 19, 18, 0.08);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(21, 19, 18, 0.08);
  font-size: clamp(0.58rem, 1vw, 0.74rem);
  font-weight: 850;
  line-height: 1;
  pointer-events: none;
  transform: translate(var(--label-x), var(--label-y));
  white-space: nowrap;
}

.map-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.75rem);
  display: grid;
  min-width: 190px;
  gap: 0.25rem;
  padding: 0.75rem 0.85rem;
  color: var(--white);
  background: #151312;
  border-radius: 6px;
  box-shadow: 0 18px 34px rgba(21, 19, 18, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.35rem);
  transition: opacity 160ms ease, transform 160ms ease;
}

.map-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 10px;
  height: 10px;
  background: inherit;
  transform: translate(-50%, -50%) rotate(45deg);
}

.map-tooltip strong {
  font-size: 0.9rem;
  line-height: 1.15;
}

.map-tooltip span,
.map-tooltip em {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-style: normal;
}

.map-hotspot:hover .map-tooltip,
.map-hotspot:focus-visible .map-tooltip,
.map-hotspot:focus .map-tooltip,
.map-hotspot.is-open .map-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.updates-section {
  position: relative;
  z-index: 1;
  max-width: none !important;
  padding: 0 !important;
  scroll-margin-top: 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 45% 0%, rgba(21, 19, 18, 0.05), transparent 24rem),
    var(--light);
}

.updates-inner {
  position: relative;
  z-index: 5;
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.2rem 1rem 2.6rem;
}

.updates-thread {
  display: none;
}

.updates-thread::before,
.updates-thread::after {
  display: none;
}

.updates-thread::before {
  top: 0;
  border-bottom: 0;
  border-radius: 34px 0 0 0;
}

.updates-thread::after {
  top: 23rem;
  border-top: 0;
  border-radius: 0 0 0 34px;
}

.updates-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-left: 1.7rem;
}

.updates-heading-copy {
  min-width: 0;
}

.updates-heading-copy .section-kicker {
  margin-bottom: 0.45rem;
}

.updates-title {
  margin: 0;
  color: #161312;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.updates-head > .small-red-link {
  flex: 0 0 auto;
  margin-top: 0.1rem;
}

@media (max-width: 720px) {
  .updates-head {
    flex-wrap: wrap;
  }

  .updates-head > .small-red-link {
    margin-top: 0.4rem;
  }
}

.small-red-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 40px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.small-red-link:hover,
.small-red-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.28rem;
}

.latest-grid {
  display: grid;
  gap: 1.6rem;
  margin-top: 1rem;
  padding-left: 1.7rem;
}

.latest-feature {
  display: grid;
  gap: 0.95rem;
}

.latest-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.latest-feature-image-link {
  width: 100%;
}

.latest-feature img {
  width: 100%;
  height: clamp(220px, 30vw, 330px);
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(21, 19, 18, 0.12);
}

.latest-feature-copy {
  align-self: center;
}

.news-badge {
  display: inline-flex;
  margin: 0 0 0.55rem;
  padding: 0.22rem 0.45rem;
  color: var(--white);
  background: var(--red);
  border-radius: 3px;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.news-badge-small {
  margin-bottom: 0.28rem;
  padding: 0.16rem 0.36rem;
  font-size: 0.58rem;
}

.latest-feature time,
.latest-list time {
  display: block;
  color: #817970;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.latest-feature h2,
.latest-feature h3 {
  margin: 0.35rem 0 0.8rem;
  color: #161312;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.latest-feature h2 a,
.latest-feature h3 a {
  color: #161312;
  text-decoration: none;
}

.latest-feature h2 a:hover,
.latest-feature h2 a:focus-visible,
.latest-feature h3 a:hover,
.latest-feature h3 a:focus-visible {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.latest-feature h2 a:focus-visible,
.latest-feature h3 a:focus-visible {
  border-radius: 2px;
  outline: 3px solid var(--focus, #f4c430);
  outline-offset: 3px;
}

.latest-feature p:last-child {
  margin: 0;
  color: #403a35;
  font-size: 0.95rem;
  font-weight: 550;
  line-height: 1.5;
}

.latest-list {
  display: grid;
  border-top: 1px solid rgba(21, 19, 18, 0.12);
}

.latest-list article {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(21, 19, 18, 0.12);
}

.latest-list img {
  width: 108px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 5px;
}

.latest-list-image-link {
  width: 108px;
}

.latest-list h3 {
  margin: 0.25rem 0 0;
  color: #161312;
  font-size: 0.98rem;
  line-height: 1.25;
}

.latest-list h3 a {
  color: #161312;
  text-decoration: none;
}

.latest-list h3 a:hover,
.latest-list h3 a:focus-visible {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.latest-list h3 a:focus-visible {
  border-radius: 2px;
  outline: 3px solid var(--focus, #f4c430);
  outline-offset: 3px;
}

.home-featured-news {
  background: var(--light);
}

.home-featured-news-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.8rem 1rem 1.15rem;
}

.home-featured-news-card {
  display: grid;
  gap: 1.4rem;
  margin-top: 0.9rem;
  padding: 1.4rem;
  background: #ffffff;
  border: 1px solid rgba(21, 19, 18, 0.14);
  border-left: 4px solid var(--red);
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(21, 19, 18, 0.06);
}

.home-featured-news-copy time {
  display: block;
  margin-bottom: 0.55rem;
  color: #756f67;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-featured-news-pretitle {
  margin: 0 0 0.4rem;
  color: #625c56;
  font-size: 0.95rem;
  font-weight: 750;
}

.home-featured-news h2 {
  max-width: 760px;
  margin: 0;
  color: #1f1b18;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.home-featured-news h2 a {
  color: inherit;
  text-decoration: none;
}

.home-featured-news h2 a:hover,
.home-featured-news h2 a:focus-visible {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.home-featured-news-eyebrow,
.home-featured-news-copy > p:last-of-type {
  max-width: 760px;
  margin: 0.85rem 0 0;
  color: #4f4943;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.5;
}

.home-featured-news-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  color: var(--red-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.home-featured-news-cta:hover,
.home-featured-news-cta:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.24rem;
}

.home-featured-news-image img {
  width: 100%;
  height: clamp(180px, 28vw, 260px);
  object-fit: cover;
  border-radius: 3px;
}

.events-strip {
  position: relative;
  margin-top: 2.4rem;
}

.events-shortcode {
  background: var(--light);
}

.events-shortcode-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1rem 3.6rem;
}

.events-shortcode-head {
  margin-bottom: 0.2rem;
}

.events-shortcode .events-list {
  margin-top: 1.2rem;
}

.event-rail {
  position: relative;
  display: grid;
  gap: 1.5rem;
  margin: 1.4rem 0 0;
  padding: 0 0 0 1.7rem;
  list-style: none;
}

.event-rail-shortcode {
  margin-top: 1.2rem;
  margin-bottom: 0.3rem;
}

.event-rail::before {
  content: "";
  position: absolute;
  top: 2.1rem;
  right: 0;
  left: 1.7rem;
  height: 2px;
  background: var(--red);
}

.event-rail::after {
  content: "";
  position: absolute;
  top: 1.9rem;
  left: calc(1.7rem - 5px);
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 999px;
}

.event-rail li {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.event-rail time {
  position: relative;
  z-index: 1;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  align-content: center;
  color: #161312;
  background: var(--light);
  border: 2px solid var(--red);
  border-radius: 999px;
}

.event-rail time::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 20px;
  background: var(--red);
  transform: translateX(-50%);
}

.event-rail time strong {
  font-size: 1.4rem;
  line-height: 1;
}

.event-rail time span {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 850;
  text-transform: uppercase;
}

.event-rail h3 {
  max-width: 160px;
  margin: 1.75rem 0 0.25rem;
  color: #161312;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.event-rail h3 a {
  color: inherit;
  text-decoration: none;
}

.event-rail h3 a:hover,
.event-rail h3 a:focus-visible {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.event-rail p {
  max-width: 170px;
  margin: 0;
  color: #655f58;
  font-size: 0.75rem;
  line-height: 1.3;
}

.event-rail .event-rail-organizer {
  margin-top: 0.15rem;
  color: #49443f;
  font-weight: 700;
}

section:not(.hero):not(.volunteer):not(.page-feedback) {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.8rem 1rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.7rem;
}

.section-head h2,
.territory h2,
.volunteer h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.quick-grid {
  display: grid;
  gap: 0.7rem;
}

.quick-link {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  min-height: 78px;
  gap: 0.9rem;
  padding: 0.85rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid rgba(21, 19, 18, 0.12);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quick-link:hover {
  transform: translateY(-2px);
  border-color: rgba(176, 20, 29, 0.38);
  box-shadow: 0 12px 34px rgba(21, 19, 18, 0.1);
}

.quick-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--red);
  background: #fff3f3;
  border-radius: 6px;
}

.quick-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.quick-link strong,
.quick-link small {
  display: block;
}

.quick-link small {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.quick-link-red {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.quick-link-red .quick-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.quick-link-red small {
  color: rgba(255, 255, 255, 0.84);
}

.red-thread {
  position: relative;
}

.red-thread::before {
  display: none;
}

.territory {
  display: grid;
  gap: 2rem;
  background:
    linear-gradient(90deg, rgba(176, 20, 29, 0.05), transparent 45%),
    var(--light);
}

.territory-copy {
  padding-left: 1.3rem;
}

.territory-copy p:not(.section-kicker) {
  max-width: 620px;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.text-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--red-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-cta::after {
  content: "";
  width: 2.2rem;
  height: 2px;
  margin-left: 0.65rem;
  background: currentColor;
}

.map-panel {
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(21, 19, 18, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 55px rgba(21, 19, 18, 0.08);
}

.trentino-map {
  width: min(100%, 480px);
  margin: 0 auto;
}

.map-shape {
  fill: #f6f2ea;
  stroke: #cbc4b9;
  stroke-width: 3;
}

.map-thread {
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.map-nodes circle {
  fill: var(--white);
  stroke: var(--red);
  stroke-width: 5;
}

.map-caption {
  display: grid;
  gap: 0.15rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(21, 19, 18, 0.1);
}

.map-caption span {
  color: var(--text-soft);
}

.section-head-row {
  display: grid;
  gap: 1rem;
  max-width: none;
}

.news-layout {
  display: grid;
  gap: 1.5rem;
}

.featured-news {
  display: grid;
  gap: 1rem;
}

.featured-news img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.featured-news h3,
.news-list h3,
.timeline h3 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.15;
}

.featured-news h3 a,
.news-list h3 a {
  text-decoration: none;
}

.featured-news p:last-child,
.news-list time,
.timeline p {
  color: var(--text-soft);
}

.news-list {
  display: grid;
  border-top: 1px solid rgba(21, 19, 18, 0.14);
}

.news-list article {
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(21, 19, 18, 0.14);
}

.news-list .meta {
  margin-bottom: 0.4rem;
}

.events {
  background: var(--muted);
}

.events .section-head,
.events .timeline {
  position: relative;
  z-index: 1;
  padding-left: 1.3rem;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(21, 19, 18, 0.12);
}

.timeline time {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  align-content: center;
  color: var(--red);
  background: var(--white);
  border: 1px solid rgba(176, 20, 29, 0.25);
  border-radius: 8px;
}

.timeline time strong {
  font-size: 1.65rem;
  line-height: 1;
}

.timeline time span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline p {
  margin: 0.3rem 0 0;
}

.volunteer {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.volunteer img {
  object-position: center;
}

.volunteer-shade {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.5) 48%, rgba(10, 10, 10, 0.18)),
    linear-gradient(0deg, rgba(10, 10, 10, 0.48), transparent);
}

.volunteer-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 510px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1rem;
}

.volunteer h2 {
  max-width: 720px;
  color: var(--white);
}

.volunteer p:not(.section-kicker) {
  max-width: 520px;
  margin: 1rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.document-grid {
  display: grid;
  border-top: 1px solid rgba(21, 19, 18, 0.16);
}

.document-grid a {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 72px;
  gap: 1rem;
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid rgba(21, 19, 18, 0.16);
}

.document-grid span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 850;
}

.site-footer {
  color: rgba(255, 255, 255, 0.88);
  background: var(--dark);
}

.footer-inner {
  display: grid;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1rem;
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-mark {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.brand-footer .brand-text span,
.footer-brand p,
.site-footer address {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
  max-width: 360px;
}

.footer-links {
  display: grid;
  gap: 1.5rem;
}

.footer-links h2 {
  margin: 0 0 0.7rem;
  color: var(--white);
  font-size: 1rem;
}

.footer-links a {
  display: table;
  min-height: 32px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer address {
  font-style: normal;
}

@media (min-width: 720px) {
  .quick-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .network-map-row {
    grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
    align-items: center;
  }

  .latest-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: start;
  }

  .event-rail {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .quick-grid,
  .document-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head-row {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .news-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    align-items: start;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1120px) {
  .utility-inner nav {
    display: flex;
  }

  .area-button {
    display: inline-flex;
  }

  .mobile-area-icon {
    display: none;
  }

  .utility-inner {
    max-width: none;
    padding-inline: 3.3rem;
  }

  .header-inner {
    min-height: 80px;
    max-width: none;
    padding: 1rem 3.3rem;
  }

  .brand {
    gap: 0.78rem;
  }


  .brand-text strong {
    font-size: var(--fedvvfvol-brand-title-size, 1rem);
  }

  .brand-text span {
    font-size: 0.55rem;
    letter-spacing: 0.42em;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    height: auto;
    max-height: none;
    overflow: visible;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .mobile-utility-menu {
    display: none;
  }

  .primary-menu {
    display: flex;
    align-items: center;
    gap: 1.65rem;
  }

  .primary-menu .menu-item-has-children {
    display: block;
  }

  body.has-mobile-menu-open {
    overflow: auto;
  }

  .primary-nav a {
    min-height: 44px;
    padding: 0.8rem 0;
    color: var(--text-soft);
    border: 0;
    font-size: 0.88rem;
    font-weight: 500;
  }

  .primary-nav .menu-item-has-children > a::before {
    content: "";
    width: 0.34rem;
    height: 0.34rem;
    margin-left: 0.3rem;
  }

  .primary-submenu-toggle {
    display: none;
  }

  .primary-nav a:hover {
    color: var(--dark);
  }

  .primary-nav .sub-menu {
    position: absolute;
    top: calc(100% + 0.3rem);
    left: -1rem;
    z-index: 40;
    display: grid;
    grid-template-columns: minmax(240px, 1fr);
    gap: 0;
    min-width: min(360px, calc(100vw - 2rem));
    max-width: 420px;
    margin: 0;
    padding: 1rem;
    background: var(--white);
    border: 1px solid rgba(21, 19, 18, 0.1);
    border-radius: 4px;
    box-shadow: 0 22px 56px rgba(21, 19, 18, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .primary-nav .menu-item:hover > .sub-menu,
  .primary-nav .menu-item:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav .sub-menu .sub-menu {
    position: static;
    grid-column: 1 / -1;
    display: grid;
    min-width: 0;
    padding: 0.2rem 0 0 1rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .primary-nav .sub-menu a {
    min-height: 42px;
    padding: 0.55rem 0.75rem;
    color: #1f2f46;
    border: 0;
    border-radius: 3px;
    font-size: 0.92rem;
    white-space: normal;
  }

  .primary-nav .sub-menu a:hover,
  .primary-nav .sub-menu a:focus-visible {
    color: var(--red-dark);
    background: rgba(176, 20, 29, 0.06);
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    padding-inline: 1.5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    padding-inline: 1.5rem;
  }

  .network-inner {
    padding: 3rem 1.5rem 3.8rem;
  }

  .quick-header,
  .quick-photo-grid,
  .network-map-row,
  .updates-head,
  .latest-grid,
  .event-rail {
    padding-left: 3rem;
  }

  .updates-inner {
    padding: 2.4rem 1.5rem 2.9rem;
  }

  .events-shortcode-inner {
    padding: 2.4rem 1.5rem 4.2rem;
  }

  .home-featured-news-inner {
    padding: 2rem 1.5rem 1.3rem;
  }

  .home-featured-news-card {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    padding: 1.6rem;
  }

  .latest-feature img {
    height: 330px;
  }

  .latest-list article {
    grid-template-columns: 130px 1fr;
  }

  .latest-list img {
    width: 130px;
  }

  .latest-list-image-link {
    width: 130px;
  }

  .event-rail::before {
    left: 3rem;
  }

  .event-rail::after {
    left: calc(3rem - 5px);
  }

  .quick-photo-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.95rem;
  }

  .quick-photo-card {
    min-height: 214px;
  }

  .network-map-row {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 3rem;
    margin-top: 3rem;
  }

  section:not(.hero):not(.volunteer):not(.page-feedback) {
    padding: 3.8rem 1.5rem;
  }

  .quick-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
  }

  .territory {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
  }

  .featured-news {
    gap: 1.35rem;
  }

  .featured-news img {
    aspect-ratio: 16 / 9;
  }

  .timeline li {
    grid-template-columns: 92px 1fr;
    padding: 1.35rem 0;
  }

  .document-grid {
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid rgba(21, 19, 18, 0.16);
  }

  .document-grid a {
    min-height: 110px;
    padding: 1rem;
    border-right: 1px solid rgba(21, 19, 18, 0.16);
  }

  .footer-inner {
    grid-template-columns: 0.8fr 1.2fr;
    padding: 4rem 1.5rem;
  }
}

/* Il brand resta leggibile senza sottrarre spazio al menu orizzontale. */
@media (min-width: 1120px) and (max-width: 1499px) {
  .header-inner {
    padding-inline: 1rem;
  }

  .brand-text {
    display: grid;
    width: 250px;
    max-width: 250px;
  }

  .brand-text strong {
    font-size: min(var(--fedvvfvol-brand-title-size, 1rem), 0.82rem);
    line-height: 1.02;
  }

  .primary-menu {
    gap: 1rem;
  }
}

@media (max-width: 380px) {
  .brand-text strong {
    max-width: 150px;
  }

  .brand-text span {
    max-width: 150px;
  }

  .hero h1 {
    font-size: 3rem;
  }
}

/* Filo rosso: versione pulita, senza curve decorative */
.thread-curve,
.thread-dot,
.thread-cross {
  display: none !important;
}

.page-thread {
  width: 2px;
}

.page-thread::before {
  width: 2px;
  background: var(--red) !important;
}

.custom-logo-link,
.custom-logo-link img {
  display: block;
  height: 100%;
}

.custom-logo-link img {
  width: auto;
  object-fit: contain;
}

.brand-text strong {
  white-space: normal;
}

/* Nelle pagine gli spazi delle sezioni sono gestiti dal contenuto o da SiteOrigin. */
.page .entry-content section {
  padding: 0 !important;
}

.home-builder-content {
  position: relative;
  z-index: 1;
}

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

.home-featured-news + .home-builder-content .builder-component:first-child .quick-links-inner,
.home-featured-news + .home-builder-content .builder-component:first-child .updates-inner,
.home-featured-news + .home-builder-content .builder-component:first-child .events-shortcode-inner,
.home-featured-news + .home-builder-content .builder-component:first-child .network-inner {
  padding-top: 0.8rem;
}

.home-builder-content .panel-grid,
.home-builder-content .panel-grid-cell .so-panel {
  margin-bottom: 0 !important;
}

.builder-component {
  max-width: none !important;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.home-builder-content .builder-component {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.home-builder-content .volunteer.builder-component {
  width: 100vw;
  width: 100dvw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

@supports (width: 100dvw) {
  .home-builder-content .volunteer.builder-component {
    margin-right: calc(50% - 50dvw);
    margin-left: calc(50% - 50dvw);
  }
}

.home-builder-content .builder-component > .quick-links-inner,
.home-builder-content .builder-component > .updates-inner,
.home-builder-content .builder-component > .events-shortcode-inner,
.home-builder-content .builder-component > .network-inner {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.home-builder-content .updates-head,
.home-builder-content .latest-grid,
.home-builder-content .event-rail,
.home-builder-content .network-map-row,
.home-builder-content .quick-header,
.home-builder-content .quick-photo-grid {
  padding-right: 0;
  padding-left: 0;
}

.home-builder-content .updates-inner {
  padding-top: 1.4rem;
  padding-bottom: 2.2rem;
}

.home-builder-content .network-inner {
  padding-top: 1.35rem;
  padding-bottom: 1.7rem;
}

.quick-links-section {
  background: var(--light);
}

.quick-links-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.1rem 1rem 1.6rem;
}

.quick-links-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.quick-link-card {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.95rem 1rem 0.9rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 19, 18, 0.14);
  border-radius: 4px;
  text-decoration: none;
  box-shadow: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.quick-link-card:hover,
.quick-link-card:focus-visible {
  background: var(--white);
  border-color: rgba(176, 20, 29, 0.45);
  transform: translateY(-1px);
}

.quick-link-icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 0.65rem;
  color: #8f161d;
}

.quick-link-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.quick-link-icon i {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  line-height: 1;
}

.quick-link-title {
  display: block;
  margin: 0;
  color: #1f1b18;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.25;
}

.quick-link-description {
  display: block;
  margin-top: 0.45rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.quick-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.65rem;
  color: #8f161d;
  font-size: 0.76rem;
  font-weight: 850;
}

.quick-link-cta span {
  font-size: 1.2rem;
  line-height: 1;
}

.page-tree-section {
  margin: 2rem 0;
}

.page-tree-head {
  margin-bottom: 1rem;
}

.page-tree-head h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.12;
}

.page-tree-grid {
  display: grid;
  gap: 1rem;
}

.page-tree-grid-1,
.page-tree-grid-2,
.page-tree-grid-3 {
  grid-template-columns: 1fr;
}

.page-tree-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(21, 19, 18, 0.12);
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(21, 19, 18, 0.06);
}

.page-tree-card h3 {
  margin: 0;
  color: #1f2f46;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.18;
}

.page-tree-card h3 a,
.page-tree-card li a {
  color: inherit;
  text-decoration: none;
}

.page-tree-card h3 a:hover,
.page-tree-card h3 a:focus-visible,
.page-tree-card li a:hover,
.page-tree-card li a:focus-visible {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-tree-card p {
  margin: 0.75rem 0 0;
  color: #403a35;
  font-size: 0.94rem;
  line-height: 1.55;
}

.page-tree-card ul {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.page-tree-card li {
  margin: 0;
  color: #4f5f73;
  font-size: 0.92rem;
  font-weight: 700;
}

.page-tree-card li::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.5rem;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}

.agid-content-box {
  position: relative;
  margin: 2rem 0;
  padding: 2.4rem clamp(1.25rem, 3vw, 2.25rem) 2rem;
  border: 1px solid var(--box-color, var(--red));
  border-radius: 6px;
  background: var(--white);
  color: #34465c;
}

.agid-content-box-title {
  position: absolute;
  top: 0;
  left: clamp(1.15rem, 3vw, 2rem);
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 2.4rem);
  gap: 0.65rem;
  padding: 0 0.9rem;
  background: var(--white);
  color: var(--box-color, var(--red));
  transform: translateY(-50%);
}

.agid-content-box-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.9rem;
}

.agid-content-box-title h2,
.agid-content-box-title h3,
.agid-content-box-title h4 {
  margin: 0;
  color: inherit;
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.agid-content-box-body {
  color: #465b73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.65;
}

.agid-content-box-body > :first-child {
  margin-top: 0;
}

.agid-content-box-body > :last-child {
  margin-bottom: 0;
}

.agid-content-box-body strong {
  color: var(--dark);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.agid-content-box-grid {
  display: grid;
  gap: 1.4rem;
  margin: 2rem 0;
}

.agid-content-box-grid .agid-content-box {
  margin: 0;
}

.page-tree-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1.1rem;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.primary-nav .menu-item,
.utility-inner .menu-item,
.footer-reference-column .menu-item {
  list-style: none;
}

.content-layout,
.siteorigin-home-area {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.2rem, 4vw, 3.8rem) 1rem;
}

.breadcrumb-nav {
  max-width: 1304px;
  margin: 0 auto;
  padding: 1.15rem 1rem 0;
  color: #6f6a64;
  font-size: 0.82rem;
  font-weight: 650;
}

.breadcrumb-nav ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb-nav li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.breadcrumb-nav li + li::before {
  content: "/";
  margin-right: 0.55rem;
  color: #b8b0a6;
  font-weight: 700;
}

.breadcrumb-nav a {
  color: #4d4843;
  text-decoration: none;
}

.breadcrumb-nav a:hover,
.breadcrumb-nav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

.breadcrumb-nav span[aria-current="page"] {
  color: #6f6a64;
}

.siteorigin-page {
  overflow: visible;
}

.breadcrumb-nav + .content-layout {
  padding-top: 1.25rem;
}

.breadcrumb-nav + .siteorigin-page {
  padding-top: 1.25rem;
}

.siteorigin-page .entry-content > * {
  max-width: none;
}

.page-layout {
  max-width: 920px;
}

.page-layout.has-section-nav {
  max-width: 1240px;
}

@media (max-width: 1119px) {
  .page-layout.has-section-nav .entry-content :is(.panel-grid, .panel-row-style):has(> .panel-grid-cell:nth-child(3) .fedvvfvol-icon-text-card) {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 12.75rem), 1fr));
    gap: 1rem !important;
    align-items: stretch;
  }

  .page-layout.has-section-nav .entry-content :is(.panel-grid, .panel-row-style):has(> .panel-grid-cell:nth-child(3) .fedvvfvol-icon-text-card) > .panel-grid-cell {
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
  }
}

.page-layout.page-layout-full-width {
  width: 100%;
  max-width: var(--max);
}

.page-layout-full-width .entry {
  min-width: 0;
}

.page-layout-full-width .entry-content > .panel-layout,
.page-layout-full-width .entry-content > .so-panel,
.page-layout-full-width .entry-content > .alignwide,
.page-layout-full-width .entry-content > table,
.page-layout-full-width .entry-content > .fedvvfvol-fb-archive,
.page-layout-full-width .entry-content > .fedvvfvol-posts-archive {
  width: 100%;
  max-width: none;
}

.section-side-nav {
  margin-bottom: 1.8rem;
  border: 1px solid rgba(21, 19, 18, 0.14);
  border-radius: 4px;
  background: var(--white);
}

.section-side-nav-toggle {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  color: #1f2f46;
  background: transparent;
  border: 0;
  font-weight: 850;
  text-align: left;
}

.section-side-nav-toggle span[aria-hidden="true"] {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.section-side-nav.is-open .section-side-nav-toggle span[aria-hidden="true"] {
  transform: rotate(225deg) translate(-2px, -2px);
}

.section-side-nav ul {
  display: none;
  gap: 0.25rem;
  margin: 0.45rem 0 0;
  padding: 0;
  list-style: none;
}

.section-side-nav.is-open ul {
  display: grid;
}

.section-side-nav li {
  margin: 0;
  position: relative;
}

.section-side-nav-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
}

.section-side-nav a {
  display: block;
  padding: 0.55rem 0.25rem 0.55rem 0.75rem;
  color: #1f2f46;
  border-left: 3px solid transparent;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.section-side-nav li > .section-side-nav-branch-toggle {
  position: absolute;
  top: 0;
  right: 0;
  min-height: 2.35rem;
}

.section-side-nav li.page_item_has_children > a {
  padding-right: 2.75rem;
}

.section-side-nav-branch-toggle {
  display: inline-flex;
  width: 2.35rem;
  align-items: center;
  justify-content: center;
  color: #4f5f73;
  background: transparent;
  border: 0;
  border-radius: 2px;
}

.section-side-nav-branch-toggle span[aria-hidden="true"] {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.section-side-nav-item.is-branch-open > .section-side-nav-row .section-side-nav-branch-toggle span[aria-hidden="true"],
.section-side-nav li.is-branch-open > .section-side-nav-branch-toggle span[aria-hidden="true"] {
  transform: rotate(225deg) translate(-2px, -2px);
}

.section-side-nav-branch-toggle:hover,
.section-side-nav-branch-toggle:focus-visible {
  color: var(--red-dark);
  background: rgba(176, 20, 29, 0.06);
}

.section-side-nav-root {
  display: none !important;
  margin: 0 0.75rem 0.3rem;
}

.section-side-nav.is-open .section-side-nav-root {
  display: block !important;
}

.section-side-nav .children {
  display: none !important;
  margin: 0.15rem 0 0.35rem 1rem;
}

.section-side-nav .is-branch-open > .children {
  display: grid !important;
}

.section-side-nav .children a {
  color: #4f5f73;
  font-size: 0.88rem;
  font-weight: 650;
}

.section-side-nav .children .children {
  margin-left: 0.75rem;
}

.section-side-nav .children .children a {
  font-size: 0.84rem;
  font-weight: 600;
}

.section-side-nav .fed-territorio-nav-corpo {
  gap: 0.65rem;
  margin-left: 0.75rem;
}

.fed-territorio-nav-corpo-current {
  padding: 0 0.75rem;
}

.section-side-nav .fed-territorio-nav-corpo-current > a {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.25rem;
  border: 0;
  border-bottom: 1px solid rgba(176, 20, 29, 0.2);
  background: transparent;
  font-weight: 850;
}

.fed-territorio-nav-corpo-current-marker {
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

.fed-territorio-nav-corpo-search-item {
  padding: 0.8rem 0.75rem;
  border-top: 1px solid rgba(21, 19, 18, 0.12);
  background: #f6f4f1;
}

.fed-territorio-nav-corpo-search {
  display: grid;
  gap: 0.5rem;
}

.fed-territorio-nav-corpo-search > label {
  color: #1f2f46;
  font-size: 0.85rem;
  font-weight: 850;
}

.fed-territorio-nav-corpo-search > input {
  width: 100%;
  min-height: 44px;
  padding: 0.55rem 0.65rem;
  color: var(--dark);
  border: 1px solid #706a64;
  border-radius: 3px;
  background: var(--white);
  font: inherit;
}

.fed-territorio-nav-corpo-search > input:focus {
  outline: 3px solid #f5c243;
  outline-offset: 2px;
}

.fed-territorio-nav-corpo-status {
  margin: 0;
  color: #625c56;
  font-size: 0.76rem;
  line-height: 1.4;
}

.fed-territorio-nav-corpo-status:empty {
  display: none;
}

.section-side-nav .fed-territorio-nav-corpo-results {
  display: grid;
  gap: 0;
  margin: 0;
}

.section-side-nav .fed-territorio-nav-corpo-results.is-showing-all,
.section-side-nav .fed-territorio-nav-corpo-results.is-scrollable {
  max-height: 20rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 1px solid rgba(21, 19, 18, 0.12);
  border-bottom: 1px solid rgba(21, 19, 18, 0.12);
  scrollbar-gutter: stable;
}

.section-side-nav .fed-territorio-nav-corpo-results[hidden] {
  display: none !important;
}

.fed-territorio-nav-corpo-results li + li {
  border-top: 1px solid rgba(21, 19, 18, 0.1);
}

.section-side-nav .fed-territorio-nav-corpo-results a {
  min-height: 42px;
  padding: 0.55rem 0.2rem;
  border-left: 0;
}

.section-side-nav .fed-territorio-nav-corpo-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  justify-self: start;
  padding: 0.35rem 0;
  color: var(--red-dark);
  border: 0;
  background: transparent;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.section-side-nav .fed-territorio-nav-corpo-all:hover,
.section-side-nav .fed-territorio-nav-corpo-all:focus-visible {
  text-decoration: underline;
}

.section-side-nav a:hover,
.section-side-nav a:focus-visible,
.section-side-nav .current_page_item > a,
.section-side-nav .current_page_item > .section-side-nav-row > a,
.section-side-nav .current_page_ancestor > a,
.section-side-nav .current_page_ancestor > .section-side-nav-row > a,
.section-side-nav-root.is-current {
  color: var(--red-dark);
  border-left-color: var(--red);
  background: rgba(176, 20, 29, 0.04);
}

.section-side-nav .fed-territorio-nav-corpo-current.current_page_item > a {
  color: var(--red-dark);
  border-left: 0;
  background: transparent;
}

.entry-footer {
  margin-top: 2.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(21, 19, 18, 0.12);
}

.content-updated {
  margin: 0;
  color: #625c56;
  font-size: 0.88rem;
  line-height: 1.45;
}

.content-updated span {
  color: #3f3934;
  font-weight: 800;
}

.content-updated time {
  text-transform: lowercase;
}

.entry-header,
.archive-header {
  margin-bottom: 1.8rem;
}

.entry-header h1,
.archive-header h1,
.page .entry-content > h1:first-child,
.single-fed_trasparenza h1,
.post-type-archive-fed_trasparenza h1,
.tax-fed_trasparenza_category h1,
.tax-fed_trasparenza_sezione h1,
.fed-trasparenza h1,
.amministrazione-trasparente h1 {
  margin: 0;
  color: var(--dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.04;
}

.page .entry-content > h1:first-child,
.single-fed_trasparenza h1,
.post-type-archive-fed_trasparenza h1,
.tax-fed_trasparenza_category h1,
.tax-fed_trasparenza_sezione h1,
.fed-trasparenza h1,
.amministrazione-trasparente h1 {
  color: var(--dark) !important;
  font-weight: 850;
  letter-spacing: 0;
}

.archive-description {
  max-width: 760px;
  margin-top: 0.9rem;
  color: #514b45;
  font-size: 1rem;
  line-height: 1.65;
}

.entry-pretitle {
  max-width: 760px;
  margin: 0 0 0.55rem;
  color: #625c56;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 750;
  line-height: 1.35;
}

.single-post .entry-header .section-kicker {
  color: #7a746d;
  letter-spacing: 0.11em;
}

.single-post .entry-header h1 {
  color: #1f1b18;
}

.single-post .entry-pretitle {
  color: #5f5a54;
}

.entry-content {
  color: var(--text);
  font-size: 1.06rem;
}

.entry-content > * {
  max-width: var(--fedvvfvol-text-max, 960px);
}

.entry-content > .alignwide,
.entry-content > .panel-layout,
.entry-content > .so-panel {
  max-width: var(--max);
}

.entry-content > .alignfull {
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.single-post .entry-content .article-toc {
  width: 100%;
  max-width: var(--fedvvfvol-text-max, 960px);
  margin: 2rem 0;
  padding: 1.15rem 1.35rem 1.3rem;
  border: 1px solid var(--muted-strong);
  border-radius: 4px;
  background: var(--white);
}

.single-post .entry-content .article-toc-title {
  margin: 0 0 0.9rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(21, 19, 18, 0.12);
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.3;
}

.single-post .entry-content .article-toc-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-post .entry-content .article-toc-list li {
  min-width: 0;
}

.single-post .entry-content .article-toc-list a {
  display: block;
  padding: 0.42rem 0.7rem;
  border-left: 2px solid rgba(176, 20, 29, 0.35);
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.single-post .entry-content .article-toc-list a:hover,
.single-post .entry-content .article-toc-list a:focus-visible {
  border-left-color: var(--red);
  color: var(--red-dark);
  background: rgba(176, 20, 29, 0.04);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.single-post .entry-content .article-toc-list a:focus-visible {
  outline: 2px solid var(--red-dark);
  outline-offset: 2px;
}

.single-post .entry-content .article-toc-target {
  scroll-margin-top: 8.5rem;
}

.admin-bar.single-post .entry-content .article-toc-target {
  scroll-margin-top: calc(8.5rem + 32px);
}

@media (max-width: 782px) {
  .admin-bar.single-post .entry-content .article-toc-target {
    scroll-margin-top: calc(8.5rem + 46px);
  }
}

@media (max-width: 680px) {
  .single-post .entry-content .article-toc {
    padding: 1rem;
  }

  .single-post .entry-content .article-toc-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

.entry-content a,
.post-card-copy a,
.latest-feature-copy a {
  color: var(--red-dark);
}

.entry-content a.fedvvfvol-link-external:not(.fedvvfvol-link-file)::after {
  content: "\f35d";
  display: inline-block;
  margin-left: 0.32em;
  font-family: "Font Awesome 6 Free";
  font-size: 0.78em;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.entry-content .sow-slider-image-wrapper > a.fedvvfvol-link-external::after,
.entry-content a.fedvvfvol-link-external:has(img)::after {
  content: none;
  display: none;
}

.entry-content .sow-slider-lightbox-trigger {
  cursor: zoom-in;
}

.entry-content a.fedvvfvol-link-file::after {
  content: attr(data-file-type);
  display: inline-flex;
  min-height: 1.1rem;
  align-items: center;
  margin-left: 0.38em;
  padding: 0.05rem 0.18rem;
  color: #ffffff;
  background: var(--red);
  border-radius: 2px;
  font-size: 0.62rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  vertical-align: 0.08em;
}

.entry-content a.fedvvfvol-link-file-doc::after {
  background: #1f5fae;
}

.entry-content a.fedvvfvol-link-file-xls,
.entry-content a.fedvvfvol-link-file-csv {
  color: #075d3b;
}

.entry-content a.fedvvfvol-link-file-xls::after,
.entry-content a.fedvvfvol-link-file-csv::after {
  background: #147d52;
}

.entry-content a.fedvvfvol-link-file-ppt::after {
  background: #b64a12;
}

.entry-content a.fedvvfvol-link-file-zip::after {
  background: #51463d;
}

.entry-content img,
.entry-image img {
  height: auto;
  border-radius: 6px;
}

.entry-content img.aligncenter,
.entry-content figure.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.entry-content figure.aligncenter img {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 680px) {
  .entry-content .sow-slider-base {
    height: auto !important;
  }

  .entry-content .sow-slider-images {
    height: auto !important;
    aspect-ratio: 3 / 2;
    margin: 0;
    padding: 0;
    background: #f4f2ee;
  }

  .entry-content .sow-slider-image,
  .entry-content .sow-slider-image-container,
  .entry-content .sow-slider-image-wrapper,
  .entry-content .sow-slider-image-wrapper > a,
  .entry-content .sow-slider-image-foreground-wrapper {
    width: 100% !important;
    height: 100% !important;
  }

  .entry-content .sow-slider-image-wrapper > a,
  .entry-content .sow-slider-image-foreground-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .entry-content .sow-slider-foreground-image {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: contain;
    object-position: center;
  }
}

.entry-eyebrow {
  max-width: 760px;
  margin: -0.9rem 0 1.4rem;
  color: #6f6a64;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: none;
}

.article-extra {
  max-width: 860px;
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(21, 19, 18, 0.12);
}

.content-attachments {
  max-width: 860px;
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(21, 19, 18, 0.12);
}

.siteorigin-page .content-attachments {
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.content-attachments h2 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: #2b2723;
  font-size: 1.28rem;
  line-height: 1.2;
}

.content-attachments h2 svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.content-attachments-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-attachments-list a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem;
  color: inherit;
  background: #ffffff;
  border: 1px solid rgba(21, 19, 18, 0.12);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.content-attachments-list a:hover,
.content-attachments-list a:focus-visible {
  border-color: rgba(176, 20, 29, 0.42);
  box-shadow: 0 10px 24px rgba(21, 19, 18, 0.07);
}

.content-attachment-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--red-dark);
  background: #f6f2ec;
  border-radius: 4px;
}

.content-attachment-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.content-attachment-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.content-attachment-copy strong {
  color: #1f1b18;
  font-size: 0.98rem;
  line-height: 1.25;
}

.content-attachment-copy span {
  color: #6f6a64;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-meta-panel {
  display: grid;
  gap: 1rem;
}

.article-meta-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
}

.article-meta-row a {
  color: var(--red);
  font-weight: 750;
  text-decoration: none;
}

.article-meta-row a:hover,
.article-meta-row a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

.article-meta-icon {
  display: inline-grid;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--dark-soft);
}

.article-meta-icon svg,
.article-download-images h2 svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.article-tags span:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}

.article-download-images {
  width: 100%;
  max-width: none;
  margin: 2rem 0 0;
  padding: 1.8rem 0 0;
  border-top: 1px solid rgba(21, 19, 18, 0.12);
}

.article-download-images h2 {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 1rem;
  color: var(--dark);
  font-size: 1.35rem;
  line-height: 1.2;
}

.article-photo-credits {
  width: 100%;
  max-width: none;
  margin: 0.8rem 0 0;
  color: #5d5853;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.45;
  text-align: left;
}

.single-post .article-extra .article-download-images {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.article-download-images h2 span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
}

.article-image-grid {
  display: grid;
  gap: 0.75rem;
}

.article-image-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(21, 19, 18, 0.12);
  border-radius: 4px;
}

.article-image-view {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
  border: 0;
  cursor: zoom-in;
  text-align: left;
}

.article-image-view img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  transition: transform 180ms ease;
}

.article-image-view:hover img,
.article-image-view:focus-visible img {
  transform: scale(1.04);
}

.article-image-download {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 38px;
  padding: 0.45rem 0.65rem;
  color: #ffffff;
  background: #33302d;
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.article-image-download::before {
  content: "⇩";
  font-size: 1rem;
  line-height: 1;
}

.article-image-download:hover,
.article-image-download:focus-visible {
  color: #ffffff;
  background: #1f1b18;
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 4rem 1rem 4.8rem;
  background: rgba(8, 7, 7, 0.86);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.image-lightbox-close,
.image-lightbox-prev,
.image-lightbox-next {
  position: absolute;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: rgba(21, 19, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.image-lightbox-close {
  top: 1rem;
  right: 1rem;
}

.image-lightbox-prev,
.image-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.image-lightbox-prev {
  left: 1rem;
}

.image-lightbox-next {
  right: 1rem;
}

.image-lightbox-meta {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.image-lightbox-counter {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 750;
}

.image-lightbox-download {
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.image-lightbox-download:hover,
.image-lightbox-download:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

.entry-content > .fedvvfvol-posts-archive,
.fedvvfvol-posts-archive {
  width: min(var(--max), calc(100% - 2rem));
  max-width: var(--max);
  margin: 2rem auto;
}

.fedvvfvol-posts-archive-header {
  margin-bottom: 1.4rem;
}

.fedvvfvol-posts-archive-header h2 {
  margin: 0;
  color: var(--dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.06;
}

.fedvvfvol-posts-archive-header .archive-description {
  max-width: 760px;
  margin-top: 0.8rem;
  color: #403a35;
  font-size: 1rem;
  line-height: 1.65;
}

.posts-grid {
  display: grid;
  gap: 1.1rem;
}

.post-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(21, 19, 18, 0.12);
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(21, 19, 18, 0.06);
}

.post-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--muted);
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-copy {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.15rem;
}

.post-card.type-event .post-card-copy,
.post-card.event .post-card-copy {
  min-height: 220px;
}

.post-card.type-event,
.post-card.event {
  grid-template-rows: auto 1fr;
}

.post-card-badge {
  margin-bottom: 0.6rem;
}

.post-card-copy time {
  display: block;
  color: #817970;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.post-card-event-meta {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0.8rem;
  width: 100%;
  align-items: center;
  margin: 0 0 0.85rem;
}

.post-card-event-date {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  width: 58px;
  min-height: 68px;
  place-items: center;
  align-content: center;
  color: var(--red);
  background: #fff7f3;
  border: 1px solid rgba(176, 20, 29, 0.22);
  border-radius: 4px;
  text-align: center;
}

.post-card-event-date strong,
.post-card-event-date span,
.post-card-event-date em {
  display: block;
  width: 100%;
  text-align: center;
}

.post-card-event-date strong {
  color: var(--dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 0.95;
}

.post-card-event-date span {
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.post-card-event-date em {
  margin-top: 0.12rem;
  color: #817970;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 850;
  line-height: 1;
}

.post-card-event-details {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.post-card-event-time,
.post-card-event-place {
  position: relative;
  margin: 0;
  padding-left: 1.15rem;
  color: #625c56;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.post-card-event-time::before,
.post-card-event-place::before {
  content: "";
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 0.58rem;
  height: 0.58rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.7;
}

.post-card-event-place::before {
  border-radius: 1px;
  transform: rotate(45deg);
}

@media (min-width: 760px) {
  .posts-grid-events,
  .posts-grid:has(.post-card.type-event),
  .posts-grid:has(.post-card.event) {
    grid-template-columns: 1fr;
  }

  .post-card.type-event,
  .post-card.event {
    grid-template-columns: minmax(180px, 26%) minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .post-card.type-event .post-card-image,
  .post-card.event .post-card-image {
    height: 100%;
    min-height: 190px;
    aspect-ratio: auto;
  }

  .post-card.type-event .post-card-copy,
  .post-card.event .post-card-copy {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-rows: auto auto auto 1fr auto;
    gap: 0 1.1rem;
    min-height: 0;
    padding: 1.2rem 1.3rem;
  }

  .post-card.type-event .post-card-badge,
  .post-card.event .post-card-badge {
    grid-column: 2;
    margin-bottom: 0.55rem;
  }

  .post-card.type-event .post-card-event-meta,
  .post-card.event .post-card-event-meta {
    display: contents;
    margin: 0;
  }

  .post-card.type-event .post-card-event-date,
  .post-card.event .post-card-event-date {
    grid-column: 1;
    grid-row: 1 / 6;
    width: 76px;
    min-height: 76px;
    align-self: start;
  }

  .post-card.type-event .post-card-event-date strong,
  .post-card.event .post-card-event-date strong {
    font-size: 2rem;
  }

  .post-card.type-event h2,
  .post-card.event h2 {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 0.45rem;
  }

  .post-card.type-event .post-card-event-details,
  .post-card.event .post-card-event-details,
  .post-card.type-event .post-card-copy > p:not(.news-badge),
  .post-card.event .post-card-copy > p:not(.news-badge),
  .post-card.type-event .post-card-more,
  .post-card.event .post-card-more {
    grid-column: 2;
  }

  .post-card.type-event .post-card-event-details,
  .post-card.event .post-card-event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    grid-row: 3;
    margin-bottom: 0.75rem;
  }

  .post-card.type-event .post-card-copy > p:not(.news-badge),
  .post-card.event .post-card-copy > p:not(.news-badge) {
    grid-row: 4;
  }

  .post-card.type-event .post-card-more,
  .post-card.event .post-card-more {
    grid-row: 5;
  }
}

.post-card-copy h2 {
  margin: 0.45rem 0 0.65rem;
  color: var(--dark);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.18;
}

.post-card-copy h2 a,
.latest-feature-copy h2 a {
  color: inherit;
  text-decoration: none;
}

.post-card-copy h2 a:hover,
.post-card-copy h2 a:focus-visible {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.post-card-copy p:not(.news-badge) {
  margin: 0;
  color: #403a35;
  font-size: 0.94rem;
  line-height: 1.55;
}

.post-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1rem;
  color: #0b3d91;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pagination-nav {
  margin-top: 2rem;
}

.pagination-nav .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pagination-nav a,
.pagination-nav span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(21, 19, 18, 0.16);
  border-radius: 4px;
  text-decoration: none;
}

.pagination-nav .current {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.tender-archive {
  max-width: 1240px;
}

.tender-archive-header {
  max-width: 920px;
}

.tender-archive-list {
  overflow: hidden;
  border: 1px solid rgba(21, 19, 18, 0.14);
  border-radius: 4px;
  background: var(--white);
}

.tender-archive-item {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) minmax(9rem, 13rem) 5rem;
  gap: 1rem;
  align-items: center;
  min-height: 5.4rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(21, 19, 18, 0.12);
}

.tender-archive-item:last-child {
  border-bottom: 0;
}

.tender-archive-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.5rem;
  color: #625c56;
  border-radius: 4px;
  background: var(--muted);
}

.tender-archive-icon i {
  font-size: 1.05rem;
}

.tender-archive-copy {
  min-width: 0;
}

.tender-archive-badge {
  margin-bottom: 0.35rem;
  background: #8b1e2d;
}

.tender-archive-badge-bandi-di-gara-in-corso {
  background: #198754;
}

.tender-archive-badge-bandi-di-gara-conclusi {
  background: #6c757d;
}

.tender-archive-copy h2,
.tender-archive-copy h3 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.25;
}

.tender-archive-copy h2 a,
.tender-archive-copy h3 a {
  color: inherit;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.tender-archive-copy h2 a:hover,
.tender-archive-copy h2 a:focus-visible,
.tender-archive-copy h3 a:hover,
.tender-archive-copy h3 a:focus-visible {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.tender-archive-date {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  gap: 0.5rem;
  align-items: center;
  margin: 0;
  color: #625c56;
  font-size: 0.78rem;
  line-height: 1.3;
}

.tender-archive-date > i {
  color: #625c56;
}

.tender-archive-date-copy {
  display: grid;
  gap: 0.12rem;
}

.tender-archive-date-copy > span {
  font-weight: 700;
}

.tender-archive-date-copy time {
  color: #3f3934;
}

.tender-archive-more {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  min-height: 44px;
  color: var(--red-dark);
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.tender-archive-more:hover,
.tender-archive-more:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.tag-split-archive {
  max-width: 1240px;
}

.tag-split-header {
  max-width: 920px;
}

.tag-archive-section {
  padding: clamp(1.5rem, 3vw, 2.4rem) 0;
  border-top: 1px solid rgba(21, 19, 18, 0.16);
}

.tag-archive-section-header {
  margin-bottom: 1.25rem;
}

.tag-archive-section-header .section-kicker {
  margin-bottom: 0.35rem;
}

.tag-archive-section-header h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.tag-archive-tenders {
  margin-top: clamp(0.75rem, 2vw, 1.5rem);
  border-top-color: rgba(176, 20, 29, 0.42);
}

.tag-archive-editorial {
  margin-top: 0;
}

.tag-archive-empty {
  margin: 0;
  padding: 1rem 0;
  color: #625c56;
}

.tag-section-pagination {
  margin-bottom: 0;
}

.search-results-page {
  max-width: 1240px;
}

.search-results-header {
  max-width: 980px;
  padding-bottom: clamp(1.8rem, 4vw, 3rem);
}

.search-results-header h1 {
  max-width: 900px;
  margin: 0;
  color: var(--dark);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.03;
  overflow-wrap: anywhere;
}

.search-results-header > p:not(.section-kicker) {
  margin: 0.8rem 0 0;
  color: var(--text-soft);
  font-size: 1rem;
}

.search-results-form {
  max-width: 820px;
  margin-top: 1.6rem;
}

.search-results-form > label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.search-results-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
}

.search-results-form input {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  color: var(--text);
  border: 1px solid rgba(21, 19, 18, 0.28);
  border-radius: 4px;
  background: var(--white);
  font: inherit;
}

.search-results-form button {
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  color: var(--white);
  border: 1px solid var(--red);
  border-radius: 4px;
  background: var(--red);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.search-results-form button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.search-results-summary {
  margin-top: 1.4rem;
}

.search-results-summary ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.search-results-summary a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem 0.55rem 0.85rem;
  color: var(--dark);
  border: 1px solid rgba(21, 19, 18, 0.18);
  border-radius: 4px;
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.search-results-summary a:hover,
.search-results-summary a:focus-visible {
  color: var(--red-dark);
  border-color: currentColor;
}

.search-results-summary strong {
  display: inline-flex;
  min-width: 1.75rem;
  min-height: 1.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.4rem;
  color: var(--white);
  border-radius: 3px;
  background: var(--red);
  font-size: 0.75rem;
}

.search-results-section {
  padding: clamp(1.8rem, 4vw, 3.2rem) 0;
  border-top: 1px solid rgba(21, 19, 18, 0.16);
  scroll-margin-top: 1.5rem;
}

.search-results-section-header {
  margin-bottom: 1.35rem;
}

.search-results-section-header .section-kicker {
  margin-bottom: 0.35rem;
}

.search-results-section-header h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.08;
}

.search-results-section-header h2 > span {
  display: inline-flex;
  min-width: 2rem;
  min-height: 2rem;
  align-items: center;
  justify-content: center;
  margin-left: 0.35rem;
  padding: 0.2rem 0.5rem;
  color: var(--text-soft);
  border: 1px solid rgba(21, 19, 18, 0.16);
  border-radius: 4px;
  background: var(--muted);
  font-family: var(--fedvvfvol-body-font);
  font-size: 0.78rem;
  vertical-align: middle;
}

.search-directory-list {
  overflow: hidden;
  border: 1px solid rgba(21, 19, 18, 0.14);
  border-radius: 4px;
  background: var(--white);
}

.search-directory-item {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 7rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(21, 19, 18, 0.12);
}

.search-directory-item:last-child {
  border-bottom: 0;
}

.search-directory-icon {
  display: inline-flex;
  width: 2.55rem;
  height: 2.55rem;
  align-items: center;
  justify-content: center;
  align-self: start;
  color: var(--red-dark);
  border-radius: 4px;
  background: var(--muted);
}

.search-directory-icon i {
  font-size: 1rem;
}

.search-directory-copy {
  min-width: 0;
}

.search-result-type {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.45rem;
  margin: 0 0 0.3rem;
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}

.search-result-type span:last-child {
  color: var(--text-soft);
}

.search-directory-copy h3 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.25;
}

.search-directory-copy h3 a {
  color: inherit;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.search-directory-copy h3 a:hover,
.search-directory-copy h3 a:focus-visible {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.search-directory-copy > p:last-child:not(.search-result-type) {
  max-width: 800px;
  margin: 0.45rem 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.search-directory-more {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.4rem;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.search-directory-more:hover,
.search-directory-more:focus-visible {
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.search-results-transparency .search-directory-icon {
  color: #174a76;
  background: #eef4f8;
}

.search-results-tenders {
  border-top-color: rgba(176, 20, 29, 0.42);
}

.search-group-pagination {
  margin-bottom: 0;
}

.search-empty-state {
  max-width: 760px;
  padding: 1.4rem;
  border-left: 4px solid var(--red);
  background: var(--muted);
}

.search-empty-state h2,
.search-empty-state p {
  margin: 0;
}

.search-empty-state p {
  margin-top: 0.45rem;
  color: var(--text-soft);
}

@media (max-width: 720px) {
  .search-results-form > div {
    grid-template-columns: 1fr;
  }

  .search-results-form button {
    width: 100%;
  }

  .search-results-summary ul,
  .search-results-summary li,
  .search-results-summary a {
    width: 100%;
  }

  .search-results-summary a {
    justify-content: space-between;
  }

  .search-directory-item {
    grid-template-columns: 2.55rem minmax(0, 1fr);
    gap: 0.75rem 0.85rem;
    padding: 0.95rem;
  }

  .search-directory-more {
    grid-column: 2;
    justify-self: start;
  }

}

@media (max-width: 720px) {
  .tender-archive-item {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 0.65rem 0.85rem;
    padding: 1rem;
  }

  .tender-archive-icon {
    grid-row: 1 / span 3;
  }

  .tender-archive-date,
  .tender-archive-more {
    grid-column: 2;
  }

  .tender-archive-more {
    justify-content: flex-start;
    width: fit-content;
  }
}

.events-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.events-filter a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0.55rem 0.9rem;
  color: var(--red-dark);
  border: 1px solid rgba(176, 20, 29, 0.32);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.events-filter a[aria-current="page"],
.events-filter a:hover,
.events-filter a:focus-visible {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.event-archive-tools {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.8fr) auto;
  gap: 1rem;
  align-items: end;
  margin-top: 1.6rem;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid rgba(21, 19, 18, 0.14);
  border-radius: 6px;
}

.event-archive-tools label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.event-archive-tools input,
.event-archive-tools select {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.75rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid rgba(21, 19, 18, 0.28);
  border-radius: 4px;
  font: inherit;
}

.event-archive-tools input:focus-visible,
.event-archive-tools select:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.event-archive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.event-archive-actions button {
  min-height: 48px;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--red);
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.event-archive-actions button:hover,
.event-archive-actions button:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.event-archive-actions a {
  color: var(--red-dark);
  font-weight: 750;
  text-underline-offset: 0.2rem;
}

.event-archive-results[aria-busy="true"] {
  opacity: 0.58;
}

.event-archive-empty {
  margin-top: 1.4rem;
  padding: 1.2rem;
  background: var(--muted);
  border-left: 4px solid var(--red);
}

.event-archive-empty h2,
.event-archive-empty p {
  margin-top: 0;
}

.event-archive-empty p {
  margin-bottom: 0;
}

.events-home .updates-head {
  padding-left: 0;
}

.events-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.event-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 1rem;
  min-height: 112px;
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(21, 19, 18, 0.12);
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(21, 19, 18, 0.05);
}

.event-card-date {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  align-content: center;
  color: var(--red);
  background: #fff3f3;
  border: 1px solid rgba(176, 20, 29, 0.25);
  border-radius: 6px;
  text-align: center;
}

.event-card-date strong {
  color: var(--dark);
  font-size: 1.7rem;
  line-height: 1;
}

.event-card-date span {
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.event-card-meta,
.event-card-place,
.event-card-organizer {
  margin: 0;
  color: #817970;
  font-size: 0.78rem;
  font-weight: 800;
}

.event-card-categories,
.event-single-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 0.45rem;
  padding: 0;
  list-style: none;
}

.event-card-categories li,
.event-single-categories li {
  padding: 0.2rem 0.45rem;
  color: var(--red-dark);
  background: #fff3f3;
  border: 1px solid rgba(176, 20, 29, 0.2);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-single-categories {
  margin-top: 0.8rem;
}

.event-archive-pagination {
  margin-top: 1.5rem;
}

@media (max-width: 820px) {
  .event-archive-tools {
    grid-template-columns: 1fr 1fr;
  }

  .event-archive-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .event-archive-tools {
    grid-template-columns: 1fr;
  }

  .event-archive-actions {
    grid-column: auto;
    align-items: stretch;
  }

  .event-archive-actions button {
    width: 100%;
  }
}

.event-card-copy h2,
.event-card-copy h3 {
  margin: 0.25rem 0 0.35rem;
  color: var(--dark);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.15;
}

.event-card-copy h2 a,
.event-card-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.event-card-copy h2 a:hover,
.event-card-copy h2 a:focus-visible,
.event-card-copy h3 a:hover,
.event-card-copy h3 a:focus-visible {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

.event-card-copy p:last-child {
  margin-bottom: 0;
}

.event-details {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.2rem;
  padding: 1rem;
  background: var(--muted);
  border-left: 4px solid var(--red);
  border-radius: 4px;
}

.event-details p {
  margin: 0;
}

.event-single-layout {
  max-width: 1180px;
}

.event-single .entry-header {
  margin-bottom: 2rem;
}

.event-single .event-details {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0;
  margin-top: 1.5rem;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(21, 19, 18, 0.15);
  border-bottom: 1px solid rgba(21, 19, 18, 0.15);
  border-radius: 0;
  background: transparent;
}

.event-single .event-details p {
  position: relative;
  min-width: 0;
  padding: 1.15rem 1.25rem 1.15rem 4rem;
  color: #302b27;
  font-size: 1.02rem;
  line-height: 1.45;
}

.event-single .event-details p + p {
  border-left: 1px solid rgba(21, 19, 18, 0.12);
}

.event-single .event-details strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--red-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.event-single .event-details p::before {
  position: absolute;
  top: 50%;
  left: 1.1rem;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: var(--red-dark);
  background: #fff3f3;
  border: 1px solid rgba(176, 20, 29, 0.2);
  border-radius: 50%;
  font-family: "Font Awesome 6 Free";
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.event-single .event-detail-when::before {
  content: "\f073";
}

.event-single .event-detail-where::before {
  content: "\f3c5";
}

.event-single .event-detail-organizer::before {
  content: "\f0c0";
}

.event-single-body {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.event-single-body.has-content.has-image {
  grid-template-areas: "image content";
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.event-single-content {
  grid-area: content;
  min-width: 0;
  padding-top: 1.25rem;
  border-top: 4px solid var(--red);
}

.event-single-content > :first-child {
  margin-top: 0;
}

.event-single-content > :last-child {
  margin-bottom: 0;
}

.event-single-image {
  grid-area: image;
  margin: 0;
}

.event-single-image-view {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  background: #ffffff;
  cursor: zoom-in;
}

.event-single-image-view::after {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  content: "\f00e";
  color: #ffffff;
  background: rgba(21, 19, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-family: "Font Awesome 6 Free";
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.event-single-image-view:hover::after,
.event-single-image-view:focus-visible::after {
  background: var(--red-dark);
}

.event-single-image-view:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.event-single-image img {
  display: block;
  width: 100%;
  max-height: 720px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  margin-inline: auto;
  border: 0;
  border-radius: 2px;
  background: #ffffff;
}

.event-single-image-view:hover img,
.event-single-image-view:focus-visible img {
  transform: none;
  filter: brightness(0.96);
}

.event-single-body.has-image:not(.has-content) {
  display: flex;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(21, 19, 18, 0.1);
  border-bottom: 1px solid rgba(21, 19, 18, 0.1);
  background: #f3f1ee;
}

.event-single-body.has-image:not(.has-content) .event-single-image {
  grid-area: auto;
  width: min(100%, 560px);
  margin: 0 auto;
}

.event-single-body.has-image:not(.has-content) .event-single-image-view {
  padding: 0.65rem;
  box-shadow: 0 18px 48px rgba(21, 19, 18, 0.13);
}

@media (max-width: 760px) {
  .event-single .event-details {
    grid-template-columns: 1fr;
  }

  .event-single .event-details p + p {
    border-top: 1px solid rgba(21, 19, 18, 0.12);
    border-left: 0;
  }

  .event-single .event-details p {
    padding: 1rem 1rem 1rem 3.75rem;
  }

  .event-single .event-details p::before {
    left: 0.9rem;
  }

  .event-single-body.has-content.has-image {
    grid-template-areas:
      "content"
      "image";
    grid-template-columns: minmax(0, 1fr);
  }

  .event-single-image img {
    max-height: none;
  }

  .event-single-body.has-image:not(.has-content) {
    padding: 1rem;
  }

  .event-single-body.has-image:not(.has-content) .event-single-image img {
    max-height: 72vh;
  }
}

.footer-reference {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
}

.footer-reference-inner {
  display: grid;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.2rem 1rem;
}

.footer-reference-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-reference-logo-row img {
  width: 118px;
  height: auto;
  max-height: 78px;
  object-fit: contain;
}

.footer-reference-kicker {
  margin: 0 0 0.4rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-reference-logo-row strong {
  display: block;
  color: var(--white);
  line-height: 1.15;
}

.footer-reference-desc {
  max-width: 360px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-reference-column h2 {
  margin: 0 0 0.9rem;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-reference-column a,
.footer-reference-brand a {
  display: table;
  min-height: 30px;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-reference-column a:hover,
.footer-reference-column a:focus-visible,
.footer-reference-brand a:hover,
.footer-reference-brand a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.footer-reference-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-reference-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.footer-reference-bottom a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.footer-reference-bottom a:hover,
.footer-reference-bottom a:focus-visible {
  color: var(--white);
}

@media (min-width: 720px) {
  .page-layout.has-section-nav {
    display: grid;
    grid-template-columns: clamp(230px, 27vw, 280px) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }

  .page-layout.has-section-nav .entry {
    min-width: 0;
  }

  .section-side-nav {
    position: sticky;
    top: 118px;
    margin-bottom: 0;
    padding-left: 1rem;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(21, 19, 18, 0.18);
    border-radius: 0;
  }

  .section-side-nav-toggle {
    display: none;
  }

  .section-side-nav ul {
    display: grid;
  }

  .section-side-nav-root {
    display: block !important;
    margin: 0 0 0.3rem;
  }

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

  .posts-grid-events {
    grid-template-columns: 1fr;
  }

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

  .article-tags {
    grid-column: 1 / -1;
  }

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

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

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

  .agid-content-box-grid-2,
  .agid-content-box-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-tree-grid.page-tree-grid-1 {
    grid-template-columns: 1fr;
  }

  .footer-reference-inner {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

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

  .footer-reference-inner.footer-reference-columns-1 {
    grid-template-columns: minmax(260px, 1.4fr) minmax(160px, 1fr);
  }
}

@media (min-width: 1120px) {
  .content-layout,
  .siteorigin-home-area {
    padding-inline: 1.5rem;
  }

  .footer-reference-inner {
    grid-template-columns: 1.6fr repeat(4, 1fr);
    padding: 4rem 1.5rem;
  }

  .footer-reference-bottom {
    padding-inline: 1.5rem;
  }

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

  .footer-reference-inner.footer-reference-columns-1 {
    grid-template-columns: minmax(300px, 1.6fr) minmax(180px, 1fr);
  }

  .footer-reference-inner.footer-reference-columns-2 {
    grid-template-columns: minmax(300px, 1.6fr) repeat(2, minmax(160px, 1fr));
  }

  .footer-reference-inner.footer-reference-columns-3 {
    grid-template-columns: minmax(300px, 1.6fr) repeat(3, minmax(150px, 1fr));
  }

  .quick-links-inner {
    padding: 1.35rem 1.5rem 1.85rem;
  }

  .quick-links-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .posts-grid-events {
    grid-template-columns: 1fr;
  }

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

  .page-tree-grid-1 {
    grid-template-columns: 1fr;
  }

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

  .agid-content-box-grid-1 {
    grid-template-columns: 1fr;
  }

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

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

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

}

/* Large, light body copy requested for editorial content. */
.entry-content {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.65;
}

.entry-content :is(p, li, dd),
.archive-description,
.post-card-copy p:not(.news-badge),
.latest-feature p:last-child,
.agid-content-box-body,
.network-copy p {
  line-height: 1.65;
}

.archive-description,
.post-card-copy p:not(.news-badge),
.latest-feature p:last-child,
.agid-content-box-body,
.network-copy p {
  font-size: 1.3rem;
  font-weight: 300;
}

.entry-content :is(strong, b),
.agid-content-box-body :is(strong, b) {
  font-weight: 700;
}

/* Content components previously maintained in Additional CSS. */
.uffici-template {
  width: min(100%, var(--max));
  margin-inline: auto;
  color: var(--dark);
}

.uffici-hero-box,
.uffici-card,
.ufficio-card {
  border: 1px solid rgba(21, 19, 18, 0.14);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(21, 19, 18, 0.06);
}

.uffici-hero-box {
  padding: 2rem;
  background: #f7f5f2;
}

.uffici-kicker {
  margin: 0 0 0.65rem;
  color: var(--red-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uffici-hero-box :is(h1, h2) {
  margin: 0 0 1rem;
  color: var(--dark);
  font-family: var(--fedvvfvol-heading-font);
  font-size: 2.5rem;
  line-height: 1.1;
}

.uffici-hero-box p {
  max-width: 52rem;
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.65;
}

.uffici-card,
.ufficio-card {
  height: 100%;
  padding: 1.5rem;
}

.uffici-card :is(h2, h3),
.ufficio-card h3,
.uffici-section-title {
  color: var(--dark);
  font-family: var(--fedvvfvol-heading-font);
}

.uffici-card h2,
.uffici-section-title {
  margin: 0 0 1.15rem;
  font-size: 1.65rem;
  line-height: 1.2;
}

.ufficio-card {
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--red);
}

.ufficio-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.3rem;
  line-height: 1.25;
}

.uffici-card p,
.ufficio-card p {
  line-height: 1.65;
}

.referenti {
  margin-bottom: 1rem;
  color: var(--text-soft);
}

.ufficio-card a {
  color: var(--red-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.ufficio-card a:hover {
  color: var(--red);
}

.ufficio-card a:focus-visible {
  border-radius: 2px;
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--dark);
}

.ufficio-tel {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0.75rem;
  color: var(--dark);
  background: #f2f1ef;
  border-radius: 4px;
  font-weight: 750;
}

.orari-row {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(21, 19, 18, 0.14);
}

.orari-row:last-child {
  border-bottom: 0;
}

.orari-row span {
  font-weight: 700;
}

.orari-row strong {
  color: var(--dark);
  text-align: right;
}

.uffici-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.entry-content blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  color: var(--dark);
  background: #f7f5f2;
  border-left: 4px solid var(--red);
  font-size: 1.05rem;
  line-height: 1.7;
}

.entry-content blockquote::before {
  content: none;
}

.entry-content blockquote p {
  margin: 0;
}

.entry-content blockquote p + p {
  margin-top: 0.9rem;
}

.entry-content blockquote cite {
  display: block;
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 700;
}

.entry-content blockquote a {
  color: var(--red-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.entry-content blockquote:focus-within {
  outline: 3px solid var(--dark);
  outline-offset: 3px;
}

.entry-content :is(.sowb-button, a.sowb-button, .ow-button-base a, .so-widget-sow-button a) {
  display: inline-flex !important;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.15rem !important;
  color: var(--white) !important;
  background: var(--red) !important;
  border: 2px solid var(--red) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
}

.entry-content :is(.sowb-button, a.sowb-button, .ow-button-base a, .so-widget-sow-button a):hover {
  color: var(--white) !important;
  background: var(--red-dark) !important;
  border-color: var(--red-dark) !important;
  text-decoration: none !important;
}

.entry-content :is(.sowb-button, a.sowb-button, .ow-button-base a, .so-widget-sow-button a):focus-visible {
  color: var(--white) !important;
  background: var(--red-dark) !important;
  border-color: var(--red-dark) !important;
  outline: 3px solid var(--white) !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 5px var(--dark) !important;
}

/* SiteOrigin Accordion and Tabs: neutral structure with the theme red as action color. */
.entry-content .sow-accordion {
  display: grid;
  gap: 0.75rem;
}

.entry-content .sow-accordion .sow-accordion-panel {
  overflow: hidden;
  border: 1px solid #d8d2cc !important;
  border-radius: 6px;
  background: var(--white) !important;
}

.entry-content .sow-accordion .sow-accordion-panel-header {
  min-height: 52px;
  padding: 0.9rem 1rem !important;
  color: var(--dark) !important;
  background: #f7f5f2 !important;
  border: 0 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0;
  line-height: 1.35 !important;
  cursor: pointer;
}

.entry-content .sow-accordion .sow-accordion-panel-header:hover,
.entry-content .sow-accordion .sow-accordion-panel-header:focus-visible {
  color: var(--red-dark) !important;
  background: var(--white) !important;
}

.entry-content .sow-accordion .sow-accordion-panel-header:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid var(--dark) !important;
  outline-offset: -3px;
}

.entry-content .sow-accordion .sow-accordion-panel-border {
  padding: 1.15rem !important;
  color: var(--dark) !important;
  background: var(--white) !important;
  border: 0 !important;
  border-top: 3px solid var(--red) !important;
}

.entry-content .sow-accordion .sow-accordion-panel-border a:not(.sowb-button) {
  color: var(--red-dark) !important;
}

.entry-content .sow-accordion .sow-accordion-panel-border a:not(.sowb-button):hover,
.entry-content .sow-accordion .sow-accordion-panel-border a:not(.sowb-button):focus-visible {
  color: var(--red) !important;
}

.entry-content .sow-tabs .sow-tabs-tab-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.entry-content .sow-tabs .sow-tabs-tab {
  display: inline-flex !important;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0.75rem 1rem !important;
  color: var(--dark) !important;
  background: #f7f5f2 !important;
  border: 1px solid #d8d2cc !important;
  border-radius: 6px 6px 0 0 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0;
  line-height: 1.3 !important;
  cursor: pointer;
}

.entry-content .sow-tabs .sow-tabs-tab:hover {
  color: var(--red-dark) !important;
  background: var(--white) !important;
  border-color: var(--red) !important;
}

.entry-content .sow-tabs :is(.sow-tabs-tab-selected, .sow-tabs-tab[aria-selected="true"]) {
  color: var(--white) !important;
  background: var(--red) !important;
  border-color: var(--red) !important;
}

.entry-content .sow-tabs .sow-tabs-tab:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid var(--dark) !important;
  outline-offset: 2px;
}

.entry-content .sow-tabs .sow-tabs-panel-container {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--dark) !important;
  background: var(--white) !important;
  border: 1px solid #d8d2cc !important;
  border-top: 3px solid var(--red) !important;
  border-radius: 0 0 6px 6px;
}

.entry-content .sow-tabs .sow-tabs-panel {
  padding: 1.25rem !important;
}

.supporto-section {
  padding: 4rem 1.5rem;
  background: #f7f5f2;
}

.supporto-intro {
  max-width: 42.5rem;
  margin-bottom: 2rem;
}

.supporto-eyebrow {
  margin: 0 0 0.75rem;
  color: var(--red-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supporto-intro h2 {
  margin: 0 0 1rem;
  color: var(--dark);
  font-family: var(--fedvvfvol-heading-font);
  font-size: 2.75rem;
  line-height: 1.1;
}

.supporto-intro > div > p:last-child,
.supporto-intro > p:last-child {
  max-width: 37.5rem;
  font-size: 1.125rem;
  line-height: 1.65;
}

.supporto-card {
  height: 100%;
  padding: 2rem;
  background: var(--white);
  border: 1px solid rgba(21, 19, 18, 0.18);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(21, 19, 18, 0.06);
}

.supporto-card:hover,
.supporto-card:focus-within {
  border-color: var(--red);
  box-shadow: 0 12px 28px rgba(21, 19, 18, 0.1);
}

.supporto-icon {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--red-dark);
  border: 1px solid var(--red);
  border-radius: 4px;
  font-size: 1.35rem;
  font-weight: 700;
}

.supporto-card h3 {
  margin: 0 0 0.85rem;
  color: var(--dark);
  font-family: var(--fedvvfvol-heading-font);
  font-size: 1.75rem;
  line-height: 1.2;
}

.supporto-card p {
  line-height: 1.65;
}

.supporto-link {
  margin-top: 1.5rem;
}

.supporto-link a {
  color: var(--red-dark);
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  text-transform: uppercase;
}

.supporto-link a:hover {
  color: var(--red);
}

.supporto-link a:focus-visible {
  border-radius: 2px;
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--dark);
}

@media (prefers-reduced-motion: no-preference) {
  .supporto-card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }

  .supporto-card:hover,
  .supporto-card:focus-within {
    transform: translateY(-2px);
  }
}

@media (max-width: 780px) {
  .uffici-hero-box,
  .uffici-card,
  .ufficio-card,
  .supporto-card {
    padding: 1.5rem;
  }

  .uffici-hero-box :is(h1, h2),
  .supporto-intro h2 {
    font-size: 2rem;
  }

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

  .orari-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .orari-row strong {
    text-align: left;
  }

  .supporto-section {
    padding: 3rem 1rem;
  }
}

@media (max-width: 420px) {
  .entry-content :is(.sowb-button, a.sowb-button, .ow-button-base a, .so-widget-sow-button a) {
    width: 100%;
  }

  .entry-content .sow-tabs .sow-tabs-tab {
    flex: 1 1 100%;
    border-radius: 4px !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .breadcrumb-nav,
  .skip-link,
  .site-search,
  .print-action,
  .image-lightbox {
    display: none !important;
  }

  body {
    color: #000000;
    background: #ffffff;
  }

  main {
    overflow: visible;
  }

  .content-layout,
  .page-layout {
    max-width: none;
    padding: 0;
  }

  .entry-header h1 {
    color: #000000;
  }

  .entry-image img,
  .article-image-view img {
    max-height: 16cm;
    object-fit: contain;
  }

  a {
    color: #000000;
  }
}
.tag-territory-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: .25rem 1.5rem;
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--red, #b0141d);
    background: #f2f0ed;
}

.tag-territory-link p {
    margin: 0;
}

.tag-territory-link-label {
    color: var(--red, #b0141d);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tag-territory-link-title {
    grid-column: 1;
    color: var(--dark, #151312);
    font-size: 1.3rem;
    font-weight: 800;
}

.tag-territory-link a {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    color: var(--red, #b0141d);
    font-weight: 800;
}

.tag-territory-link a:hover,
.tag-territory-link a:focus-visible {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .tag-territory-link {
        grid-template-columns: 1fr;
    }

    .tag-territory-link a {
        grid-column: 1;
        grid-row: auto;
        margin-top: .5rem;
    }
}
