@import url("https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
html {
  font-size: 16px;
}

* {
  font-family: "Atkinson Hyperlegible", sans-serif;
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
  /*border: 1px solid black;*/
}

:root {
  --columns-number: 6;
  --half-columns: 3;
  --half-columns-start: 4;
  --avvenire-family-body: "Atkinson Hyperlegible";
  --text-family-body: "Atkinson Hyperlegible";
  --luoghi-family-heading: "Lora";
  /*colors*/
  --text-primary: #000;
  --luoghi-color-neutral-50: #F9F9FA;
  --text-secondary: #29343D;
  --text-primary-invert: #FFF;
  --luoghi-color-neutral-700: #29343D;
  --luoghi-color-neutral-400: #6C7781;
  --luoghi-color-neutral-300: #989DA2;
  --Luoghi-sfondo-sito: #FFF8F1;
  --text-accent: #6D5200;
  --text-brand-light: #FCD28E;
  --luoghi-color-primary-700: #A07800;
  /*accessibility*/
  --border-accent: #A07800;
  --button-accent-hover: #FCD28E;
  --button-primary-hover: #6C7781;
  --button-disabled: #E7E8E9;
  --border-secondary: #C8CACD;
  --luoghi-color-base-white: #FFFFFF;
  --spacingnull: 0;
  --spacingxxs: 4px;
  --spacingxs: 8px;
  --components-button-primary-hover: #6C7781;
  /*line-height*/
  --avvenire-typography-line-height-xs: 18px;
  --avvenire-typography-line-height-s: 24px;
  --avvenire-typography-line-height-m: 32px;
  --avvenire-typography-line-height-l: 40px;
  --avvenire-typography-line-height-xl: 48px;
  --typography-line-height-xs: 18px;
  /*font-size*/
  --avvenire-typography-size-font-size-1: 0.875rem;
  --avvenire-typography-size-font-size-2: 1rem;
  --avvenire-typography-size-font-size-3: 1.125rem;
  --avvenire-typography-size-font-size-4: 1.312rem;
  --avvenire-typography-size-font-size-5: 1.5rem;
  --avvenire-typography-size-font-size-6: 1.750rem;
  --avvenire-typography-size-font-size-7: 2rem;
  --avvenire-typography-size-font-size-8: 2.5rem;
  --typography-size-font-size-1: 14px;
  /*font-tracking*/
  --avvenire-typography-font-tracking-extend: 0.5px;
  --avvenire-typography-font-tracking-normal: 0.12px;
  --typography-font-tracking-normal: 0.16px;
}

body {
  background-color: var(--Luoghi-sfondo-sito);
}

header {
  background-color: var(--Luoghi-sfondo-sito);
}

.img-fluid {
  width: 100%;
  height: auto;
}

.class-white {
  background-color: #FFF !important;
}

.zoomPanel {
  display: none;
  position: fixed;
  grid-template-columns: repeat(var(--columns-number), 1fr);
  padding: 16px 36px;
  background: #000000;
  top: 0;
  left: 0;
  width: calc(100% - 72px);
  height: calc(100% - 32px);
  touch-action: none;
  z-index: 100;
}
.zoomPanel .close {
  position: fixed;
  justify-self: end;
  height: max-content;
  top: 16px;
  right: 36px;
  grid-row: 1/1;
}
.zoomPanel .close-btn {
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.zoomPanel .img-container {
  grid-row: 2/2;
  grid-column: 1/span var(--half-columns);
  width: 100%;
  height: 75vh;
}
.zoomPanel .img-container img {
  width: auto;
  height: 100%;
  margin: 0 auto;
}
.zoomPanel .zoomDescription {
  grid-row: 1;
  grid-column: var(--half-columns-start)/span var(--columns-number);
  margin: 0 35px;
  color: var(--text-primary-invert, #FFF);
  /* Desktop/Body Regular */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-2, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 150% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}

.zoomPanel.active {
  display: grid;
}

.paginate {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 5px;
  gap: 16px;
}
.paginate .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 1px;
  color: var(--text-secondary, #29343D);
  text-align: center;
  /* Desktop/Body Regular */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-2, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 150% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  background-color: transparent;
  border: none;
}
.paginate .item * {
  stroke: black;
}
.paginate .item:disabled * {
  stroke: #6C7781;
}
.paginate .item.active {
  border-radius: var(--radius-radius-smooth, 4px);
  border: 1px solid var(--border-accent, #A07800);
  color: var(--border-accent);
}
.paginate .item:hover {
  text-decoration: underline;
}
.paginate .item:focus-visible {
  border: 3px solid var(--border-accent, #A07800);
}

.d-md {
  display: none;
}

.d-mobile {
  display: block !important;
}

.hidden {
  display: none;
}

.maincontainer {
  margin: 0 auto;
  background-color: var(--Luoghi-sfondo-sito);
}

.grid {
  display: grid;
}

.grid-template {
  grid-template-columns: repeat(var(--columns-number), 1fr);
  grid-column-gap: 16px;
  grid-template-rows: auto;
  padding: 10px 8px;
}

.grid-item-header {
  justify-self: center;
  grid-column: 1/span var(--columns-number);
  grid-row: 1/1;
}

/* #region share-btn*/
.share-container {
  display: inline-flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.share-toggle {
  position: absolute;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.5rem;
  border: 1px solid black;
  padding: var(--spacing-xs, 8px);
  color: var(--text-primary, #000);
  /* Desktop/Body XS Bold */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}

.share-popup {
  margin-top: 10px;
  padding: 10px 16px;
  background-color: white;
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  position: sticky;
  margin-bottom: -46px;
  z-index: 100;
  right: 0;
}
.share-popup.hidden {
  display: none;
}

.social-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: black;
  transition: color 0.2s ease;
  cursor: pointer;
  padding: 0;
}

.social-btn:hover {
  color: #0077ff;
}

/* #endregion share-btn*/
/* #region css custom per numberHompage bianca */
.maincontainer.homepage header {
  background-color: transparent;
}
.maincontainer.homepage .grid-item-hamburger {
  stroke: white;
  fill: white;
}
.maincontainer.homepage .grid-item-hlogin ul li a {
  color: white;
}
.maincontainer.homepage .grid-item-hlogin ul li a:hover {
  color: #6D5200;
  text-decoration: underline;
  cursor: pointer;
}
.maincontainer.homepage .grid-item-hlogin ul li a:focus-visible {
  border: 3px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 1px 4px;
  color: #6D5200;
  text-decoration: underline;
}
.maincontainer.homepage .grid-item-hlogin ul li a.btn-yellow {
  color: black;
}
.maincontainer.homepage .grid-item-hlogin ul li a.btn-yellow:hover {
  color: black;
  text-decoration: none;
}
.maincontainer.homepage .bottombar {
  border-top: 1px solid #989DA2;
  border-bottom: 1px solid #989DA2;
}
.maincontainer.homepage .bottombar .navbar .nav-link {
  color: white;
  cursor: pointer;
}
.maincontainer.homepage .bottombar .navbar .nav-link:hover {
  color: #6D5200;
  text-decoration: underline;
}
.maincontainer.homepage .bottombar .navbar .nav-link:focus-visible {
  border: 3px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 2px;
  color: #6D5200;
  text-decoration: underline;
}
.maincontainer.homepage .bottombar .navbar .nav-link-active {
  color: #6D5200 !important;
  text-decoration: none;
}
.maincontainer.homepage .bottombar .navbar .nav-link-active:hover {
  color: #6D5200 !important;
  text-decoration: underline;
}
.maincontainer.homepage .bottombar .navbar .nav-link-active-home {
  color: var(--text-brand-light, #FCD28E) !important;
  text-decoration: none;
}
.maincontainer.homepage .bottombar .navbar .nav-link-active-home:hover {
  color: #FFF !important;
  text-decoration: underline;
}
.maincontainer.homepage .st0 {
  fill: white;
  stroke: white;
}

/* #endregion css custom per numberHompage bianca */
/* #region header */
.grid-item-allcolumns {
  grid-column: 1/span var(--columns-number);
}

.grid-item-hlogo {
  grid-column: 2/span 3;
}
.grid-item-hlogo svg {
  width: 210px;
  height: 100%;
}

.grid-item-hlogin {
  grid-column: 6/span 1;
  justify-self: end;
}

.header-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
}

header .grid-template {
  padding: 10px 16px;
}

.grid-item-hamburger {
  grid-column: 1/span 1;
  stroke: black;
  fill: black;
}
.grid-item-hamburger .hamburger {
  background-color: transparent;
  border: none;
  font-size: 24px;
  font-weight: 100;
}

.burgermenu, .mondoCEI {
  display: none;
  position: fixed;
  min-height: 100vh;
  width: 100%;
  height: auto;
  top: 0;
  background-color: white;
  z-index: 2000;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.grid-item-img {
  grid-column: 1/span 5;
  margin-top: 48px;
  margin-left: 16px;
}

.grid-item-closehamburger {
  grid-column: 6/span 1;
  background-color: transparent;
  border: none;
  font-size: 20px;
  margin-top: 48px;
}

.menu-mobile {
  display: flex;
  flex-direction: column;
}
.menu-mobile a {
  color: black;
  text-decoration: none;
  font-size: var(--avvenire-typography-size-font-size-1);
  font-weight: 700;
}
.menu-mobile .menu-element::first-letter {
  text-transform: uppercase;
}
.menu-mobile .menu-element-icon {
  display: flex;
  padding: 15px 16px;
  align-items: center;
}
.menu-mobile .menu-element-icon .icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.menu-mobile .three {
  justify-content: space-between;
}
.menu-mobile .three div {
  display: flex;
  align-items: center;
}
.menu-mobile .menu-element {
  padding: 15px 48px;
}
.menu-mobile .menu-element .desc {
  margin-left: 7px;
}
.menu-mobile .desc {
  text-decoration: none;
  color: black;
  font-size: var(--avvenire-typography-size-font-size-1);
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs);
  letter-spacing: var(--avvenire-typography-font-tracking-normal);
  display: block;
}
.menu-mobile .desc::first-letter {
  text-transform: uppercase;
}
.menu-mobile .hr {
  width: 100%;
  border-top: 1px solid black;
  margin: 16px 0;
}
.menu-mobile .btn-cont {
  width: max-content;
  margin: 8px auto;
}
.menu-mobile .avvenire-logo {
  margin-top: 57px;
  margin-left: 16px;
  width: 97px;
  height: 26px;
}

.mondoCEI {
  display: none;
}
.mondoCEI .submenu {
  display: flex;
  justify-content: space-between;
  padding: 48px 24px 0 24px;
}
.mondoCEI .content {
  padding: 15px 16px 0 48px;
}
.mondoCEI .content .titolo {
  font-size: var(--avvenire-typography-size-font-size-3);
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-s);
  letter-spacing: var(--avvenire-typography-font-tracking-normal);
  margin-bottom: 25px;
}
.mondoCEI .content a {
  text-decoration: none;
}
.mondoCEI .content .link {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
.mondoCEI .content .link p {
  text-decoration: none;
  color: black;
  font-size: var(--avvenire-typography-size-font-size-1);
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs);
  letter-spacing: var(--avvenire-typography-font-tracking-normal);
}

.topbar {
  display: flex;
  flex-direction: row;
  gap: 12px;
  list-style-type: none;
  align-items: center;
}
.topbar li {
  height: 100%;
}
.topbar li a {
  color: var(--text-primary, #000);
  /* Desktop/Body XS Bold */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  letter-spacing: 0.8px;
  text-decoration: none;
  vertical-align: middle;
}
.topbar li a i {
  font-size: 18px;
  margin-right: 5px;
}
.topbar li a:hover {
  color: var(--components-button-primary-hover, #6C7781);
  text-decoration: underline;
  cursor: pointer;
}
.topbar li a:focus-visible {
  border: 3px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 2px;
  color: var(--components-button-primary-hover, #6C7781);
  text-decoration: underline;
}
.topbar li .btn {
  height: 24px;
  padding: 4px 8px;
}
.topbar li .btn:hover {
  color: black;
  text-decoration: none;
  border-radius: 0;
}
.topbar li .btn:focus-visible {
  color: black;
  text-decoration: none;
  border-radius: 0 !important;
}

.bottombar {
  margin-top: 0px;
  margin-bottom: 24px;
  border-top: 1px solid var(--luoghi-color-neutral-400);
  border-bottom: 1px solid var(--luoghi-color-neutral-400);
}

.elementButton {
  display: flex;
  min-width: 56px;
  padding: var(--spacing-null, 0px) var(--spacing-s, 16px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xs, 8px);
  color: var(--text-primary, #000);
  /* Desktop/Body XS Bold */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs, 18px);
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  /**/
  margin: 0;
  padding: 40px 0 48px 0;
  background-color: var(--Luoghi-sfondo-sito);
}
.elementButton .btn {
  padding: 0 12px;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  height: 30px;
}
.navbar div:first-child {
  display: none;
}
.navbar div:last-child {
  display: block;
}
.navbar .nav-link {
  margin-left: 40px;
  color: var(--components-button-primary);
  font-size: var(--typography-size-font-size-1);
  font-weight: 700;
  line-height: var(--typography-line-height-xs);
  letter-spacing: var(--typography-font-tracking-normal);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.navbar button.nav-link {
  background-color: transparent;
  border: none;
}
.navbar .nav-link::first-letter {
  text-transform: uppercase;
}
.navbar .nav-link:first-child {
  margin-left: 16px;
}
.navbar .nav-link:last-child {
  margin-right: 13px;
}
.navbar .nav-link:hover {
  color: var(--components-button-primary-hover, #6C7781);
  text-decoration: underline;
}
.navbar .nav-link:focus-visible {
  border: 3px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 2px;
  color: var(--components-button-primary-hover, #6C7781);
  text-decoration: underline;
}
.navbar .btn-yellow {
  padding: 4px 8px;
  margin-right: 16px;
  height: 18px;
}

.nav-link-active {
  color: var(--text-accent) !important;
  color: var(--components-button-primary-hover, #6C7781);
}

.nav-link-active:hover {
  color: var(--components-button-primary-hover, #6C7781);
}

.nav-link-active-home {
  /*color: var(--text-brand-light) !important;*/
}

.st0 {
  fill: black;
  stroke: black;
}

.userDropdown {
  position: relative;
}

.userDropdown-content {
  display: none;
  flex-direction: column;
  min-width: 180px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  z-index: 1000;
  position: absolute;
  right: 16px;
  margin-top: 14px;
}
.userDropdown-content .area-personale,
.userDropdown-content .logout {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 18px !important;
  background: none;
  border: none;
  color: var(--text-primary, #000) !important;
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px) !important;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs, 18px);
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 0;
  text-decoration: none;
}
.userDropdown-content .logout {
  width: 100%;
}
.userDropdown-content .area-personale:hover,
.userDropdown-content .logout:hover {
  background: #f5f5f5;
  color: var(--text-accent, #A07800);
}
.userDropdown-content a:focus-visible,
.userDropdown-content button:focus-visible {
  outline: none;
  border: 3px solid var(--border-accent, #A07800) !important;
  background: #f5f5f5;
  color: var(--text-accent, #A07800);
  border-radius: 0 !important;
}

/* #endregion header */
/* #region login */
.login-popup {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background: #FFFFFF;
  z-index: 2000;
  overflow-y: auto;
}
.login-popup .modal {
  max-width: 100vw;
  max-height: 100vh;
  overflow-y: auto;
}
.login-popup .login-form {
  font-family: "Atkinson Hyperlegible", sans-serif;
}
.login-popup .close-btn {
  width: max-content;
  justify-self: right;
  justify-self: -moz-right;
}
.login-popup .login-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.16px;
  text-wrap-mode: nowrap;
  margin-bottom: 16px;
}
.login-popup .login-input {
  margin-bottom: 24px;
  text-align: center;
}
.login-popup .login-input input {
  border: 1px solid #c8cacd;
  border-radius: 4px;
  padding: 8px;
  line-height: 24px;
  height: 24px;
  width: 96%;
}
.login-popup .login-input input:focus-visible {
  border: 4px solid var(--border-accent) !important;
  border-radius: 4px;
}
.login-popup .form-control {
  border: 0px;
  height: 100%;
  width: 100%;
}
.login-popup .form-control:focus-visible {
  border: 0px;
  outline-width: 0;
}
.login-popup .text-danger {
  font-size: 14px;
  font-weight: 400;
  color: #FF0000;
  margin-bottom: 24px;
  text-align: left;
}
.login-popup .field-validation-error {
  margin-top: 8px;
  display: inline-block;
}
.login-popup .btn-social {
  font-size: 16px;
  font-weight: 400;
  padding: 8px;
  width: 220px;
  height: 59px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 15px;
  align-items: center;
  display: inline-flex;
}
.login-popup .btn-social .socialText {
  vertical-align: middle;
  margin-left: 10px;
}
.login-popup .btn-social .socialLogo {
  vertical-align: middle;
  margin-left: 12px;
}
.login-popup .btn-social:hover {
  opacity: 0.7;
}
.login-popup .btn-social:focus-visible {
  opacity: 0.7;
  border: 4px solid var(--border-accent);
}
.login-popup .btn-Facebook {
  background-color: #1877f2 !important;
  color: white;
  border: 2px solid #1877f2 !important;
}
.login-popup .btn-Facebook:focus-visible {
  border: 4px solid var(--border-accent) !important;
  border-radius: 4px;
  padding: 0px;
  height: 59px;
}
.login-popup .btn-OpenIdConnect {
  background-color: #000000;
  color: white;
  border: 2px solid #000000;
}
.login-popup .btn-OpenIdConnect:focus-visible {
  border: 4px solid var(--border-accent) !important;
  border-radius: 4px;
  padding: 0px;
  height: 59px;
}
.login-popup .btn-Google {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #858585;
  box-shadow: 0px 2px 2px -2px #858585;
}
.login-popup .btn-Google:focus-visible {
  border: 4px solid var(--border-accent) !important;
  border-radius: 4px;
  padding: 0px;
  height: 59px;
}
.login-popup .reset {
  font-size: 14px;
  font-weight: 400;
  color: #29343D;
  margin-bottom: 24px;
  text-align: left;
  text-wrap-mode: nowrap;
}
.login-popup .reset a:focus-visible {
  border: 2px solid var(--border-accent) !important;
  border-radius: 4px;
  padding: 2px;
}
.login-popup .link-reset {
  color: #00559F;
  text-decoration: none;
}
.login-popup .btn-accedi {
  background-color: #fabb00;
  border: 1px solid #fabb00;
  color: #000000;
  font-size: 14px !important;
  font-weight: 700;
  border-radius: 4px;
  padding: 8px;
  line-height: 24px;
  height: 44px;
  width: 100%;
  margin-bottom: 36px;
  cursor: pointer;
}
.login-popup .btn-accedi:hover {
  background-color: #FCD28E;
  border: 1px solid #FCD28E;
}
.login-popup .btn-accedi-disabled {
  background-color: #E7E8E9;
  border: 1px solid #E7E8E9;
  color: #747680;
  font-size: 14px !important;
  font-weight: 700;
  border-radius: 4px;
  padding: 8px;
  line-height: 24px;
  height: 44px;
  width: 100%;
  margin-bottom: 36px;
  cursor: no-drop;
}
.login-popup .btn-accedi:focus-visible, .login-popup .btn-registrati:focus-visible, .login-popup .btn-social:focus-visible {
  border: 4px solid var(--border-accent) !important;
}
.login-popup .registrati-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.16px;
  margin-bottom: 24px;
}
.login-popup .btn-registrati {
  background-color: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 4px;
  color: #000000;
  font-size: 14px !important;
  font-weight: 700;
  padding: 8px;
  line-height: 24px;
  height: 24px;
  width: 96%;
  text-decoration: none;
  display: block;
  margin-bottom: 40px;
}
.login-popup .grid {
  display: grid;
}
.login-popup .grid-template {
  grid-template-columns: repeat(6, 1fr);
  grid-column-gap: 16px;
  grid-template-rows: auto;
  padding: 16px;
}
.login-popup .grid-item-1 {
  grid-column: 1/span 6;
  grid-row: 1/1;
  text-align: center;
}
.login-popup .grid-item-2 {
  grid-column: 1/span 6;
  grid-row: 2/2;
  text-align: center;
}
.login-popup .grid-item-3 {
  grid-column: 1/span 6;
  grid-row: 3/3;
  text-align: center;
}
.login-popup .grid-item-4 {
  grid-column: 1/span 6;
  grid-row: 4/4;
  text-align: center;
}
.login-popup .grid-item-5 {
  grid-column: 1/span 6;
  grid-row: 5/5;
  text-align: center;
}

.login-popup.active {
  display: block;
  justify-content: center;
  align-items: center;
}

/* #endregion login */
/* #region page */
.page-title {
  color: var(--text-primary);
  font-size: var(--avvenire-typography-size-font-size-7);
  font-family: var(--luoghi-family-heading);
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0.5px;
  word-wrap: break-word;
}

.page-subtitle {
  color: var(--text-secondary);
  font-size: var(--avvenire-typography-size-font-size-2);
  font-family: var(--avvenire-family-body);
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.12px;
  word-wrap: break-word;
}

/* #endregion page */
/* #region NumberHomePage*/
.NumberHomePage .grid-template {
  padding: 0px 16px 24px 16px;
}
.NumberHomePage .grid-item-1 {
  grid-column: 1/span var(--columns-number);
}
.NumberHomePage .grid-item-2 {
  grid-column: 1/span var(--columns-number);
}
.NumberHomePage .grid-item-3 {
  grid-column: 1/span var(--columns-number);
}
.NumberHomePage .grid-item-4 {
  grid-column: 1/span var(--columns-number);
}
.NumberHomePage .grid-item-5 {
  grid-column: 1/span var(--columns-number);
}
.NumberHomePage .firstNumber {
  padding-bottom: 0;
}
.NumberHomePage .firstNumber .description-short {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
  transition: max-height 0.3s;
  position: relative;
}
.NumberHomePage .firstNumber .description-short.expanded {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  max-height: none;
  overflow: visible;
  cursor: pointer;
}
.NumberHomePage .firstNumber .description-short .read-more-hint {
  display: block;
  margin-bottom: 24px;
}
.NumberHomePage .firstNumber .read-more-hint {
  display: block;
  font-style: italic;
}
.NumberHomePage .firstNumber img {
  width: 238px;
  height: auto;
}
.NumberHomePage .firstNumber .image {
  text-align: center;
  margin-top: 7px;
}
.NumberHomePage .date {
  color: var(--luoghi-color-neutral-50);
  /* Mobile/Body XS Bold */
  font-family: var(--avvenire-family-body);
  font-size: var(--avvenire-typography-size-font-size-1);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs);
  letter-spacing: var(--avvenire-typography-font-tracking-normal);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.NumberHomePage .date:focus-visible {
  border: 5px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 2px;
  height: fit-content;
  width: fit-content;
}
.NumberHomePage .title {
  color: #FFF;
  font-family: var(--luoghi-family-heading);
  font-size: var(--avvenire-typography-size-font-size-7);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-l);
  letter-spacing: var(--avvenire-typography-font-tracking-extend);
  color: #FFF;
  margin-bottom: 12px;
}
.NumberHomePage .title:focus-visible {
  border: 5px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 2px;
  height: fit-content;
  width: fit-content;
}
.NumberHomePage .body {
  color: #FFF;
  /* Mobile/Body XS Regular */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 171.429% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}
.NumberHomePage .body:focus-visible {
  border: 5px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 2px;
  height: fit-content;
  width: fit-content;
}
.NumberHomePage .btn-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 24px 0;
  align-items: center;
}
.NumberHomePage .btn-container .btn {
  width: 140px;
}
.NumberHomePage .numbers .grid-template {
  padding-top: 35px;
  background-color: var(--Luoghi-sfondo-sito);
  grid-template-rows: 32px 1fr;
}
.NumberHomePage .numbers .item-title {
  color: var(--text-primary, #000);
  /* Mobile/Heading 4 Light */
  font-family: var(--luoghi-family-heading, Lora);
  font-size: var(--avvenire-typography-size-font-size-4, 21px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-m, 32px);
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}
.NumberHomePage .numbers .item-button {
  display: flex;
  width: 196px;
  height: 24px;
  min-width: 40px;
  padding: var(--spacing-xs, 8px);
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.NumberHomePage .numbers .item-img {
  margin-bottom: 16px;
}
.NumberHomePage .numbers .item-date::first-letter {
  text-transform: capitalize;
}
.NumberHomePage .numbers .articles {
  padding-top: 16px;
}

.swiper-container-hero {
  max-width: 796px;
  margin: 32px auto;
  position: relative;
  overflow: hidden;
  touch-action: none;
  padding-left: 40px; /* Almeno 40px per la freccia precedente */
  padding-right: 40px; /* Almeno 40px per la freccia successiva */
  box-sizing: border-box; /* Importante per non aggiungere larghezza totale */
}
.swiper-container-hero .swiper-close {
  display: none;
}
.swiper-container-hero .swiper-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.swiper-container-hero .swiper-header p {
  color: white;
  text-transform: uppercase;
}
.swiper-container-hero .slide-content img {
  z-index: 100;
}
.swiper-container-hero a {
  width: 217px;
  height: 24px;
}
.swiper-container-hero .swiper-pagination {
  background-color: none;
  position: relative;
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.swiper-container-hero .swiper-pagination .swiper-pagination-bullet {
  background: none;
  color: white;
  margin-left: 9px;
  height: auto;
  width: auto;
}
.swiper-container-hero .swiper-pagination .swiper-pagination-bullet-active::after {
  margin-left: 9px;
  content: "-----";
  letter-spacing: -2px;
}
.swiper-container-hero .swiper-pagination .swiper-pagination-bullet:last-child::after {
  content: "";
}
.swiper-container-hero .btn {
  height: 24px !important;
  padding: 8px !important;
}
.swiper-container-hero .swiper-slide-btn-preview {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.swiper-container-hero .swiper-button-prev, .swiper-container-hero .swiper-button-next {
  position: absolute;
  top: 50%;
  color: white !important;
  background-size: 20% auto;
  width: 30px !important;
  height: 30px !important;
}
.swiper-container-hero .swiper-navigation-disabled .swiper-button-prev,
.swiper-container-hero .swiper-navigation-disabled .swiper-button-next {
  display: block !important;
}
.swiper-container-hero .swiper-button-prev:after, .swiper-container-hero .swiper-button-next:after {
  font-size: 20px;
}

.hero {
  touch-action: none;
}

.hero-overlay {
  display: none;
}

/* #endregion NumberHomePage*/
/* #region explore */
.explore {
  padding: 48px 16px 22px 16px;
}
.explore .grid-item-1 {
  grid-column: 1/span var(--columns-number);
}
.explore .grid-item-2 {
  grid-column: 1/span var(--columns-number);
}
.explore .grid-item-3 {
  grid-column: 1/span var(--columns-number);
}
.explore .grid-item-4 {
  grid-column: 1/span var(--columns-number);
}
.explore .grid-item-5 {
  grid-column: 1/span var(--columns-number);
}
.explore *:focus-visible {
  border: 5px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 2px;
  height: fit-content;
  width: fit-content;
}
.explore .title {
  color: #FFF;
  /* Mobile/Heading 3 */
  font-family: var(--luoghi-family-heading, Lora);
  font-size: var(--avvenire-typography-size-font-size-5, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-m, 32px); /* 133.333% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin-bottom: 18px;
}
.explore .item-link {
  text-decoration: none;
}
.explore .item-link:hover {
  text-decoration: underline;
}
.explore .subtitle {
  color: var(--text-accent-invert, #FABB00);
  /* Mobile/Body XL Bold */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-3, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 133.333% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin-bottom: 16px;
}
.explore .content {
  color: var(--text-primary-invert, #FFF);
  /* Mobile/Body XS Bold */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin-bottom: 24px;
}
.explore .img-container {
  margin-bottom: 42px;
  text-align: center;
}
.explore .img-style {
  width: 190px;
  height: auto;
}
.explore .btn-container {
  text-align: -webkit-center;
}
.explore .btn-accent {
  display: flex;
  width: 227px;
  height: 40px;
  min-width: 40px;
  padding: var(--spacing-xs, 8px);
  justify-content: center;
  align-items: center;
  gap: 14px;
  align-self: stretch;
  margin-bottom: 8px;
  padding: 0;
}
.explore .btn-secondary {
  color: var(--text-primary-invert, #FFF);
  /* Desktop/Body XS Bold */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  /**/
  display: flex;
  width: 227px;
  height: 40px;
  min-width: 40px;
  padding: var(--spacing-xs, 8px);
  justify-content: center;
  align-items: center;
  gap: 14px;
  /*margin-bottom: 22px;*/
  border-radius: var(--radius-radius-null, 0px);
  border: 1px solid var(--border-primary-invert, #FFF);
  padding: 0;
  text-decoration: none;
}

/* #endregion explore */
/* #region number */
.number .grid-template {
  padding: 10px 16px;
}
.number .grid-item-1 {
  /* PageTitle */
  grid-column: 1/span var(--columns-number);
  grid-row: 1/1;
}
.number .grid-item-2 {
  /* MagazineNumber */
  grid-column: 1/span var(--columns-number);
  grid-row: 2/2;
}
.number .grid-item-3 {
  /* coverimg */
  grid-column: 1/span var(--columns-number);
  grid-row: 3/3;
}
.number .grid-item-4 {
  /* btn-container */
  grid-column: 1/span var(--columns-number);
  grid-row: 4/4;
}
.number .grid-item-5 {
  /* Eyelet */
  grid-column: 1/span var(--columns-number);
  grid-row: 5/5;
}
.number .grid-item-6 {
  /* DossierTitle */
  grid-column: 1/span var(--columns-number);
  grid-row: 6/6;
}
.number .grid-item-7 {
  /* DescriptionLong */
  grid-column: 1/span var(--columns-number);
  grid-row: 7/7;
}
.number *:focus-visible {
  border: 5px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 2px;
  height: fit-content;
  width: fit-content;
}
.number .link-back {
  display: inline-flex;
  height: 56px;
  min-width: 56px;
  padding: 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  cursor: pointer;
  color: var(--text-primary, #000);
  /* Desktop/Body XS Bold */
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin-left: 16px;
}
.number .item-link-back {
  display: inline-flex;
  height: 56px;
  min-width: 56px;
  padding: 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  cursor: pointer;
  color: var(--text-primary, #000);
  /* Desktop/Body XS Bold */
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin-left: 4px;
}
.number .item-link-back:focus-visible {
  border: 3px solid var(--border-accent, #A07800);
  border-radius: 0;
  padding: 4px;
  text-decoration: underline;
}
.number .page-title {
  color: var(--text-primary, #000);
  /* Mobile/Heading 1 Light */
  font-family: var(--luoghi-family-heading);
  font-size: var(--avvenire-typography-size-font-size-7, 32px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-l, 40px); /* 125% */
  letter-spacing: var(--avvenire-typography-font-tracking-extend, 0.5px);
  margin-bottom: 8px;
}
.number .magazineN {
  color: var(--text-secondary, #29343D);
  /* Desktop/Body XS Regular */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin-bottom: 24px;
}
.number .previewTitle {
  color: var(--text-primary, #000);
  /* Mobile/Heading 3 */
  font-family: var(--luoghi-family-heading, Lora);
  font-size: var(--avvenire-typography-size-font-size-5, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-m, 32px); /* 133.333% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin: 0 16px 32px 16px;
}
.number .btn-container {
  display: flex;
  /*justify-content: space-between;*/
  gap: 16px;
  margin: 32px 0 32px 0;
}
.number .btn:focus-visible {
  height: initial;
  width: initial;
  border-radius: 0;
  padding: 0 16px;
}
.number .eyelet {
  color: var(--text-secondary, #29343D);
  /* Mobile/Body XS Bold */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin: 0 0 8px 0;
}
.number .title {
  color: var(--text-primary, #000);
  /* Mobile/Heading 2 */
  font-family: var(--luoghi-family-heading, Lora);
  font-size: var(--avvenire-typography-size-font-size-6, 28px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-m, 32px); /* 114.286% */
  letter-spacing: var(--avvenire-typography-font-tracking-extend, 0.5px);
  margin: 0 0 32px 0;
}
.number .descriptionLong {
  color: var(--text-primary, #000);
  /* Mobile/Body Regular */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-2, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 150% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin: 0 0 32px 0;
}
.number .articles {
  padding: 0px;
  margin: 0 16px 32px 16px;
}

/* #endregion number */
/* #region cart */
.cart-head {
  background-color: var(--Luoghi-sfondo-sito);
}
.cart-head .item-img {
  grid-column: 1/span 2;
  grid-row: 1/span 2;
}
.cart-head .item-date {
  grid-row: 1/1;
  grid-column: 3/span 4;
  color: var(--text-primaryv);
  /* Mobile/Heading 5 */
  font-family: var(--luoghi-family-heading);
  font-size: var(--avvenire-typography-size-font-size-3);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-s);
  letter-spacing: var(--avvenire-typography-font-tracking-normal);
}
.cart-head .item-title {
  grid-row: 2/2;
  grid-column: 3/span 4;
  color: var(--text-primary);
  font-family: var(--luoghi-family-heading);
  font-size: var(--avvenire-typography-size-font-size-4);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-m);
  letter-spacing: var(--avvenire-typography-font-tracking-normal);
}
.cart-head .item-button {
  grid-column: 1/span var(--columns-number);
}

/* #endregion cart */
/* #region article */
.article .grid-template {
  padding: 10px 16px;
}
.article .grid-item-1 {
  /* Title */
  grid-column: 1/span var(--columns-number);
  grid-row: 2/2;
}
.article .grid-item-2 {
  /* Sign */
  grid-column: 1/span var(--columns-number);
  grid-row: 3/3;
}
.article .grid-item-3 {
  /* PageSubTitle */
  grid-column: 1/span var(--columns-number);
  grid-row: 4/4;
}
.article #readspeaker_button1 {
  grid-column: 1/span var(--half-columns);
  grid-row: 5/5;
}
.article .share-container {
  grid-column: var(--half-columns-start)/span var(--half-columns);
  grid-row: 5;
}
.article .share-popup {
  grid-row: 5;
}
.article .grid-item-4 {
  /* homeimg */
  grid-column: 1/span var(--columns-number);
  grid-row: 6/6;
  position: relative;
  float: right;
}
.article .hoverImg {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  justify-content: center;
  align-items: center;
}
.article figure .hoverImg {
  margin-bottom: 12px;
}
.article .grid-item-4:hover .hoverImg, .article figure:hover .hoverImg {
  display: flex;
  cursor: pointer;
}
.article .grid-item-5 {
  /* ImageHomeCaption */
  grid-column: 1/span var(--columns-number);
  grid-row: 7/7;
}
.article .grid-item-6 {
  /* Content */
  grid-column: 1/span var(--columns-number);
  grid-row: 8/8;
}
.article .grid-template-back {
  padding: 27px 16px 17px 16px;
}
.article .link-back {
  grid-column: 1/span var(--columns-number);
  grid-row: 1/1;
  /*height: 56px;*/
  /*min-width: 56px;*/
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  cursor: pointer;
  color: var(--text-primary, #000);
  /* Desktop/Body XS Bold */
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}
.article .item-link-back {
  display: inline-flex;
  /*        height: 56px;
  min-width: 56px;*/
  padding: 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  cursor: pointer;
  color: var(--text-primary, #000);
  /* Desktop/Body XS Bold */
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}
.article .item-link-back:focus-visible {
  border: 3px solid var(--border-accent, #A07800);
  border-radius: 0;
  padding: 4px;
  text-decoration: underline;
}
.article .title {
  color: #000;
  /* Mobile/Heading 1 Light */
  font-family: var(--luoghi-family-heading, Lora);
  font-size: var(--avvenire-typography-size-font-size-7, 32px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-l, 40px); /* 125% */
  letter-spacing: var(--avvenire-typography-font-tracking-extend, 0.5px);
  margin-bottom: 16px;
}
.article .sign {
  color: var(--text-secondary, #29343D);
  /* Mobile/Body XS Regular */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: italic;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 171.429% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin: 0 0 16px 0;
}
.article .sign * {
  font-style: italic !important;
}
.article .pageSubtitle {
  color: var(--text-secondary, #29343D);
  /* Mobile/Body XS Regular */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 171.429% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin: 0 0 24px 0;
}
.article .imageCaption {
  color: var(--text-secondary, #29343D);
  /* Mobile/Body XS Regular */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin: 0 0 16px 0;
}
.article .article-content {
  margin-bottom: 64px;
}
.article .article-content p {
  color: #000;
  /* Mobile/Body Regular */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-2, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 150% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin: 24px 0 16px 0;
}
.article .article-content .dropcap::first-letter {
  font-size: 70px;
  float: left;
  margin-right: 5px;
  line-height: 1;
}
.article .article-content img {
  margin: 0 !important;
  width: 100%;
  height: auto;
}
.article .article-content figCaption {
  color: var(--text-secondary, #29343D);
  /* Mobile/Body XS Regular */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: calc(var(--avvenire-typography-line-height-s, 24px) / 2);
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin: 4px 0 16px 0;
}
.article .article-content .abbonati {
  border: 1px solid black;
  max-width: 588px;
  margin: 48px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-l, 32px) var(--spacing-null, 0px);
  border-radius: var(--radius-radius-rounded, 8px);
}
.article .article-content .abbonati h3 {
  color: var(--text-primary, #000);
  text-align: center;
  /* Desktop/Heading 3 */
  font-family: var(--text-family-heading, Lora);
  font-size: var(--avvenire-typography-size-font-size-6, 28px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-m, 32px); /* 114.286% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}
.article .article-content .abbonati .sottotitolo {
  color: var(--text-primary, #000);
  text-align: center;
  /* Desktop/Body Regular */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-2, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 150% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin-top: 8px;
  margin-bottom: 32px;
}
.article .article-content .abbonati .btn svg {
  margin-left: 8px;
}
.article .article-content .abbonati .info {
  color: var(--text-primary, #000);
  text-align: center;
  /* Desktop/Body XL Regular */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-3, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 133.333% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin: 0;
  margin-top: 32px;
}
.article .article-content .abbonati .info a {
  color: var(--text-link, #6D5200);
  /* Desktop/Body XL Bold */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-3, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-s, 24px);
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  text-decoration: none;
}
.article .article-content .abbonati #login-abb {
  cursor: pointer;
}
.article .more-articles-title {
  color: #000;
  /* Mobile/Heading 2 Light */
  font-family: var(--luoghi-family-heading, Lora);
  font-size: var(--avvenire-typography-size-font-size-6, 28px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-m, 32px);
  letter-spacing: var(--avvenire-typography-font-tracking-extend, 0.5px);
  margin: 0 16px 16px 16px;
}
.article .more-articles-title:focus-visible {
  border: 5px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 2px;
  height: fit-content;
  width: fit-content;
}
.article .articles {
  padding: 16px !important;
}
.article .articles .article-card {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  padding: 0;
  margin: 0;
}
.article .articles .article-card .border {
  grid-column: 4/span 2;
  grid-row: 1/span 2;
  text-align: -webkit-right;
}
.article .articles .article-card .border img {
  display: flex;
  width: 118px;
  height: 89px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.article .articles .article-card .title {
  color: var(--text-primary, #000);
  /* Mobile/Heading 5 */
  font-family: var(--luoghi-family-heading, Lora);
  font-size: var(--avvenire-typography-size-font-size-3, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-s, 24px);
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  align-self: stretch;
  grid-column: 1/span 3;
  grid-row: 1/1;
}
.article .articles .article-card .body {
  color: var(--text-secondary, #29343D);
  /* Mobile/Body XS Regular */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px);
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  grid-column: 1/span 3;
  grid-row: 2/2;
}
.article .articles .article-card .sign {
  display: none;
}

.articles {
  background-color: var(--Luoghi-sfondo-sito);
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: auto;
  grid-template-rows: auto;
  gap: 24px;
  padding: 10px;
  /*a:hover {
      .title {
          text-decoration: underline;
          margin-top: 4px;
      }
  }

  .title:hover {
      margin-top: 12px !important;
  }

  .body:hover {
      margin-top: 12px !important;
  }

  .sign:hover {
      margin-top: 12px !important;
  }*/
}
.articles a {
  text-decoration: none;
}
.articles a:focus-visible .border img {
  border: 4px solid #fff;
  box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.32);
}
.articles a:focus-visible .title {
  text-decoration: underline;
  border: 6px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 4px;
  width: fit-content;
}
.articles .article-card .title {
  color: var(--text-primary);
  font-family: var(--luoghi-family-heading);
  font-size: var(--avvenire-typography-size-font-size-3);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-s);
  letter-spacing: var(--avvenire-typography-font-tracking-normal);
  margin-bottom: 8px;
}
.articles .article-card .body {
  color: var(--text-secondary, #29343D);
  /* Mobile/Body XS Regular */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 171.429% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin-bottom: 8px;
}
.articles .article-card .sign {
  color: var(--text-secondary, #29343D);
  font-family: var(--avvenire-family-body);
  font-size: var(--avvenire-typography-size-font-size-1);
  font-style: italic !important;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s);
  letter-spacing: var(--avvenire-typography-font-tracking-normal);
}
.articles .article-card img {
  aspect-ratio: 587/440;
  object-fit: cover;
}
.articles .article-card:hover img {
  border: 4px solid #fff;
  box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.32);
}
.articles .article-card:hover .title {
  text-decoration: underline;
  margin-top: 4px;
}

/* #endregion article */
/* #region btn */
.btn {
  padding: 0 16px;
  display: flex;
  cursor: pointer;
  height: 56px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.btn:focus-visible {
  border: 4px solid var(--border-accent) !important;
  outline: none;
}

.btn-black {
  font-size: 14px;
  font-family: Atkinson Hyperlegible;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.12px;
  word-wrap: break-word;
  color: white;
  background-color: #0E1215;
  border-radius: 0;
}

.btn-black:hover {
  background-color: var(--button-primary-hover);
}

.btn-black:disabled, .btn-yellow:disabled {
  background-color: var(---button-disabled);
}

.btn-yellow {
  background-color: #fabb00;
  border-radius: 0;
  color: #000000;
  border: none;
  font-size: 14px;
  font-family: Atkinson Hyperlegible;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.12px;
  text-decoration: none;
}

.btn-yellow:hover {
  background-color: var(--button-accent-hover);
}

.btn-transparent {
  background-color: transparent;
  border-radius: 0;
  color: black;
  border: 1px solid black;
  font-size: 14px;
  font-family: Atkinson Hyperlegible;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.12px;
  word-wrap: break-word;
  border: 1px solid var(--components-button-secondary, #000);
}

.btn-transparent:hover {
  text-decoration: underline;
}

.btn-transparent:disabled {
  border: 1px solid var(--border-secondary);
}

/* #endregion btn */
/* #region dropdown */
.mydropdown {
  position: relative;
  display: inline-block;
}

.mydropdown-button {
  background-color: transparent;
  border: 1px solid #ccc;
  padding: 10px;
  cursor: pointer;
  width: 200px;
  text-align: center;
  border-radius: 4px;
}
.mydropdown-button i {
  margin-right: 5px;
  margin-left: 30px;
}

.mydropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  z-index: 100;
  width: 167px;
  margin-top: 1px;
}
.mydropdown-content label {
  display: flex;
  margin-bottom: 15px;
  margin-left: 15px;
  gap: 15px;
  line-height: 1;
  user-select: none;
}
.mydropdown-content label:last-child {
  margin-bottom: 0;
}
.mydropdown-content input[type=checkbox] {
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.mydropdown:hover .mydropdown-content,
.mydropdown:focus-within .mydropdown-content {
  display: block;
}

/* #endregion dropdown */
/* #region numberArticle*/
.page-numberArticle .numberArticle-head div {
  background-color: var(--Luoghi-sfondo-sito);
}
.page-numberArticle .numberArticle-head .grid-item-1 {
  /* PageTitle */
  grid-column: 1/span var(--columns-number);
  grid-row: 1/1;
}
.page-numberArticle .numberArticle-head .grid-item-2 {
  /* PageSubTitle */
  grid-column: 1/span var(--columns-number);
  grid-row: 2/2;
}
.page-numberArticle .numberArticle-head .grid-item-3 {
  /* filterTitle */
  grid-column: 1/span var(--columns-number);
  grid-row: 3/3;
  text-align: start;
}
.page-numberArticle .numberArticle-head .grid-item-4 {
  /* filter-dropdown */
  grid-column: 1/span var(--columns-number);
  grid-row: 4/4;
}
.page-numberArticle .numberArticle-head .pageTitle {
  color: var(--text-primary, #000);
  /* Mobile/Heading 1 Light */
  font-family: var(--luoghi-family-heading, Lora);
  font-size: var(--avvenire-typography-size-font-size-7, 32px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-l, 40px);
  letter-spacing: var(--avvenire-typography-font-tracking-extend, 0.5px);
  margin-bottom: 8px;
}
.page-numberArticle .numberArticle-head .pageSubTitle {
  color: var(--text-secondary, #29343D);
  /* Mobile/Body Regular */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-2, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px);
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin-bottom: 12px;
}
.page-numberArticle .numberArticle-head .filterTitle {
  color: var(--text-secondary, #29343D);
  /* Desktop/Body XXS Bold */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-0, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xxs, 16px);
  letter-spacing: var(--avvenire-typography-font-tracking-extend, 0.5px);
  margin-bottom: 8px;
}
.page-numberArticle .numberArticle-body {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 8px));
  background-color: var(--Luoghi-sfondo-sito);
}
.page-numberArticle .numberArticle-body .numberArticle-card {
  margin: 0px 0 30px 0;
}
.page-numberArticle .numberArticle-body .numberArticle-card .magazineN {
  color: var(--text-primary, #000);
  /* Desktop/Heading 5 */
  font-family: var(--luoghi-family-heading, Lora);
  font-size: var(--avvenire-typography-size-font-size-3, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-s, 24px);
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin: 16px 0 8px 0;
}
.page-numberArticle .numberArticle-body .numberArticle-card .descriptionShort {
  color: var(--text-secondary, #29343D) !important;
  /* Desktop/Body XXS Regular */
  font-family: var(--text-family-body, "Atkinson Hyperlegible") !important;
  font-size: var(--avvenire-typography-size-font-size-0, 12px) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: var(--avvenire-typography-line-height-xxs, 16px) !important;
  letter-spacing: var(--avvenire-typography-font-tracking-extend, 0.5px) !important;
  background-color: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}
.page-numberArticle .numberArticle-body .numberArticle-card a {
  text-decoration: none;
}
.page-numberArticle .numberArticle-body .numberArticle-card a:focus-visible img {
  border: 3px solid var(--icon-brand, #6D5200);
  box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.32);
  /*border-radius: 2px;*/
}
.page-numberArticle .numberArticle-body .numberArticle-card a:focus-visible .card-txt {
  border: 6px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 4px;
}
.page-numberArticle .numberArticle-body .numberArticle-card a:focus-visible .magazineN {
  text-decoration: underline;
  margin-top: 0px;
}
.page-numberArticle .numberArticle-body .numberArticle-card:hover a img {
  border: 3px solid var(--icon-brand, #6D5200);
  box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.32);
}
.page-numberArticle .numberArticle-body .numberArticle-card:hover a .magazineN {
  text-decoration: underline;
  margin-top: 10px;
}
.page-numberArticle .btnSearch {
  text-align: center;
  align-content: center;
}

/* #endregion numberArticle*/
/* #region footer */
.footer {
  background-color: var(--luoghi-color-neutral-700);
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: auto;
  grid-template-rows: auto;
  gap: 24px;
  padding: 40px 16px 28px 16px;
}
.footer .st1 {
  fill: white;
  stroke: white;
}
.footer .item-loghi {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer #Logo_footer {
  width: 345px;
  margin-bottom: 20px;
}
.footer .section-title {
  color: var(--text-primary-invert, #FFF);
  font-size: var(--typography-size-font-size-1, 14px);
  font-weight: 700;
  line-height: var(--typography-line-height-xs, 18px);
  letter-spacing: var(--typography-font-tracking-normal, 0.16px);
  width: max-content;
}
.footer a {
  color: var(--text-primary-invert, #FFF);
  /* Mobile/Body XS Regular */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--typography-line-height-xs, 18px);
  letter-spacing: var(--typography-font-tracking-normal, 0.16px);
  text-decoration: none;
}
.footer .link-list {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: auto auto;
  gap: 16px;
  margin-top: 24px;
  padding-bottom: 24px;
  padding-left: 0px;
  border-bottom: 1px solid var(--avvenire-color-primary-600, #004784);
}
.footer .link-list a {
  width: max-content;
}
.footer .item-button {
  border-bottom: 1px solid var(--avvenire-color-primary-600, #004784);
}
.footer .item-button a {
  width: max-content;
  padding: 8px;
  height: 24px;
  color: var(--text-primary, #000);
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs, 18px);
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}
.footer .item-button .btn:focus-visible {
  border: 4px solid var(--border-primary-invert, #FFF) !important;
}
.footer .item-links {
  margin-top: 16px;
}
.footer .item-contacts .section-title {
  margin-bottom: 24px;
}
.footer .item-contacts .contacts-text {
  margin: 0px 0px 16px 0px;
  color: var(--text-primary-invert, #FFF);
  font-size: var(--typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--typography-font-tracking-normal, 0.16px);
  width: max-content;
}
.footer .item-contacts .contacts-mail {
  color: var(--text-primary-invert, #FFF);
  font-size: var(--typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--typography-font-tracking-normal, 0.16px);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin: 16px 0px;
}
.footer .item-contacts .contacts-title {
  margin-top: 65px;
  margin-bottom: 24px;
  color: var(--text-primary-invert, #FFF);
  font-size: var(--typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--typography-font-tracking-normal, 0.16px);
  width: max-content;
}
.footer .item-contacts .contacts-title:focus-visible, .footer .item-contacts .contacts-text:focus-visible, .footer .item-contacts .contacts-mail a:focus-visible {
  border: 2px solid var(--border-primary-invert, #FFF);
  border-radius: 0;
  padding: 4px;
  text-decoration: none;
}

/* #endregion footer */
/* #region link-list */
.link-list {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 24px;
  padding: 10px;
}

.lower-footer {
  background: var(--luoghi-color-neutral-800, #1C2329);
  padding: var(--spacing-m, 24px) var(--spacing-s, 16px) var(--spacing-l, 32px) var(--spacing-s, 16px);
}
.lower-footer .hlist-links {
  padding: 0;
}
.lower-footer .hlist-links .item-link {
  grid-column: span 2;
  margin-bottom: 24px;
  color: var(--text-primary-invert, #FFF);
  font-size: var(--typography-size-font-size-0, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--typography-line-height-xxs, 16px); /* 133.333% */
  letter-spacing: var(--typography-font-tracking-extend, 0.5px);
  text-decoration: none;
}
.lower-footer .item-link:hover {
  text-decoration: underline;
}
.lower-footer .item-link:focus-visible, .lower-footer .item-copyright:focus-visible {
  border: 2px solid var(--border-primary-invert, #FFF);
  border-radius: 0;
  padding: 4px;
  text-decoration: none;
}
.lower-footer .item-copyright {
  color: var(--text-secondary-invert, #989DA2);
  font-size: var(--typography-size-font-size-0, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--typography-line-height-xxs, 16px); /* 133.333% */
  letter-spacing: var(--typography-font-tracking-extend, 0.5px);
}
.lower-footer .item-copyright:focus-visible {
  border: 2px solid var(--border-primary-invert, #FFF);
  border-radius: 0;
  padding: 4px;
}

/* #endregion footer */
/* #region explore-content */
.explore-content {
  margin-bottom: 80px;
}
.explore-content .page-title {
  margin: 0 16px 16px 16px;
}
.explore-content .page-title:focus-visible {
  border: 5px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 2px;
  height: fit-content;
  width: fit-content;
}
.explore-content .page-subtitle {
  margin: 0 16px 40px 16px;
}
.explore-content .page-subtitle:focus {
  border: 5px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 2px;
  height: fit-content;
  width: fit-content;
}
.explore-content hr {
  margin-left: 16px;
}
.explore-content .cart-head {
  background-color: var(--Luoghi-sfondo-sito);
}
.explore-content .cart-head .item-img {
  grid-column: 1/span 2;
  grid-row: 1/span 2;
}
.explore-content .cart-head .item-date {
  grid-row: 2/2;
  grid-column: 1/span 3;
  color: var(--text-secondary, #29343D);
  font-family: var(--avvenire-family-body);
  font-size: var(--avvenire-typography-size-font-size-1);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs);
  letter-spacing: var(--avvenire-typography-font-tracking-normal);
  align-content: center;
  text-transform: uppercase;
}
.explore-content .cart-head .item-date:focus-visible {
  border: 5px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 2px;
  height: fit-content;
  width: fit-content;
}
.explore-content .cart-head .item-title {
  grid-row: 1/1;
  grid-column: 1/span var(--columns-number);
  color: var(--text-accent);
  /* Mobile/Heading 3 Light */
  font-family: var(--luoghi-family-heading);
  font-size: var(--avvenire-typography-size-font-size-5);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-m);
  letter-spacing: var(--avvenire-typography-font-tracking-normal);
  margin: 24px 0 18px 0;
}
.explore-content .cart-head .item-title:focus-visible {
  border: 5px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 2px;
  height: fit-content;
  width: fit-content;
}
.explore-content .cart-head .item-link {
  grid-row: 2/2;
  grid-column: 4/span 3;
  color: var(--text-primary, #000);
  /* Mobile/Body Regular */
  font-family: var(--avvenire-family-body);
  font-size: var(--avvenire-typography-size-font-size-2);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s);
  letter-spacing: var(--avvenire-typography-font-tracking-normal);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-align: end;
}
.explore-content .articles .article-card .title {
  margin-top: 16px;
}

/* #endregion explore-content */
/* #region slider10number */
.slider10number {
  width: 100%;
  padding: 80px 0;
  position: relative;
  background-color: var(--Luoghi-sfondo-sito);
}
.slider10number .slider-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 20px 20px 20px;
  gap: 20px;
}
.slider10number .slider-header .discover-cont {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: baseline;
}
.slider10number .eyelet {
  color: var(--text-accent);
  font-size: var(--avvenire-typography-size-font-size-1);
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs);
  letter-spacing: var(--avvenire-typography-font-tracking-normal);
  margin-bottom: 15px;
}
.slider10number .slider-title {
  color: var(--text-primary, #000);
  font-family: var(--text-family-heading, Lora);
  font-size: var(--avvenire-typography-size-font-size-5, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-m, 32px);
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}
.slider10number .slider-title:focus-visible {
  border: 5px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 2px;
  height: fit-content;
  width: fit-content;
}
.slider10number .discover-link {
  color: #333;
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
}
.slider10number .discover-link:focus-visible {
  border: 4px solid var(--border-accent, #A07800);
  padding: 4px;
  border-radius: 0;
}
.slider10number .mySwiper {
  margin-left: 20px;
}
.slider10number .swiper-slide:hover a img {
  border: 3px solid var(--icon-brand, #6D5200);
  box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.32);
}
.slider10number .swiper-slide a:focus-visible img {
  border: 8px solid var(--border-accent, #A07800);
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.32);
  border-radius: 2px;
}
.slider10number .swiper-button-next,
.slider10number .swiper-button-prev {
  position: static !important;
  color: #333;
}
.slider10number .swiper-button-next {
  margin-right: 20px;
}
.slider10number .swiper-button-prev:after, .slider10number .swiper-button-next:after {
  font-size: 16px;
}

/* #endregion slider10number */
/* #region bigSlider */
.bigSlider {
  position: relative;
  background-color: var(--Luoghi-sfondo-sito);
  padding-top: 30px;
  overflow-x: hidden;
}
.bigSlider .item-cont {
  padding-bottom: 31px;
}
.bigSlider .swiper-slide {
  background: #FDE5C4;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-height: 300px;
  height: 100%;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bigSlider .swiper-slide .img-cont {
  margin: 32px 76px;
}
.bigSlider .swiper-slide .btn-container {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 40px;
  margin-bottom: 31px;
}
.bigSlider .swiper-slide .btn-container .btn {
  text-decoration: none;
}
.bigSlider .swiper-slide .btn-container .btn-black {
  border: 1px solid black;
}
.bigSlider .swiper-slide .btn-container .btn-transparent {
  text-decoration: none;
}
.bigSlider .swiper-slide .btn-container .btn-transparent:hover {
  text-decoration: underline;
}
.bigSlider .text-content {
  margin-top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto 37px;
}
.bigSlider .text-content .eyelet {
  font-size: var(--avvenire-typography-size-font-size-1);
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-m);
  letter-spacing: var(--avvenire-typography-font-tracking-normal);
}
.bigSlider .text-content .title {
  color: var(--text-primary, #000);
  font-family: "Libre Caslon Text";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.16px);
  margin: 16px 0;
}
.bigSlider .text-content .title:focus-visible {
  border: 5px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 2px;
  height: fit-content;
  width: fit-content;
}
.bigSlider .text-content .desc {
  color: var(--text-primary, #000);
  /* Mobile/Body Regular */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--typography-size-font-size-2, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--typography-line-height-s, 24px);
  letter-spacing: var(--typography-font-tracking-normal, 0.16px);
}
.bigSlider .text-content .desc:focus-visible {
  border: 5px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 2px;
  height: fit-content;
  width: fit-content;
}
.bigSlider .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.bigSlider .swiper-slide-active:hover .text-content .title {
  text-decoration: underline;
}
.bigSlider .swiper-button-next,
.bigSlider .swiper-button-prev {
  position: absolute !important;
  color: #2c3e50 !important;
  top: 22%;
}
.bigSlider .swiper-button-next {
  margin-right: 15px;
}
.bigSlider .swiper-button-prev {
  margin-left: 15px;
}
.bigSlider .swiper-button-prev:after, .bigSlider .swiper-button-next:after {
  font-size: 24px;
}

/* #endregion bigSlider */
/* #region redazione */
.redazione {
  margin: 0 16px 64px 16px;
}
.redazione .pageTitle {
  color: var(--text-primary, #000);
  /* Mobile/Heading 1 Light */
  font-family: var(--luoghi-family-heading, Lora);
  font-size: var(--avvenire-typography-size-font-size-7, 32px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-l, 40px);
  letter-spacing: var(--avvenire-typography-font-tracking-extend, 0.5px);
  margin-bottom: 26px;
}
.redazione .contacts *:focus-visible {
  border: 5px solid var(--border-accent, #A07800);
  border-radius: 8px;
  padding: 2px;
  height: fit-content;
  width: fit-content;
}
.redazione .contacts .title {
  color: var(--text-primary, #000);
  /* Mobile/Heading 4 */
  font-family: var(--luoghi-family-heading, Lora);
  font-size: var(--avvenire-typography-size-font-size-4, 21px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-s, 24px);
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin-bottom: 32px;
}
.redazione .contacts .subtitle {
  color: var(--text-primary, #000);
  /* Mobile/Body XS Bold */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs, 18px);
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin-bottom: 16px;
}
.redazione .contacts .contact {
  color: var(--text-secondary, #29343D);
  /* Mobile/Body Regular */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-2, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px);
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin-bottom: 16px;
}
.redazione .contacts .contact a {
  text-decoration: none;
  color: var(--text-link, #6D5200);
  /* Desktop/Body Regular */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-2, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 150% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}
.redazione .contacts .contact i {
  margin-right: 8px;
}
.redazione .contacts .content {
  margin-bottom: 48px;
}
.redazione .contacts .chi-siamo {
  color: var(--text-primary, #000);
  /* Mobile/Heading 4 */
  font-family: var(--luoghi-family-heading, Lora);
  font-size: var(--avvenire-typography-size-font-size-4, 21px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-s, 24px);
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin-bottom: 32px;
}
.redazione .contacts .people .person {
  display: flex;
  align-items: center;
  gap: var(--spacing-s, 16px);
  align-self: stretch;
  margin-bottom: 24px;
}
.redazione .contacts .people .person .job {
  color: var(--text-secondary, #29343D);
  /* Desktop/Body XL Regular */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-3, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px);
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}
.redazione .contacts .people .person .name-surname {
  color: var(--text-secondary, #29343D);
  /* Desktop/Body XL Bold */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-3, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-s, 24px);
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}

/* #endregion redazione */
/* #region search */
#cerca-app {
  display: none;
}

#cerca-app.show {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.search-cont {
  position: absolute;
  width: 100%;
  margin-top: 143px;
  z-index: 1000;
}
.search-cont .search-header {
  padding: 0 16px 32px 16px;
  background-color: white;
  max-width: 1196px;
  box-shadow: var(--spacing-null, 0px) var(--spacing-xs, 8px) var(--spacing-s, 16px) -8px rgba(0, 0, 0, 0.24);
}
.search-cont .search-header .top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 24px;
}
.search-cont .search-header .top h4 {
  color: var(--text-primary, #000);
  font-family: var(--luoghi-family-heading, Lora);
  font-size: var(--avvenire-typography-size-font-size-4, 21px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 114.286% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}
.search-cont .search-header .top p {
  color: var(--text-secondary, #29343D);
  /* Mobile/Body XS Regular */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 171.429% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  padding-top: 8px;
}
.search-cont .search-header .top img {
  cursor: pointer;
}
.search-cont .search-header hr {
  margin-top: 16px;
}
.search-cont .search-header .bottom {
  max-width: 792px;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-end;
  justify-content: space-between;
}
.search-cont .search-header .bottom .sx {
  width: 100%;
}
.search-cont .search-header .bottom .sx .box {
  border-radius: var(--radius-radius-smooth, 4px);
  border: 1px solid var(--border-secondary, #C8CACD);
  background: var(--surface-primary, #FFF);
  display: flex;
  height: 40px;
  padding: var(--spacing-xxs, 4px) var(--spacing-xs, 8px);
  align-items: center;
  gap: var(--spacing-xs, 8px);
  justify-content: space-between;
}
.search-cont .search-header .bottom .sx .box input {
  width: 100%;
  border: none;
  color: var(--text-primary, #000);
  /* Desktop/Body XS Regular */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}
.search-cont .search-header .bottom .sx p {
  margin-bottom: 8px;
}
.search-cont .search-header .bottom .dx {
  text-decoration: none;
  display: flex;
  height: 33px;
  width: 86px;
  padding: var(--spacing-xs, 8px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xs, 8px);
}
.search-cont .search-header .advanced {
  max-width: 792px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(var(--columns-number), 1fr);
}
.search-cont .search-header .advanced .item-1 {
  grid-column: 1/span var(--half-columns);
  grid-row: 1;
  display: flex;
  align-items: center;
}
.search-cont .search-header .advanced .item-1 div {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.search-cont .search-header .advanced .item-1 div p {
  color: var(--text-primary, #000);
  /* Desktop/Body XS Bold */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}
.search-cont .search-header .advanced .item-2 {
  grid-column: var(--half-columns-start)/span var(--columns-number);
  grid-row: 1;
  display: flex;
  justify-content: flex-end;
}
.search-cont .search-header .advanced .item-2 .content {
  width: max-content;
}
.search-cont .search-header .advanced .item-2 .content .filterTitle {
  color: var(--text-secondary, #29343D);
  /* Desktop/Body XXS Bold */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-0, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xxs, 16px); /* 133.333% */
  letter-spacing: var(--avvenire-typography-font-tracking-extend, 0.5px);
}
.search-cont .search-header .advanced .item-2 .content .mydropdown .mydropdown-button {
  width: 171px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary, #29343D);
  /* Desktop/Body XS Regular */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}
.search-cont .search-header .advanced .item-2 .content .mydropdown .mydropdown-button div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-cont .search-header .advanced .filter {
  grid-column: 1/span var(--columns-number);
  width: 100%;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(var(--columns-number), 1fr);
  gap: 24px;
}
.search-cont .search-header .advanced .filter.show {
  display: block;
}
.search-cont .search-header .advanced .filter hr {
  grid-column: 1/span var(--columns-number);
  grid-row: 1;
  width: 100%;
  border-bottom: 1px solid var(--border-secondary, #C8CACD);
}
.search-cont .search-header .advanced .filter .filter-item-1 {
  grid-column: 1/span var(--columns-number);
  grid-row: 2;
}
.search-cont .search-header .advanced .filter .filter-item-2 {
  grid-column: 1/span var(--columns-number);
  grid-row: 3;
}
.search-cont .search-header .advanced .filter .filter-item-1 .filterTitle, .search-cont .search-header .advanced .filter .filter-item-2 .filterTitle {
  color: var(--text-secondary, #29343D);
  /* Desktop/Body XXS Bold */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-0, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xxs, 16px); /* 133.333% */
  letter-spacing: var(--avvenire-typography-font-tracking-extend, 0.5px);
}
.search-cont .search-header .advanced .filter .filter-item-1 .mydropdown, .search-cont .search-header .advanced .filter .filter-item-2 .mydropdown {
  width: 100%;
}
.search-cont .search-header .advanced .filter .filter-item-1 .mydropdown .mydropdown-content, .search-cont .search-header .advanced .filter .filter-item-2 .mydropdown .mydropdown-content {
  width: calc(100% - 32px);
}
.search-cont .search-header .advanced .filter .filter-item-1 .mydropdown button, .search-cont .search-header .advanced .filter .filter-item-2 .mydropdown button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  color: var(--text-secondary, #29343D);
  /* Desktop/Body XS Regular */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}
.search-cont .search-loading {
  text-align: center;
  padding: 2em 1em;
  max-width: 1196px;
}
.search-cont .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1em;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.search-cont .search-items {
  padding: 0 16px;
  max-width: 1196px;
}
.search-cont .search-items .total-item {
  color: var(--text-primary, #000);
  /* Desktop/Body Regular */
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-2, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 150% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin-top: 41px;
}
.search-cont .search-items .numbers {
  margin-top: 40px;
}
.search-cont .search-items .numbers h4 {
  margin-bottom: 24px;
}
.search-cont .search-items .numbers hr {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-primary, #000);
}
.search-cont .search-items .numbers .number-cont .number {
  grid-column: span var(--columns-number);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.search-cont .search-items .numbers .number-cont .number img {
  width: 100%;
  height: auto;
  aspect-ratio: 246/320;
  object-fit: cover;
  box-shadow: inset 0 0 0 3px transparent, 0 3px 3px -3px transparent;
}
.search-cont .search-items .numbers .number-cont .number img:hover {
  box-shadow: 0 0 0 4px var(--icon-brand, #6D5200), 0 3px 3px -3px rgba(0, 0, 0, 0.32);
}
.search-cont .search-items .numbers .number-cont .number h5 {
  margin-top: 16px;
  color: var(--text-primary, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.search-cont .search-items .numbers .number-cont .number h5:first-letter {
  text-transform: uppercase;
}
.search-cont .search-items .numbers .number-cont .number p {
  margin-top: 4px;
  margin-bottom: 24px;
  color: var(--text-secondary, #29343D);
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.371px; /* 159.791% */
  letter-spacing: 0.149px;
}
.search-cont .search-items .numbers .number-cont .number .btn {
  margin-bottom: 16px;
  text-decoration: none;
}
.search-cont .search-items .numbers .number-cont .number .btn:focus-visible {
  height: 56px;
}
.search-cont .search-items .numbers .number-cont .number .descriptionShort {
  color: var(--text-secondary, #29343D) !important;
  /* Desktop/Body XXS Regular */
  margin-top: 4px;
  margin-bottom: 24px;
  color: var(--text-secondary, #29343D);
  font-family: var(--text-family-body, "Atkinson Hyperlegible");
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.371px; /* 159.791% */
  letter-spacing: 0.149px;
  background-color: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}
.search-cont .search-items .numbers .number-cont .number .descriptionShort p {
  color: var(--text-secondary, #29343D) !important;
  /* Desktop/Body XXS Regular */
  margin-bottom: 24px;
  color: var(--text-secondary, #29343D);
  font-family: var(--text-family-body, "Atkinson Hyperlegible") !important;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 22.371px !important; /* 159.791% */
  letter-spacing: 0.149px !important;
  background-color: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  margin-top: 4px !important;
}
.search-cont .search-items .articles {
  display: block;
  margin-top: 56px;
}
.search-cont .search-items .articles h4 {
  margin-bottom: 24px;
}
.search-cont .search-items .articles hr {
  margin-bottom: 27px;
  border-bottom: 1px solid var(--border-primary, #000);
}
.search-cont .search-items .articles .article .art-title {
  width: max-content;
}
.search-cont .search-items .articles .article .art-title:focus-visible h5 {
  border: 4px solid var(--border-accent);
  border-radius: 4px;
  text-decoration: underline;
  padding: 5px;
}
.search-cont .search-items .articles .article:hover .art-title {
  text-decoration: underline;
  text-decoration-color: black;
}
.search-cont .search-items .articles .article:hover img {
  box-shadow: 0 0 0 7px white, 0 3px 3px -3px rgba(0, 0, 0, 0.32);
}
.search-cont .search-items .articles .article img {
  max-width: 233px;
  height: auto;
}
.search-cont .search-items .articles .article .art-eyelet {
  color: var(--text-secondary, #29343D);
  /* Mobile/Body XS Regular */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 171.429% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin-top: 24px;
}
.search-cont .search-items .articles .article .art-eyelet:first-letter {
  text-transform: uppercase;
}
.search-cont .search-items .articles .article .art-eyelet b {
  color: var(--text-primary, #000);
  /* Mobile/Body XS Bold */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}
.search-cont .search-items .articles .article h5 {
  color: var(--text-primary, #000);
  /* Mobile/Heading 5 */
  font-family: var(--luoghi-family-heading, Lora);
  font-size: var(--avvenire-typography-size-font-size-3, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 133.333% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  margin-top: 8px;
  margin-bottom: 16px;
}
.search-cont .search-items .articles .article p {
  color: var(--text-secondary, #29343D);
  /* Mobile/Body XS Regular */
  font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
  font-size: var(--avvenire-typography-size-font-size-1, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--avvenire-typography-line-height-s, 24px); /* 171.429% */
  letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
}
.search-cont .search-items .articles .article .sign {
  margin-top: 16px;
  margin-bottom: 8px;
}
.search-cont .search-items .articles .article .art-buttons {
  display: flex;
  gap: 10px;
}
.search-cont .search-items .articles .article .btn-yellow {
  margin-top: 20px;
  margin-bottom: 24px;
  display: flex;
  height: 26px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-radius-smooth, 4px);
}
.search-cont .search-items .articles .article .btn-transparent {
  margin-top: 20px;
  margin-bottom: 24px;
  display: flex;
  height: 26px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-radius-smooth, 4px);
  border: 1px solid var(--components-button-secondary, #000);
}
.search-cont .search-items .articles .article hr {
  border-radius: var(--radius-radius-null, 0px);
  border-bottom: 1px solid var(--border-secondary, #C8CACD);
}

#cerca-app-pagina.search-cont {
  position: relative;
  margin-top: 0;
}

/* #endregion search*/
/* #region css orizzontali mobile*/
@media only screen and (orientation: portrait) {
  /* #region hero */
  .hero-overlay {
    position: absolute;
    display: block;
    z-index: 9999;
    transform: rotate(90deg);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .hero-overlay svg {
    position: fixed;
    margin-top: 24px;
    margin-left: 16px;
  }
  .hero-overlay svg .close {
    stroke: white;
    fill: white;
  }
  .hero-overlay .rotate {
    position: fixed;
    margin-top: calc(50vh - 50px);
    margin-left: calc(50vw - 50px);
    background-color: rgba(0, 0, 0, 0.7);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-overlay .rotate img {
    width: 60px;
    height: 60px;
  }
  .hero {
    position: fixed;
    transform: rotate(-90deg);
    transform-origin: top left;
    top: 100%;
    left: 0;
    width: 100vh;
    height: 100vh;
    overflow: hidden;
    background-color: black;
    touch-action: none;
  }
  .hero .swiper-container-hero {
    margin-top: 16px;
    touch-action: none;
  }
  .hero .swiper-container-hero .swiper-header, .hero .swiper-container-hero .swiper-close {
    display: none;
  }
  .hero .swiper-container-hero .btn {
    height: 40px;
  }
  /* #endregion hero*/
  /* #region zoom-img */
  .zoomPanel .close {
    display: none;
  }
  .zoomPanel {
    position: fixed;
    transform: rotate(-90deg);
    transform-origin: top left;
    top: 100%;
    left: 0;
    width: calc(100vh - 72px);
    height: calc(100vw - 32px);
    overflow: hidden;
    background-color: black;
    touch-action: none;
  }
  .zoomPanel .hero-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transform: rotate(90deg);
    padding-right: calc(50% + 32px);
  }
  /* #endregion zoom-img */
}
@media screen and (max-height: 450px) {
  :root {
    --columns-number: 6;
    --half-columns: 3;
    --half-columns-start: 4;
  }
  /* #region hero */
  .hero {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: black;
  }
  .hero .swiper-container-hero {
    max-width: 593px;
  }
  .hero .swiper-container-hero .swiper-close {
    display: block;
    position: fixed;
    top: 16px;
    right: 24px;
  }
  .hero .swiper-container-hero .swiper-header {
    display: none;
  }
  .hero .swiper-container-hero .btn {
    height: 40px;
  }
  .hero .swiper-container-hero .swiper-slide {
    max-width: 513px !important;
  }
  .hero .swiper-container-hero .slide-content img {
    max-height: 80vh;
  }
  /* #endregion hero */
  /* #region zoom-img */
  .zoomPanel {
    grid-template-columns: repeat(var(--columns-number), 1fr);
    padding: 16px;
    width: calc(100vw - 32px);
  }
  .zoomPanel .close {
    grid-column: var(--columns-number)/span 1;
    grid-row: 1;
    margin: 0;
  }
  .zoomPanel .zoomDescription {
    grid-column: 5/span 2;
    grid-row: 2;
    margin-right: 0;
  }
  .zoomPanel .zoomImage {
    grid-column: 1/span 4;
    grid-row: 1/span 4;
  }
  .zoomPanel .share-container {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: space-between !important;
  }
  .zoomPanel .share-popup {
    position: absolute;
    right: 15px;
  }
  .zoomPanel .share-toggle {
    color: white;
    border-color: white;
  }
  .zoomPanel .share-toggle svg * {
    fill: white !important;
    stroke: white !important;
  }
  .zoomPanel .share-popup {
    margin-top: 50px;
  }
  /* #endregion zoom-img */
}
/* #endregion css orizzontali mobile*/
/* #region DESKTOP */
@media screen and (min-width: 950px) {
  :root {
    --columns-number: 12;
    --half-columns: 6;
    --half-columns-start: 7;
  }
  .d-md {
    display: block;
  }
  .d-mobile {
    display: none !important;
  }
  .maincontainer {
    max-width: 1228px;
    background-size: contain !important;
  }
  .grid-template {
    grid-column-gap: 24px;
  }
  /*#region header*/
  .grid-item-hamburger {
    display: none;
  }
  .grid-item-hlogo {
    margin-top: 38px;
    width: 100%;
    max-width: 490px;
  }
  .grid-item-hlogo svg {
    width: auto;
    height: 100%;
  }
  .grid-item-hlogin {
    grid-column: var(--half-columns-start)/span var(--half-columns);
    justify-self: end;
    margin-top: 48px;
  }
  .navbar {
    padding: 8px 0;
  }
  .navbar .nav-link:first-child {
    margin-left: 24px;
  }
  .navbar div:first-child {
    display: block;
  }
  .navbar div:last-child {
    display: none;
  }
  /*#endregion header*/
  /* #region login */
  .login-popup {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    cursor: initial;
    background: rgba(0, 0, 0, 0.5333333333);
  }
  .login-popup .grid-template {
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    grid-column-gap: 16px;
    grid-template-rows: auto;
    padding: 0;
    margin: 0px 50px 50px 50px;
  }
  .login-popup .grid-item-1 {
    grid-column: 7/span 5;
    grid-row: 1/span 4;
    border-left: 1px solid #c8cacd;
    padding: 0 24px 0 24px;
  }
  .login-popup .grid-item-2 {
    grid-column: 2/span 5;
    grid-row: 1/1;
  }
  .login-popup .grid-item-3 {
    grid-column: 2/span 5;
    grid-row: 2/2;
  }
  .login-popup .grid-item-4 {
    grid-column: 2/span 5;
    grid-row: 3/3;
  }
  .login-popup .grid-item-5 {
    grid-column: 2/span 5;
    grid-row: 4/4;
  }
  .login-popup .login-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.16px;
    margin: 30px 0 50px 0;
  }
  .login-popup.active {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .modal {
    background: #ffffff;
    min-width: 20vw;
    min-height: 30vh;
    cursor: initial;
  }
  .close-btn {
    justify-content: end !important;
  }
  /* #endregion login*/
  .bottombar {
    margin-top: 18px;
    margin-bottom: 48px;
  }
  .elementButton {
    display: flex;
    min-width: 56px;
    padding: var(--spacing-null, 0px) var(--spacing-s, 16px);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xs, 8px);
    color: var(--text-primary, #000);
    /* Desktop/Body XS Bold */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-1, 14px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--avvenire-typography-line-height-xs, 18px);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    /**/
    margin: 0;
    padding: 48px 0 80px 0;
    background-color: var(--Luoghi-sfondo-sito);
  }
  .elementButton .btn {
    padding: 0 12px;
  }
  /* #region NumberHomePage*/
  .NumberHomePage .grid-template {
    padding: 0px 16px 74px 16px;
    grid-template-rows: 50px 100px auto;
    grid-template-columns: 88px 88px 88px 88px 98px 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 20px;
  }
  .NumberHomePage .grid-item-1 {
    grid-column: 6/span 6;
    grid-row: 1/1;
  }
  .NumberHomePage .grid-item-2 {
    grid-column: 6/span 6;
    grid-row: 2/2;
  }
  .NumberHomePage .grid-item-3 {
    grid-column: 6/span 5;
    grid-row: 3/3;
  }
  .NumberHomePage .grid-item-4 {
    grid-column: 2/span 4;
    grid-row: 1/span 4;
  }
  .NumberHomePage .grid-item-5 {
    grid-column: 6/span 6;
    grid-row: 4/4;
  }
  .NumberHomePage .firstNumber {
    padding-bottom: 75px;
  }
  .NumberHomePage .firstNumber .description-short {
    max-height: none !important;
    overflow: visible !important;
    cursor: auto !important;
    -webkit-line-clamp: unset !important;
    display: block !important;
  }
  .NumberHomePage .firstNumber .read-more-hint {
    display: none;
  }
  .NumberHomePage .firstNumber img {
    width: 360px;
    height: auto;
  }
  .NumberHomePage .firstNumber .image {
    text-align: center;
  }
  .NumberHomePage .date {
    color: var(--luoghi-color-neutral-50, #F9F9FA);
    /* Desktop/Body XS Bold */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-1, 14px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    text-transform: uppercase;
    margin-bottom: 10px;
    height: 25px;
  }
  .NumberHomePage .title {
    font-size: var(--avvenire-typography-size-font-size-8);
    line-height: var(--avvenire-typography-line-height-xl);
    letter-spacing: var(--avvenire-typography-font-tracking-normal);
  }
  .NumberHomePage .body {
    font-size: var(--avvenire-typography-size-font-size-2);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-s);
    letter-spacing: var(--avvenire-typography-font-tracking-normal);
  }
  .NumberHomePage .btn-container {
    display: flex;
    gap: 16px;
    justify-content: unset;
    align-self: end;
    margin-top: 0;
    margin-bottom: 0;
    height: 56px;
  }
  .NumberHomePage .numbers {
    background-color: var(--Luoghi-sfondo-sito) !important;
    /*            .item-date {
        margin-bottom: 16px;
    }*/
  }
  .NumberHomePage .numbers .grid-template {
    padding-top: 35px;
    grid-template-rows: 40px 1fr;
    /*grid-column-gap: 4px;*/
    grid-template-columns: 63px 63px auto;
  }
  .NumberHomePage .numbers .class-white {
    background-color: #FFF !important;
    padding-top: 0 !important;
  }
  .NumberHomePage .numbers .cart-head {
    padding: 38px 0 48px 0;
    margin: 0;
  }
  .NumberHomePage .numbers .item-title {
    color: var(--text-primary, #000);
    /* Desktop/Heading 2 Light */
    font-family: var(--luoghi-family-heading, Lora);
    font-size: var(--avvenire-typography-size-font-size-7, 32px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-l, 40px);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  }
  .NumberHomePage .numbers .item-button {
    display: flex;
    width: 221px;
    height: 24px;
    min-width: 40px;
    padding: var(--spacing-xs, 8px);
    justify-content: center;
    align-items: center;
    gap: 14px;
    align-self: end;
  }
  .NumberHomePage .numbers .item-img {
    margin: 0;
    width: 140px;
    align-self: stretch;
    margin-left: 8px;
  }
  .NumberHomePage .numbers .item-date::first-letter {
    text-transform: capitalize;
  }
  .NumberHomePage .numbers .articles {
    padding-top: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E7E8E9;
  }
  .NumberHomePage .hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5); /* oscuramento leggero */
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .NumberHomePage .hero-overlay .swiper-pagination-bullet {
    background: none;
    color: white;
    margin-left: 9px;
    height: auto;
    width: auto;
  }
  .NumberHomePage .hero-overlay .swiper-pagination-bullet-active::after {
    margin-left: 9px;
    content: "-----";
    letter-spacing: -2px;
  }
  .NumberHomePage .hero-overlay .swiper-pagination-bullet:last-child::after {
    content: "";
  }
  .NumberHomePage .swiper-slide-btn-preview {
    position: absolute;
    bottom: 20px;
    left: 20px;
  }
  .NumberHomePage .swiper-button-prev, .NumberHomePage .swiper-button-next {
    position: absolute;
    top: 50%;
    color: white !important;
    /* background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2027%2044%22%3E%3Cpath%20d%3D%22M27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E") !important; */ /* Esempio di SVG base64 */
    /* O se vuoi usare i percorsi delle immagini di Swiper */
    /* background-image: url('../SCSS/path/to/swiper-button-next.svg') !important; */
  }
  .NumberHomePage .swiper-button-prev:after, .NumberHomePage .swiper-button-next:after {
    font-size: 20px;
  }
  .NumberHomePage .swiper-navigation-disabled .swiper-button-prev,
  .NumberHomePage .swiper-navigation-disabled .swiper-button-next {
    display: block !important;
  }
  .NumberHomePage .swiper-button-prev {
    left: 0px;
    width: 30px;
    height: 30px;
  }
  .NumberHomePage .swiper-button-next {
    right: 0px;
    width: 30px;
    height: 30px;
  }
  /* #endregion NumberHomePage*/
  /* #region explore */
  .explore {
    padding: 43px 16px 43px 16px;
    /*margin-bottom: 80px;
    background-color: var(--Luoghi-sfondo-sito);*/
  }
  .explore .grid-item-4 {
    /*image*/
    grid-column: 1/span calc(var(--columns-number) / 2);
    grid-row: 1/span 4;
  }
  .explore .grid-item-1 {
    /*title*/
    grid-column: 7/span 4;
    row-gap: 1/1;
  }
  .explore .grid-item-2 {
    /*subtitle*/
    grid-column: 7/span 4;
    row-gap: 2/2;
  }
  .explore .grid-item-3 {
    /*content*/
    grid-column: 7/span 4;
    row-gap: 3/3;
  }
  .explore .grid-item-5 {
    /*btn-container*/
    grid-column: 7/span 4;
    row-gap: 4/4;
  }
  .explore .title {
    color: #FFF;
    /* Desktop/Heading 3 */
    font-family: var(--text-family-heading, Lora);
    font-size: var(--avvenire-typography-size-font-size-6, 28px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--avvenire-typography-line-height-m, 32px);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin-bottom: 13px;
  }
  .explore .subtitle {
    color: var(--text-accent-invert, #FABB00);
    /* Desktop/Body XL Bold */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-3, 18px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--avvenire-typography-line-height-s, 24px);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin-bottom: 24px;
  }
  .explore .content {
    color: var(--text-primary-invert, #FFF);
    /* Desktop/Body Regular */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-2, 16px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--avvenire-typography-line-height-s, 24px); /* 150% */
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin-bottom: 24px;
  }
  .explore .img-container {
    text-align: center;
    margin-bottom: 0;
  }
  .explore .img-style {
    width: auto;
    height: 300px;
  }
  .explore .btn-container {
    display: flex;
    /*height: 58px;*/
    margin: 0;
  }
  .explore .btn-container .btn-transparent {
    text-decoration: none;
  }
  .explore .btn-container .btn-transparent:hover {
    text-decoration: underline;
  }
  .explore .btn-accent {
    /*display: flex;*/
    width: 144px !important;
    height: 56px;
    min-width: 144px;
    padding: var(--spacing-xs, 8px);
    /*gap: 14px;*/
    margin: 0px;
    padding: 0;
    align-self: end;
  }
  .explore .btn-secondary {
    color: var(--text-primary-invert, #FFF);
    /* Desktop/Body XS Bold */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-1, 14px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--avvenire-typography-line-height-xs, 18px);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    /**/
    /*display: flex;*/
    width: 237px;
    height: 56px;
    min-width: 144px;
    justify-content: center;
    align-items: center;
    /*gap: var(--spacing-xs, 8px);*/
    /*flex-shrink: 0;*/
    padding: 0;
    margin: 0 0 0 23px;
    align-self: end;
  }
  .explore:focus-visible .title {
    border: 5px solid var(--border-accent, #A07800);
    border-radius: 8px;
    padding: 2px;
    height: fit-content;
    width: fit-content;
  }
  .explore:focus-visible .btn-yellow {
    border: 4px solid var(--border-accent, #A07800);
  }
  /* #endregion explore */
  .number .grid-template {
    grid-template-rows: auto;
  }
  .number .grid-item-1 {
    /* PageTitle */
    grid-column: 1/span var(--columns-number);
    grid-row: 1/1;
  }
  .number .grid-item-2 {
    /* MagazineNumber */
    grid-column: 1/span var(--columns-number);
    grid-row: 2/2;
  }
  .number .grid-item-3 {
    /* coverimg */
    grid-column: 1/span 4;
    grid-row: 3/span 4;
  }
  .number .grid-item-5 {
    /* Eyelet */
    grid-column: 5/span 7;
    grid-row: 3/3;
  }
  .number .grid-item-6 {
    /* DossierTitle */
    grid-column: 5/span 7;
    grid-row: 4/4;
  }
  .number .grid-item-7 {
    /* DescriptionLong */
    grid-column: 5/span 7;
    grid-row: 5/5;
  }
  .number .grid-item-4 {
    /* btn-container */
    grid-column: 5/span 7;
    grid-row: 6/6;
    justify-content: unset;
    align-self: end;
    margin-top: 0;
    margin-bottom: 0;
    height: 56px;
  }
  .number .page-title {
    /* Desktop/Heading 1 Light */
    color: var(--text-primary);
    font-size: var(--avvenire-typography-size-font-size-8, 40px);
    font-style: normal;
    font-family: var(--luoghi-family-heading);
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-xl, 48px); /* 120% */
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin-bottom: 16px;
  }
  .number .magazineN {
    color: var(--text-secondary, #29343D);
    /* Desktop/Body XS Regular */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-1, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin-bottom: 40px;
  }
  .number .previewTitle {
    color: var(--text-primary, #000);
    /* Desktop/Heading 3 */
    font-family: var(--text-family-heading, Lora);
    font-size: var(--avvenire-typography-size-font-size-6, 28px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--avvenire-typography-line-height-m, 32px); /* 114.286% */
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin: 80px 16px 40px 16px;
  }
  .number .btn-container {
    display: flex;
    gap: 16px;
  }
  .number .eyelet {
    color: var(--text-secondary, #29343D);
    /* Desktop/Body XS Bold */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-1, 14px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin-bottom: 8px;
  }
  .number .title {
    color: var(--text-primary, #000);
    /* Desktop/Heading 2 */
    font-family: var(--luoghi-family-heading, Lora);
    font-size: var(--avvenire-typography-size-font-size-7, 32px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--avvenire-typography-line-height-l, 40px); /* 125% */
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin: 0 0 16px 0;
  }
  .number .descriptionLong {
    color: var(--text-primary, #000);
    /* Desktop/Body Regular */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-2, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-s, 24px); /* 150% */
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin: 0 0 16px 0;
  }
  /* #region numberArticle*/
  .page-numberArticle .numberArticle-head {
    background-color: #FFF;
  }
  .page-numberArticle .numberArticle-head .grid-template {
    padding-top: 0px;
  }
  .page-numberArticle .numberArticle-head .grid-item-1 {
    /* PageTitle */
    grid-column: 1/span var(--columns-number);
    grid-row: 1/1;
  }
  .page-numberArticle .numberArticle-head .grid-item-2 {
    /* PageSubTitle */
    grid-column: 1/span var(--columns-number);
    grid-row: 2/2;
  }
  .page-numberArticle .numberArticle-head .grid-item-3 {
    /* filter */
    grid-column: 10/span 3;
    grid-row: 1/span 2;
    text-align: end;
  }
  .page-numberArticle .numberArticle-head .pageTitle {
    color: var(--text-primary, #000);
    /* Desktop/Heading 1 Light */
    font-family: Lora;
    font-size: var(--avvenire-typography-size-font-size-8, 40px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-xl, 48px); /* 120% */
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin-bottom: 16px;
  }
  .page-numberArticle .numberArticle-head .pageSubTitle {
    color: var(--text-secondary, #29343D);
    /* Desktop/Body Regular */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-2, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-s, 24px); /* 150% */
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin-bottom: 64px;
  }
  .page-numberArticle .numberArticle-head .filter .filterTitle {
    color: var(--text-secondary, #29343D);
    /* Desktop/Body XXS Bold */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-0, 12px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--avvenire-typography-line-height-xxs, 16px); /* 133.333% */
    letter-spacing: var(--avvenire-typography-font-tracking-extend, 0.5px);
    margin: 16px 110px 8px 0;
  }
  .page-numberArticle .numberArticle-body {
    grid-template-columns: repeat(4, calc(25% - 18px));
  }
  .page-numberArticle .numberArticle-body .numberArticle-card {
    margin-bottom: 40px;
  }
  .page-numberArticle .numberArticle-body .numberArticle-card .magazineN {
    color: var(--text-primary, #000);
    /* Desktop/Heading 5 */
    font-family: var(--luoghi-family-heading, Lora);
    font-size: var(--avvenire-typography-size-font-size-3, 18px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--avvenire-typography-line-height-s, 24px); /* 133.333% */
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin: 16px 0 4px 0;
  }
  .page-numberArticle .numberArticle-body .numberArticle-card .descriptionShort {
    color: var(--text-secondary, #29343D);
    /* Desktop/Body XS Regular */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-1, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  }
  .page-numberArticle .btnSearch {
    text-align: center;
    align-content: center;
  }
  /* #endregion numberArticle*/
  .cart-head .item-img {
    grid-column: 1/span 2;
    grid-row: 1/span 3;
  }
  .cart-head .item-date {
    grid-row: 1/1;
    grid-column: 3/span 10;
  }
  .cart-head .item-date:focus-visible {
    border: 5px solid var(--border-accent, #A07800);
    border-radius: 8px;
    padding: 2px;
    height: fit-content;
    width: fit-content;
  }
  .cart-head .item-title {
    grid-row: 2/2;
    grid-column: 3/span 10;
    font-size: var(--avvenire-typography-size-font-size-7);
    line-height: var(--avvenire-typography-line-height-l);
    letter-spacing: var(--avvenire-typography-font-tracking-normal);
  }
  .cart-head .item-title:focus-visible {
    border: 5px solid var(--border-accent, #A07800);
    border-radius: 8px;
    padding: 2px;
    height: fit-content;
    width: fit-content;
  }
  .cart-head .item-button {
    grid-row: 3/3;
    grid-column: 3/span 10;
    justify-self: left;
  }
  .article .grid-item-1 {
    /* Title */
    grid-column: 2/span 10;
    grid-row: 2/2;
  }
  .article .grid-item-3 {
    /* PageSubTitle */
    grid-column: 2/span 8;
    grid-row: 3/3;
  }
  .article .grid-item-2 {
    /* Sign */
    grid-column: 2/span 10;
    grid-row: 4/4;
  }
  .article #readspeaker_button1 {
    grid-column: 2/span 3;
    grid-row: 5/5;
  }
  .article .share-container {
    grid-column: 10/span 2;
    grid-row: 5;
  }
  .article .share-popup {
    right: 163px;
  }
  .article .grid-item-4 {
    /* homeimg */
    grid-column: 2/span 10;
    grid-row: 6/6;
  }
  .article .grid-item-5 {
    /* ImageHomeCaption */
    grid-column: 2/span 10;
    grid-row: 7/7;
  }
  .article .grid-item-6 {
    /* Content */
    grid-column: 3/span 8;
    grid-row: 8/8;
  }
  .article .link-back {
    grid-column: 2/span 10;
    grid-row: 1/1;
    margin-top: 24px;
    margin-bottom: 32px;
  }
  .article .title {
    color: #000;
    /* Desktop/Heading 1 Light */
    font-family: Lora;
    font-size: var(--avvenire-typography-size-font-size-8, 40px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-xl, 48px);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin-bottom: 32px;
  }
  .article .sign {
    color: var(--avvenire-color-base-black, #000);
    /* Desktop/Body XS Bold */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-1, 14px);
    font-style: italic;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-xs, 18px); /* 128.571% */
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin: 0 0 32px 0;
  }
  .article .pageSubtitle {
    color: #000;
    /* Desktop/Body XL Regular */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-3, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-s, 24px); /* 133.333% */
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin: 0 0 24px 0;
  }
  .article .imageCaption {
    color: var(--text-secondary, #29343D);
    /* Desktop/Body XXS Regular */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-0, 12px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-xxs, 16px); /* 133.333% */
    letter-spacing: var(--avvenire-typography-font-tracking-extend, 0.5px);
    margin: 16px 0 16px 0;
  }
  .article .article-content {
    margin-bottom: 92px;
  }
  .article .article-content p {
    color: #000;
    /* Mobile/Body Regular */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-2, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-s, 24px);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin: 48px 0 32px 0;
  }
  .article .article-content .dropcap::first-letter {
    font-size: 70px;
    float: left;
    margin-right: 5px;
    line-height: 1;
  }
  .article .article-content img {
    margin: 0 !important;
    width: 100%;
    height: auto;
  }
  .article .article-content figCaption {
    color: var(--text-secondary, #29343D);
    /* Mobile/Body XS Regular */
    font-family: var(--avvenire-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-1, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--avvenire-typography-line-height-s, 24px) / 2);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin: 8px 0 16px 0;
  }
  .article .article-content .more-articles-title {
    color: #000;
    /* Desktop/Heading 2 Light */
    font-family: var(--luoghi-family-heading, Lora);
    font-size: var(--avvenire-typography-size-font-size-7, 32px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-l, 40px);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  }
  .article .article-content:focus-visible {
    border: 5px solid var(--border-accent, #A07800);
    border-radius: 8px;
    padding: 2px;
    height: fit-content;
    width: fit-content;
  }
  .article .articles {
    grid-template-columns: 1fr 1fr 1fr !important;
  }
  .article .articles .article-card {
    display: block;
  }
  .article .articles .article-card .border img {
    display: inline;
    width: 100%;
    height: auto;
  }
  .article .articles .article-card .title {
    font-size: var(--avvenire-typography-size-font-size-6);
    line-height: var(--avvenire-typography-line-height-m);
    letter-spacing: var(--avvenire-typography-font-tracking-normal);
    margin-top: 12px;
  }
  .article .articles .article-card .body {
    font-size: var(--avvenire-typography-size-font-size-2);
    line-height: var(--avvenire-typography-line-height-s);
    letter-spacing: var(--avvenire-typography-font-tracking-normal);
  }
  .article .articles .article-card .sign {
    display: block;
    font-size: var(--avvenire-typography-size-font-size-1);
    font-style: italic;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-xs);
    letter-spacing: var(--avvenire-typography-font-tracking-normal);
  }
  .articles {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    padding: 10px;
  }
  .articles .article-card .title {
    font-size: var(--avvenire-typography-size-font-size-6);
    line-height: var(--avvenire-typography-line-height-m);
    letter-spacing: var(--avvenire-typography-font-tracking-normal);
    margin-top: 12px;
  }
  .articles .article-card .body {
    font-size: var(--avvenire-typography-size-font-size-2);
    line-height: var(--avvenire-typography-line-height-s);
    letter-spacing: var(--avvenire-typography-font-tracking-normal);
  }
  .articles .article-card .sign {
    font-size: var(--avvenire-typography-size-font-size-1);
    font-style: italic;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-xs);
    letter-spacing: var(--avvenire-typography-font-tracking-normal);
  }
  /* #region footer */
  .footer {
    padding: 80px 114px 0 114px;
    display: grid;
    grid-auto-flow: row;
    gap: 24px;
    grid: "headerl headerl headerr headerr" "separator separator separator separator" "maina mainb mainc maind" "bottoml bottoml bottomr bottomr";
  }
  .footer .item-button {
    border-bottom: none;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }
  .footer .item-button .btn:focus-visible {
    border: 4px solid var(--border-primary-invert, #FFF) !important;
  }
  .footer .link-list {
    grid-template-columns: auto;
    border-bottom: none;
    margin-top: 16px;
    padding: 0;
    gap: 8px;
  }
  .footer .item-links {
    margin-top: 0;
  }
  .footer .item-contacts .contacts-title {
    margin-top: 20px;
  }
  .footer .item-contacts .section-title {
    margin-bottom: 16px;
  }
  .footer .item-contacts .contacts-text {
    margin: 8px 0;
  }
  .footer .item-contacts .contacts-mail {
    margin: 8px 0;
  }
  .footer .item-contacts .contacts-title {
    margin-top: 24px;
    margin-bottom: 8px;
  }
  .logo-footer {
    grid-area: headerl;
    display: inline-flex;
    justify-content: start;
    /*margin-right: 40px;*/
  }
  .logo-footer a:focus-visible img {
    border: 2px solid var(--border-primary-invert, #FFF);
    border-radius: 0;
    padding: 4px;
    text-decoration: underline;
  }
  .logo-footer a:focus-visible svg {
    border: 2px solid var(--border-primary-invert, #FFF);
    border-radius: 0;
    padding: 4px;
    text-decoration: underline;
  }
  .item-loghi {
    grid-area: headerl;
    justify-content: start;
    flex-direction: row !important;
  }
  .item-loghi a:focus-visible img {
    border: 2px solid var(--border-primary-invert, #FFF);
    border-radius: 0;
    padding: 4px;
    text-decoration: underline;
  }
  #logoFooter {
    width: 344px;
    margin-right: 35px;
  }
  .item-loghi span:first-child {
    margin-right: 40px;
  }
  .item-button {
    grid-area: headerr;
  }
  .separator {
    grid-area: separator;
    border-bottom: 1px solid #FFF;
  }
  .link-list {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: auto;
    grid-template-rows: auto;
    gap: 24px;
    padding: 10px;
  }
  .link-list a:hover {
    text-decoration: underline;
  }
  .link-list a:focus-visible, .section-title:focus-visible {
    /*border: 3px solid var(--border-accent, #A07800);*/
    border: 2px solid var(--border-primary-invert, #FFF);
    border-radius: 0;
    padding: 4px;
    text-decoration: none;
  }
  .item-links {
    grid-area: maina;
  }
  .item-sections {
    grid-area: mainb;
  }
  .item-cei {
    grid-area: mainc;
  }
  .item-contats {
    grid-area: maind;
  }
  .item-bottomlinks {
    grid-area: bottoml;
  }
  .item-copyright {
    grid-area: bottomr;
  }
  .lower-footer {
    padding: 24px 114px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .lower-footer .hlink-list {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto;
    gap: 24px;
    padding: 10px;
  }
  .lower-footer .hlist-links {
    display: flex;
    flex-direction: row;
  }
  .lower-footer .hlist-links .item-link {
    margin-bottom: 0;
  }
  /* #endregion footer */
  .explore-content .grid-template {
    margin-bottom: 38px;
  }
  .explore-content .page-title {
    color: var(--text-primary, #000);
    /* Desktop/Heading 1 Light */
    font-family: Lora;
    font-size: var(--avvenire-typography-size-font-size-8, 40px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-xl, 48px); /* 120% */
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin-bottom: 16px;
  }
  .explore-content .page-subtitle {
    margin-bottom: 64px;
  }
  .explore-content hr {
    margin-left: 16px;
  }
  .explore-content .cart-head {
    background-color: var(--Luoghi-sfondo-sito);
  }
  .explore-content .cart-head .item-img {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
  .explore-content .cart-head .item-date {
    grid-row: 2/2;
    grid-column: 1/span 10;
    color: var(--text-secondary);
    /* Desktop/Body XS Bold */
    font-family: var(--text-family-body);
    font-size: var(--avvenire-typography-size-font-size-1);
    font-style: normal;
    font-weight: 700;
    line-height: var(--avvenire-typography-line-height-xs);
    letter-spacing: var(--avvenire-typography-font-tracking-normal);
  }
  .explore-content .cart-head .item-title {
    grid-row: 1/1;
    grid-column: 1/span 12;
    color: var(--luoghi-color-primary-700);
    /* Desktop/Heading 3 Light */
    font-family: var(--luoghi-family-heading);
    font-size: var(--avvenire-typography-size-font-size-6);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-m);
    letter-spacing: var(--avvenire-typography-font-tracking-normal);
    margin: 24px 0 16px 0;
  }
  .explore-content .cart-head .item-link {
    grid-row: 2/2;
    grid-column: 12/span 1;
    width: max-content;
    align-content: end;
  }
  .explore-content .cart-head .item-link:focus-visible {
    border: 4px solid var(--border-accent, #A07800) !important;
    padding: 4px !important;
    border-radius: 0 !important;
  }
  .slider10number .slider-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .slider10number .slider-title {
    color: var(--text-primary, #000);
    /* Desktop/Heading 3 Light */
    font-family: var(--text-family-heading, Lora);
    font-size: var(--avvenire-typography-size-font-size-6, 28px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-m, 32px);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  }
  .bigSlider .swiper-slide {
    flex-direction: row;
  }
  .bigSlider .swiper-slide .img-cont {
    margin-right: 45px;
    margin-left: 110px;
    margin-top: 50px;
    margin-bottom: 50px;
    float: left;
  }
  .bigSlider .text-content {
    margin-right: 110px;
    margin-left: 0;
  }
  .bigSlider .text-content .title {
    color: var(--text-primary, #000);
    /* Desktop/Heading 3 */
    font-family: var(--text-family-heading, Lora);
    font-size: var(--avvenire-typography-size-font-size-6, 28px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--avvenire-typography-line-height-m, 32px);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    width: 500px;
  }
  .bigSlider .text-content .desc {
    width: 400px;
  }
  .bigSlider .swiper-button-next,
  .bigSlider .swiper-button-prev {
    top: 50%;
  }
  .bigSlider .swiper-button-next {
    margin-right: 40px;
  }
  .bigSlider .swiper-button-prev {
    margin-left: 40px;
  }
  .bigSlider .swiper-button-prev:after, .bigSlider .swiper-button-next:after {
    font-size: 20px;
  }
  /* #region redazione */
  .redazione {
    margin: 0 114px 169px 114px;
  }
  .redazione .pageTitle {
    color: var(--text-primary, #000);
    /* Desktop/Heading 1 Light */
    font-family: Lora;
    font-size: var(--avvenire-typography-size-font-size-8, 40px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-xl, 48px);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin-bottom: 64px;
  }
  .redazione .contacts .title {
    color: var(--text-primary, #000);
    /* Desktop/Heading 4 */
    font-family: var(--luoghi-family-heading, Lora);
    font-size: var(--avvenire-typography-size-font-size-5, 24px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--avvenire-typography-line-height-m, 32px);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin-bottom: 32px;
  }
  .redazione .contacts .subtitle {
    color: var(--text-primary, #000);
    /* Desktop/Body XS Bold */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-1, 14px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--avvenire-typography-line-height-xs, 18px);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin-bottom: 8px;
  }
  .redazione .contacts .contact {
    color: var(--text-secondary, #29343D);
    /* Desktop/Body Regular */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-2, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-s, 24px);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin-bottom: 8px;
    /*p {
        color: var(--text-link, #6D5200);
    }*/
  }
  .redazione .contacts .contact i {
    margin-right: 8px;
  }
  .redazione .contacts .content {
    margin-bottom: 48px;
  }
  .redazione .contacts .chi-siamo {
    color: var(--text-primary, #000);
    /* Mobile/Heading 4 */
    font-family: var(--luoghi-family-heading, Lora);
    font-size: var(--avvenire-typography-size-font-size-4, 21px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--avvenire-typography-line-height-s, 24px);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
    margin-bottom: 32px;
  }
  .redazione .contacts .people {
    display: grid;
    grid-template-columns: auto auto auto;
  }
  .redazione .contacts .people .person {
    gap: var(--spacing-s, 16px);
    margin-bottom: 40px;
    width: 320px;
  }
  .redazione .contacts .people .person .job {
    color: var(--text-secondary, #29343D);
    /* Desktop/Body XL Regular */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-3, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--avvenire-typography-line-height-s, 24px);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  }
  .redazione .contacts .people .person .name-surname {
    color: var(--text-secondary, #29343D);
    /* Desktop/Body XL Bold */
    font-family: var(--text-family-body, "Atkinson Hyperlegible");
    font-size: var(--avvenire-typography-size-font-size-3, 18px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--avvenire-typography-line-height-s, 24px);
    letter-spacing: var(--avvenire-typography-font-tracking-normal, 0.12px);
  }
  /* #endregion redazione */
  /* #region zoomPanel*/
  .zoomPanel {
    text-align: center;
  }
  .zoomPanel .close {
    height: max-content;
  }
  .zoomPanel .img-container {
    width: calc(100% - 142px);
    grid-column: 1/span var(--columns-number);
    grid-row: 2/2;
    margin: auto 71px;
  }
  .zoomPanel .zoomDescription {
    grid-column: 1/span calc(var(--columns-number));
    grid-row: 3/3;
    margin: 32px 71px 67px 71px;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .zoomPanel .zoomDescription p {
    width: max-content;
  }
  .zoomPanel .share-container {
    width: 300px;
    min-height: 62px;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .zoomPanel .share-container .share-toggle {
    color: white;
    border-color: white;
  }
  .zoomPanel .share-container .share-toggle svg * {
    fill: white !important;
    stroke: white !important;
  }
  .zoomPanel .share-container .share-popup {
    margin-top: 52px;
  }
  /* #endregion zoomPanel*/
  /* #region search */
  .search-cont .search-header .bottom .dx {
    width: 125px;
  }
  .search-cont .search-header .advanced .item-1 {
    align-items: flex-end;
  }
  .search-cont .search-header .advanced .item-1 div {
    margin-top: 0;
  }
  .search-cont .search-header .advanced .item-2 .content .mydropdown .mydropdown-button {
    width: 248px;
  }
  .search-cont .search-header .advanced .filter .filter-item-1 {
    grid-column: 1/span var(--half-columns);
    grid-row: 2;
  }
  .search-cont .search-header .advanced .filter .filter-item-2 {
    grid-column: var(--half-columns-start)/span var(--half-columns);
    grid-row: 2;
  }
  .search-cont .search-items .numbers .number-cont .number {
    grid-column: span 4;
  }
  .search-cont .search-items .articles .article {
    display: grid;
    grid-template-columns: repeat(var(--columns-number), 1fr);
    grid-template-rows: auto;
  }
  .search-cont .search-items .articles .article img {
    grid-column: 10/span 3;
    grid-row: 1/span 5;
    width: 100%;
    height: auto;
    max-width: none;
  }
  .search-cont .search-items .articles .article .art-eyelet {
    margin-top: 0;
    grid-column: 1/span 8;
    grid-row: 1;
  }
  .search-cont .search-items .articles .article .art-title {
    grid-column: 1/span 8;
    grid-row: 2;
    margin-top: 8px;
    margin-bottom: 16px;
  }
  .search-cont .search-items .articles .article .art-sign {
    grid-column: 1/span 8;
    grid-row: 3;
    margin-bottom: 8px;
  }
  .search-cont .search-items .articles .article .art-content {
    grid-column: 1/span 8;
    grid-row: 4;
    margin-bottom: 16px;
  }
  .search-cont .search-items .articles .article .art-buttons {
    grid-column: 1/span 8;
    grid-row: 5;
    margin: 0;
  }
  .search-cont .search-items .articles .article hr {
    grid-column: 1/span 12;
    grid-row: 6;
    margin-top: 24px;
  }
  /* #endregion search*/
}
/* #endregion DESKTOP */
