@font-face {
  font-family: "Minion Pro";
  src: url("../fonts/Minion-pro/minion-pro.woff2") format("woff2"),
       url("../fonts/Minion-pro/minion-pro.woff") format("woff"),
       url("../fonts/Minion-pro/minion-pro.ttf") format("truetype"),
       url("../fonts/Minion-pro/minion-pro.eot") format("embedded-opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Trajan Sans Pro";
  src: url("../fonts/Trajan-sans-pro/trajansanspro-extralight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Trajan Sans Pro";
  src: url("../fonts/Trajan-sans-pro/trajansanspro-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Trajan Sans Pro";
  src: url("../fonts/Trajan-sans-pro/trajansanspro-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Trajan Sans Pro";
  src: url("../fonts/Trajan-sans-pro/trajansanspro-semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Trajan Sans Pro";
  src: url("../fonts/Trajan-sans-pro/trajansanspro-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Trajan Sans Pro";
  src: url("../fonts/Trajan-sans-pro/trajansanspro-black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ds-green: #3A5C5A;
  --ds-green-dark: #153330;
  --ds-green-lighter: #94B8AE;
  --ds-green-light: #CCE0D9;
  --ds-bordeaux: #772530;

  --ds-sand: #f7f5f0;
  --ds-line: #d7dfdb;
  --ds-text: #315954;
  --ds-font: "Poppins", sans-serif;
  --ds-font-title: "Trajan Sans Pro", serif;
  --ds-font-body: "Minion Pro", serif;

}

.text-green { color: var(--ds-green) !important;}
.text-green-lighter { color: var(--ds-green-lighter) !important;}
.text-green-light { color: var(--ds-green-light) !important;}



.bg-green {
  background: var(--ds-green);
  color: #fff;
}
.bg-green-dark {
  background: var(--ds-green-dark);
  color: #fff;
}
.bg-green-light {
  background: var(--ds-green-light);
  color: #fff;
}


body {
  color: var(--ds-text);
  background: #fff;
  font-family: var(--ds-font-body);
  font-weight: 400;
  font-size: 16px;
}

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

h1, h2, h3, h4 {
  font-family: var(--ds-font-title);
  text-transform: uppercase;
} 

/*h3 {
  text-transform: uppercase;
}*/

h5 {
  font-family: var(--ds-font);
  font-size: 1rem;
  font-weight: 600;
}

.text-bigger { 
  font-size: 1.3rem;
  line-height: 1.6;
}


/* BOTTONI */

.pill-link {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--ds-green);
  border: 1px solid var(--ds-green);
  font-family: var(--ds-font);
  padding: 1rem 1.8rem;
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.01rem;
  margin-right: 5px;
  z-index: 0;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.pill-link-white {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-family: var(--ds-font);
  padding: 1rem 1.8rem;
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.01rem;
  margin-right: 5px;
  z-index: 0;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.pill-link-full {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--ds-green);
  border: 1px solid #fff;
  font-family: var(--ds-font);
  padding: 1rem 1.8rem;
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.01rem;
  margin-right: 5px;
  z-index: 0;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.pill-link::before,
.pill-link-white::before,
.pill-link-full::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
  z-index: -1;
}

.pill-link::before {
  background: var(--ds-green-dark);
}

.pill-link-white::before {
  background: var(--ds-green-dark);
}

.pill-link-full::before {
  background: var(--ds-green-dark);
}

.pill-link:hover,
.pill-link:focus-visible {
  color: #fff;
  border-color: var(--ds-green-dark);
}

.pill-link-white:hover,
.pill-link-white:focus-visible {
  color: #fff;
  border-color: var(--ds-green-dark);
}

.pill-link-full:hover,
.pill-link-full:focus-visible {
  color: #fff;
  border-color: var(--ds-green-dark);
}

.pill-link:hover::before,
.pill-link:focus-visible::before,
.pill-link-white:hover::before,
.pill-link-white:focus-visible::before,
.pill-link-full:hover::before,
.pill-link-full:focus-visible::before {
  transform: scaleX(1);
}

.backlink {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--ds-font);
  font-size: 0.65rem;
  padding-top: 0.5rem;
  margin-top: -0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.vh-50 {
    height: 50vh !important;
}


.overlay {position:absolute;inset:0;background:rgba(0,0,0,.45);}

.navbar {
/*  border-bottom: 1px solid #edf1ef;*/
  background: rgba(255, 255, 255, 0.96);
}

.navbar-brand {
  color: var(--ds-green);
  font-family: var(--ds-font-title);
  font-weight: 800;
  letter-spacing: 0.12rem;
}

.navbar-brand small {
  display: block;
  font-family: var(--ds-font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18rem;
}

.nav-link {
  color: var(--ds-green);
  font-family: var(--ds-font);
  font-size: 0.82rem;
}

.nav-link.active,
.nav-link:hover {
  color: var(--ds-green) !important;
/*  font-weight: 500;*/
}

.navbar-absolute {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 1030;
/*  border-bottom: 1px solid rgba(255, 255, 255, 0.78);*/
  background: transparent;
}

.navbar-absolute .navbar-brand,
.navbar-absolute .nav-link {
  color: #fff;
}
/*.navbar-absolute .nav-link.active,
.navbar-absolute .nav-link:hover {
  color: #fff !important;
  font-weight: 500;
}*/

.navbar-absolute .nav-link {
  position: relative;
}

.navbar-absolute .nav-link::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.35rem;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.navbar-absolute .nav-link.active,
.navbar-absolute .nav-link:hover,
.navbar-absolute .nav-link:focus-visible {
  color: #fff !important;
}

.navbar-absolute .nav-link.active::after,
.navbar-absolute .nav-link:hover::after,
.navbar-absolute .nav-link:focus-visible::after {
  transform: scaleX(1);
}

.navbar-absolute .navbar-brand small {
  color: rgba(255, 255, 255, 0.78);
}

.navbar-absolute .navbar-brand {
  display: inline-flex;
  align-items: flex-start;
}

.navbar-absolute .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.45);
}

.navbar-absolute .navbar-toggler-icon {
  filter: invert(1);
}

/*.navbar-absolute-green {
  border-bottom: 1px solid #edf1ef;
}*/

.navbar-absolute-green .navbar-brand,
.navbar-absolute-green .nav-link {
  color: var(--ds-green);
}

.navbar-absolute-green .nav-link.active,
.navbar-absolute-green .nav-link:hover {
  color: var(--ds-green) !important;
}

.navbar-absolute-green .navbar-toggler {
  border-color: rgba(58, 92, 90, 0.45);
}

.navbar-absolute-green .navbar-toggler-icon {
  filter: invert(0);
}

.navbar .dropdown-toggle.btn-link {
  text-decoration: none;
}

.navbar .dropdown-menu {
  min-width: 5rem;
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown-menu {
  display: none;
}

.lang-dropdown.is-open .lang-dropdown-menu {
  display: block;
}
.dropdown-item {
  font-family: var(--ds-font);
  font-size: 14px;
  text-transform: uppercase;
}

.navbar-toggler {
  border: 0;
  padding: 0.4rem 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.mobile-nav-title {
  display: inline-flex;
  align-items: center;
}

.mobile-nav-title img {
  display: block;
  width: 3rem;
  height: auto;
}

@media (max-width: 991.98px) {
  .mobile-nav-panel {
    background: var(--ds-green);
    color: #fff;
    border-right: 0;
    width: min(88vw, 24rem);
  }

  .mobile-nav-panel .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 1.25rem 1.5rem;
    justify-content: flex-end;
    text-align: right;
  }

  .mobile-nav-panel .offcanvas-body {
    padding: 1.25rem 1.5rem 2rem;
    text-align: right;
  }

  .mobile-nav-panel .btn-close {
    opacity: 1;
  }

  .mobile-nav-list {
    gap: 0.3rem;
    margin-left: auto;
    width: 100%;
    align-items: flex-start;
  }

  .mobile-nav-panel .mobile-nav-list .nav-link,
  .navbar-absolute .mobile-nav-panel .mobile-nav-list .nav-link {
    display: block;
    color: #fff !important;
    padding: 1rem 0;
    border-bottom: 1px solid var(--ds-line);
    text-align: right;
  }

  .mobile-nav-panel .mobile-nav-list .nav-link.active {
    color: var(--ds-green-lighter) !important;
  }

  .mobile-nav-panel .dropdown {
    width: 100%;
  }

  .mobile-nav-panel .dropdown-menu {
    position: static !important;
    transform: none !important;
    float: none;
    width: 100%;
    margin-top: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    text-align: right;
  }

  .mobile-nav-panel .dropdown-item {
    color: #fff;
    font-family: var(--ds-font);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--ds-line);
    background: transparent;
  }

  .mobile-nav-panel .dropdown-item.active,
  .mobile-nav-panel .dropdown-item:active,
  .mobile-nav-panel .dropdown-item:hover {
    color: var(--ds-green-lighter);
    background: transparent;
  }
}





/* GENERAL - in varie PAGINE*/

.hero-banner {
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat;
  min-height: 72vh;
  position: relative;
  color: #fff;
  display: flex;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

.hero-banner > .container {
  position: relative;
  z-index: 1;
}

.page-hero {
    padding: 5rem 0 0rem;
    min-height: 680px;
}

.page-hero h1,
.display-title {
  color: var(--ds-green);
  font-family: var(--ds-font-title);
  font-size: clamp(3.2rem, 6vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.06em;
/*  line-height: 1;*/
  text-transform: uppercase;
  margin-left: -0.5rem;
}

.page-hero p,
.hero-subtitle {
  color: #bfd0cb;
  font-family: var(--ds-font-title);
  font-size: clamp(1rem, 2vw, 1.6rem);
  text-transform: uppercase;
  max-width: 75%;
}

.page-hero-news p {
  color: #bfd0cb;
  font-family: var(--ds-font-title);
  font-size: clamp(1rem, 2vw, 1.6rem);
  text-transform: uppercase;
  margin: auto;
}


/*hover immagini e video*/
.feature-panel {
  position: relative;
  overflow: hidden;
  background: var(--ds-green);
  color: #fff;
  isolation: isolate;
/*  aspect-ratio: 1;*/
}

.feature-panel img,
.feature-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s ease, filter 0.35s ease;
}

.feature-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(70, 109, 105, 0);
  z-index: 1;
  transition: background 0.35s ease;
}

.feature-panel:hover img,
.feature-panel:hover video,
.feature-panel:focus-visible img,
.feature-panel:focus-visible video {
  transform: scale(1.08);
  filter: saturate(0.88);
}

.feature-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.8rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.feature-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--ds-font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  color: #fff;
  text-transform: inherit;
  margin-left: 5px;
  z-index: 2;
}

.feature-copy .eyebrow::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
}

.feature-copy h3 {
  margin: 0;
  font-family: var(--ds-font-title);
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  /*  line-height: 0.95;*/
  text-transform: uppercase;
  z-index: 2;
}

.feature-copy h3.bigger {
  font-size: clamp(3rem, 5vw, 5.5rem);
  width: 75%;
}

.feature-copy .ingredients {
  text-transform: uppercase;
  justify-content: flex-end;
}

.DS-grid .feature-copy::before {
  content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
}


.big-callout {
  padding: 5rem 0 0;
  text-align: center;
}

.big-callout h2 {
  font-family: var(--ds-font-title);
  text-transform: uppercase;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1;
}

.locations-box {
  background: var(--ds-green);
  color: #fff;
  padding: clamp(2rem, 4vw, 2.75rem);
}

.city-tabs {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.city-tab {
  border: 0;
  background: transparent;
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--ds-font-title);
  font-size: 0.92rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.city-tab.is-active {
  color: #fff;
  font-weight: 700;
}

.city-divider {
  width: 1.4rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.city-results {
  margin-top: 3.5rem;
}

.city-location {
  display: block;
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.city-location:hover,
.city-location:focus-visible {
  border-color: #fff;
}

.city-location strong {
  display: block;
  font-family: var(--ds-font);
  font-weight: 500;
  color: #fff;
}

.city-line {
  width: 100%;
  height: 1px;
  margin: 0.8rem 0 1rem;
  background: rgba(255, 255, 255, 0.72);
}

.city-location p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

/********** end GENERAL - in varie PAGINE*/




/* HOME */

.home-hero .display-title {
  color: #fff;
  text-align: center;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.home-hero-inner {
  min-height: 100vh;
}

.home-hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.2rem;
  z-index: 2;
}

.home-time-label {
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--ds-font-title);
  font-size: 0.72rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.home-meal-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.home-meal-item {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--ds-font-title);
  font-size: 0.72rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  padding: 0;
}

.home-meal-item.is-active {
  color: #fff;
}

.home-meal-divider {
  width: 1.75rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}


.bg-intro {
  background-repeat: no-repeat; 
  background-size: 50%; 
  background-position: bottom left; 
  min-height: 650px;
}

.intro h2 {
  font-family: var(--ds-font-title);
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  line-height: 1.18;
  text-transform: uppercase;
}

.intro p {
  margin: 0;
  line-height: 1.7;
}



.home-feature-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  width: 100%;
}

.home-feature-tall,
.home-feature-stack {
  min-height: 25rem;
}

.home-feature-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.home-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  color: #fff;
  isolation: isolate;
}

.home-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s ease, filter 0.35s ease;
}

.home-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}


.home-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(70, 109, 105, 0);
  z-index: 1;
  transition: background 0.35s ease;
}




.home-feature-card:hover img,
.home-feature-card:focus-visible img {
  transform: scale(1.08);
  filter: saturate(0.88);
}

.home-feature-card:hover::after,
.home-feature-card:focus-visible::after {
  background: rgba(70, 109, 105, 0.62);
}

.home-feature-card:hover::before {
    background: linear-gradient(90deg, rgba(70, 109, 105, 0.5), rgba(70, 109, 105, 0.1));
}

.home-city-slider {
  position: relative;
  overflow: hidden;
}

.home-city-slide {
  position: relative;
  min-height: 680px;
  color: #fff;
}

.home-city-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(37, 79, 75, 0.62);
  z-index: 1;
}

.home-city-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-slide-content {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 1rem 1.5rem;
}

.eyebrow {
  font-family: var(--ds-font-title);
  font-size: 0.95rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}


.title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.line {
  width: 6rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  display: flex;
}

.city h4 {
  margin: 0;
  font-family: var(--ds-font-title);
  font-size: clamp(3.2rem, 7vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
}

.city-locations {
  margin-top: 2rem;
}

.city-locations .location-item {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.city-locations .location-item:hover,
.city-locations .location-item:focus-visible {
  border-color: #fff;
}

.city-locations .location-item strong {
  display: block;
  font-family: var(--ds-font);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.city-locations .divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
  margin: 0.4rem 0 0.7rem;
}

.home-city-slider .carousel-indicators {
  display: none;
}
.home-city-slider .carousel-control-next, .home-city-slider .carousel-control-prev {
  z-index: 3;
}



.moments-section {
  background: #edf5f2;
}

.moments-title {
  font-family: var(--ds-font-title);
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  white-space:nowrap;
}

.moments-filter {
  margin-top: 4rem;
  max-width: 22rem;
}

.moments-filter button {
  width: 55%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #9eb4af;
  color: var(--ds-green);
  font-family: var(--ds-font-title);
  text-transform: uppercase;
  text-align: left;
  transition: width 0.25s ease, color 0.25s ease;
}

.moments-filter button.is-active {
  width: 100%;
  color: var(--ds-green-dark);
  font-weight: 600;
}

.moments-filter button.is-active::before {
  content: none;
}

.moments-stage {
  opacity: 1;
  transition: opacity 0.35s ease;
}

.moments-stage.is-fading {
  opacity: 0;
}

.moments-gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.38fr 1.2fr;
  gap: 1.5rem;
  align-items: start;
}

.moments-gallery img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.moments-gallery .main {
  aspect-ratio: 0.72 / 1;
}

.moments-gallery .small {
  aspect-ratio: 0.72 / 0.92;
  margin-top: 5.5rem;
}

.moments-gallery .large {
  aspect-ratio: 1 / 0.96;
  margin-top: 12rem;
}

.moments-copy {
  margin-top: 2rem;
  max-width: 26rem;
}

.moments-copy h3 {
  font-family: var(--ds-font-body);
  color: var(--ds-green);
  font-size: 1.25rem;
  font-weight: 700;
}

.moments-copy p {
  color: #5c7772;
  line-height: 1.75;
}



/************ end HOME*/



/* PANINI */
.filter {
  font-family: var(--ds-font);
  text-transform: lowercase;
}

.panini-card {
  position: relative;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.panini-card .card-media {
  position: relative;
}

.panini-card-tags {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
  max-width: calc(100% - 2rem);
}

.panini-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--ds-green-lighter);
  color: #fff;
  font-family: var(--ds-font);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.panini-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--ds-green);
  background: transparent;
  color: var(--ds-green);
  font-family: var(--ds-font);
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.panini-filter-btn:hover,
.panini-filter-btn[aria-expanded="true"] {
  background: var(--ds-green);
  color: #fff;
}

.panini-filter-panel {
  background: var(--ds-green);
  color: #fff;
  border-left: 0;
  width: min(88vw, 24rem);
}

.panini-filter-panel .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1.25rem 1.5rem;
  justify-content: space-between;
}

.panini-filter-panel .offcanvas-body {
  padding: 0.5rem 1.5rem 2rem;
}

.panini-filter-panel .btn-close {
  opacity: 1;
}

.panini-filter-title {
  font-family: var(--ds-font);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: var(--ds-green-lighter);
}

.panini-filter-list {
  display: flex;
  flex-direction: column;
}

.panini-filter-link {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: var(--ds-font-title);
  font-size: 1.15rem;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.panini-filter-link:hover {
  color: var(--ds-green-lighter);
}

.panini-filter-link.is-active {
  color: var(--ds-green-lighter);
}

.panini-card .card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(70, 109, 105, 0);
  transition: background 0.35s ease;
  z-index: 1;
}

.panini-card .card-media img {
  transition: transform 0.8s ease;
}

.panini-card:hover .card-media img {
  transform: scale(1.08);
}

.panini-card:hover .card-media::after {
  background: rgba(70, 109, 105, 0.62);
}

.panini-card-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.2rem 1.2rem 1.4rem;
  color: #fff;
/*  opacity: 0;*/
  gap: 0.75rem;
}

.panini-card-copy > :not(h3) {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.panini-card:hover .panini-card-copy > :not(h3) {
  opacity: 1;
}

.panini-card-copy h3 {
  color: var(--ds-green);
  font-family: var(--ds-font-title);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 0.98;
  margin: 0;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.panini-card:hover .panini-card-copy h3 {
  color: #fff;
}

.panini-card .eyebrow {
  font-family: var(--ds-font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  color: #fff;
  text-transform: inherit;
  margin-left: 0px;
  opacity: 1;
}


/*** QUESTA SERVIRA PER GLI INGREDIENTI DA METTERE NELLA PAGINA */
/*#panini .category-grid > [class*="col"]:nth-child(6n) .panini-card .card-media::after,
.panini-card-ingredient .card-media::after {
  background: rgba(58, 92, 90, 0.82);
}

#panini .category-grid > [class*="col"]:nth-child(6n) .panini-card .panini-card-copy,
.panini-card-ingredient .panini-card-copy {
  opacity: 1;
}

#panini .category-grid > [class*="col"]:nth-child(6n) .panini-card .panini-card-copy,
.panini-card-ingredient .panini-card-copy h3 {
  justify-content: flex-start;
  font-size: clamp(1rem, 2vw, 1.2rem);
}*/


.cta-banner-restaurants {
  background: var(--ds-green-light);
  padding: clamp(3.2rem, 6vw, 5.5rem) clamp(2rem, 5vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-banner-restaurants .copy h4 {
  margin: 0 0 0.75rem;
  font-family: var(--ds-font-title);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.cta-banner-restaurants .copy p {
  font-family: var(--ds-font);
  font-size: 0.82rem;
}

/********** end PANINI*/





/* SINGOLO PANINO */
.ds-mask-media {
  display: flex;
  align-items: center;
  justify-content: end;
  min-height: 32rem;
  background: #fff !important;
  overflow: hidden;
}

.ds-mask-text {
  width: min(95%, 50rem);
  aspect-ratio: 70.022 / 48.494;
  display: block;
}

.ds-mask-fill {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.outline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.outline-list li {
  font-family: var(--ds-font-title);
  border-bottom: 1px solid var(--ds-line);
  padding: 0.9rem 0;
  padding-right: 3rem;
  text-transform: uppercase;
  font-size: 0.94rem;
}

.story-image-dx {
  border-radius: 0 0 0 3rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image-sx {
  border-radius: 0 3rem 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image-dx img,
.story-image-sx img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/********** end SINGOLO PANIN0 */



/* MOMENTI */

.hero-banner-momenti {
  background-size: 82%; background-position: right -12rem bottom;
  background-repeat: no-repeat;
  min-height: 72vh;
  position: relative;
  color: #fff;
  display: flex;
}

.momenti-intro p {
  max-width: 50rem;
  margin:auto;
}

.momenti-intro .line {
  width: min(16rem, 60%);
  height: 1px;
  margin: 5rem auto 0;
  background: #b9c9c4;
}


.moment-single-hero {
  position: relative;
  min-height: 78vh;
  padding-top: 8rem;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.moment-single-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 30, 29, 0.26);
}

.moment-single-hero .container {
  position: relative;
  z-index: 1;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
}

.moment-single-hero-copy {
  margin-top: auto;
  padding-bottom: 4rem;
  max-width: 46rem;
}

.moment-single-hero h1 {
  margin: 0;
  font-family: var(--ds-font-title);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.moment-single-hero p {
  margin: 1.5rem 0 0;
  max-width: 34rem;
  font-family: var(--ds-font-title);
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.moment-single-intro {
  max-width: 56rem;
}

.moment-single-gallery {
  background: #fff;
}

.moment-gallery-card {
  aspect-ratio: 1;
  /*aspect-ratio: 0.82 / 1;
  background: #edf2ef;*/
}

.moment-gallery-card--tall {
  aspect-ratio: 0.82 / 1.24;
}

.moment-gallery-card img, .moment-gallery-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.moment-category-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  color: #6a8580;
  font-family: var(--ds-font-title);
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-transform: uppercase;
}

.moment-category-strip__divider {
  width: 1.4rem;
  height: 1px;
  background: #b9c9c4;
}

.moment-single-cta {
  background: #d9e6e1;
  padding-top: 5rem;
}

.moment-single-cta__hero {
  position: relative;
}

.moment-single-cta__hero .container {
  min-height: 24rem;
  position: relative;
}

.moment-single-cta__copy {
  max-width: 28rem;
  margin: 0 auto;
  text-align: center;
}

.moment-single-cta__copy h2 {
  margin: 0;
  font-family: var(--ds-font-title);
  color: var(--ds-green);
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.moment-single-cta__media {
  display: flex;
  justify-content: center;
  margin-top: -1rem;
}

.moment-single-cta__media img {
  width: min(100%, 24rem);
  height: auto;
  display: block;
}

.moment-single-city-box {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.moments_cta {
  background-repeat: no-repeat; 
  background-position: center bottom; 
  background-size: contain; 
  min-height: 650px;
}



/* tiles in RISTORANTI e in OLTRE I PANINI */
.DS-grid {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.DS-tile,
.restaurant-intro-tile {
  position: relative;
  min-height: 30rem;
}

.DS-tile {
  display: block;
  overflow: hidden;
  color: #fff;
  background: #dbe2de;
}

.DS-tile img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.85s ease, filter 0.35s ease;
}

/*hover*/
.DS-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(70, 109, 105, 0);
  transition: background 0.35s ease;
  z-index: 1;
}

.DS-tile:hover img {
  transform: scale(1.08);
}

.DS-tile:hover::after {
  background: rgba(70, 109, 105, 0.62);
}
.DS-tile:hover .feature-copy::before {
    background: linear-gradient(90deg, rgba(70, 109, 105, 0.5), rgba(70, 109, 105, 0.1));
}


.DS-tile .meta,
.DS-tile .badge {
  position: absolute;
  z-index: 2;
}

.DS-tile .meta {
  left: 1.6rem;
  bottom: 1.6rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  max-width: 18rem;
}

.DS-tile .meta p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.35;
  color: #fff;
}

.DS-tile .badge {
  right: 1.6rem;
  bottom: 1.6rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--ds-green);
  color: var(--ds-green);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.DS-tile .badge img {
  object-fit: contain;
  padding: 10px;
}

.DS-tile:hover .meta,
.DS-tile:hover .badge {
  opacity: 1;
}


/* RISTORANTI */

.restaurant-intro-tile {
  background: var(--ds-green);
  color: #fff;
  padding: 1.8rem 1.2rem 1.4rem;
}

.restaurant-intro-tile .intro-line {
  display: block;
  font-family: var(--ds-font);
  font-size: 0.9rem;
  padding-top: 0.2rem;
}
.restaurant-intro-tile .intro-card {
  margin-left: 5px;
}

.restaurant-intro-tile .intro-card img {
  width: 50%;
  margin: auto;
  display: block;
}

/********** end RISTORANTI */





/* SINGOLO RISTORANTE */
.restaurant-info-panel {
  background: var(--ds-green);
  color: #fff;
}

.restaurant-info-panel .address {
  font-size: 1.3rem;
  line-height: 1.35;
}

.info-box .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--ds-font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  color: #fff;
  text-transform: inherit;
  margin-left: 5px;
  color: var(--ds-green-light);
}

.info-box .eyebrow::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  background: rgba(204, 224, 217, 0.9);
}

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

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.hours strong {
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
.hours span {
  font-family: var(--ds-font);
}


.moment-card {
  position: relative;
/*  min-height: 25rem;*/
  overflow: hidden;
  isolation: isolate;
}

.moment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(70, 109, 105, 0);
  transition: background 0.35s ease;
  z-index: 1;
}

.moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s ease, filter 0.35s ease;
}

.moment-card:hover img {
  transform: scale(1.08);
  filter: saturate(0.88);
}

.moment-card:hover::after {
  background: rgba(70, 109, 105, 0.62);
}


.moment-card-label {
  position: absolute;
  top: 1.8rem;
  left: 1.2rem;
  color: #fff;
  font-family: var(--ds-font-title);
  font-size: clamp(1.3rem, 2.5vw, 3.25rem);
  text-transform: uppercase;
  z-index: 2;
}

.restaurant-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.restaurant-category-strip a {
  font-family: var(--ds-font-title);
  font-size: clamp(1.3rem, 2.2vw, 3.25rem);
  text-transform: uppercase;
}

.restaurant-category-strip .divider {
/*  flex: 1 1 2rem;*/
  height: 1px;
  background: var(--ds-line);
  min-width: 2rem;
}


/********** end SINGOLO RISTORANTE*/




/* ALTRO - OLTRE I PANINI */


/* end ALTRO - OLTRE I PANINI */



/***********************************************************/

.overlay-card {
  position: relative;
  min-height: 500px;
  color: #fff;
}

.overlay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.55));
}

.overlay-card > * {
  position: relative;
  z-index: 1;
}

.hero-media,
.card-media {
  overflow: hidden;
  background: var(--ds-green-light);
}

.hero-media img,
.img,
.card-media img,
.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-split {
  min-height: 540px;
}

.hero-split .overlay-block {
  background: rgba(70, 109, 105, 0.9);
  color: #fff;
  min-height: 100%;
}

.category-grid > [class*="col"] {
  margin-bottom: 1.5rem;
}

.split-copy {
  max-width: 32rem;
}


.feature-panel:hover::after,
.feature-panel:focus-visible::after {
  background: rgba(70, 109, 105, 0.62);
}

/***********************************************************/



/* NEWS */

.news-list {
  border-top: 1px solid var(--ds-line);
  padding: 1.25rem 0;
}

/*.news-list:last-child {
  border-bottom: 1px solid var(--ds-line);
}*/
.news-list .link {
  font-size: 0.75rem;
  text-decoration: underline; 
  display: block;
  font-family: var(--ds-font);
}

.news-date {
  font-family: var(--ds-font);
  font-size: 0.82rem;
  line-height: 2rem;
}

.news-list-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: #edf2ef;
}

.news-list-thumb img,
.news-article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-list-title {
  font-family: var(--ds-font-title);
  color: var(--ds-green);
  text-transform: uppercase;
}




.news-article-head h1 {
  color: var(--ds-green);
/*  font-size: clamp(3.2rem, 7vw, 5.7rem);*/
  font-size: clamp(3.2rem, 5vw, 5.7rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.news-article-hero {
  max-width: 60rem;
  margin: auto;
  aspect-ratio: 1.65 / 1;
  overflow: hidden;
}

.news-article-body {
  max-width: 48rem;
  margin: 3rem auto 0;
  font-size: 1.08rem;
  line-height: 1.8;
}

.news-article-body .lead {
  color: var(--ds-text);
  font-size: 1.9rem;
  line-height: 1.45;
}


/* end NEWS */





/* CONTATTI */

.contact-directory {
  border-top: 1px solid var(--ds-line);
  padding-top: 3rem;
}

/*.contact-directory h2 {
  font-family: var(--ds-font-title);
  color: var(--ds-green);
  text-transform: uppercase;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.05;
}*/

.contact-location-item {
  padding-bottom: 1.6rem;
  
}

.contact-location-item h3 {
  font-family: var(--ds-font);
  color: var(--ds-green);
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--ds-line);
  text-transform: inherit;
}

.contact-panel {
  background: var(--ds-green);
  color: #fff;
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-socials img {
  width: 1.35rem;
  height: 1.35rem;
}

.contact-form-shell {
  background: #fff;
  color: var(--ds-green);
  font-family: var(--ds-font);
}

.contact-form-shell .form-control,
.contact-form-shell .form-select,
.contact-form-shell textarea {
  border: 0;
  border-bottom: 1px solid var(--ds-green);
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  color: var(--ds-green);
  box-shadow: none;
}

.contact-form-shell .form-control::placeholder,
.contact-form-shell textarea::placeholder {
  color: var(--ds-green-lighter);
}

.contact-form-shell textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-check {
  color: var(--ds-green);
  font-size: 0.88rem;
}

.contact-submit {
  min-width: 8rem;
  text-align: center;
  background: var(--ds-green);
  color: #fff;
  border: 0;
}

.contact-team-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 5rem 0 3.5rem;
}



/* ******************************************************** RESPONSIVE  **************************** */

@media (min-width: 3840px) {
    .container {
        max-width: 2400px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 1920px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1440px;
    }
    .page-hero {
      min-height: 750px;
    }
    .page-hero h1, 
    .display-title {
      font-size: clamp(3.2rem, 6vw, 9rem);
    }
    .home-city-slide, .city-slide-content {
      min-height: 750px;
    }
}

@media (max-width: 991.98px) {

  .brand-logo{
    margin-left: 3px;
  }

  .bg-intro {
    background-size: 80%;
    background-position: bottom center;
  }

  .page-hero {
    padding: 5rem 0 0rem;
    min-height: 400px;
  }
  .page-hero.vh-100 {
      height: 75vh !important;
  }

  .page-hero h1,
  .display-title {
    margin-left: -3px;
  }
  
  .page-hero p,
  .hero-subtitle {
    max-width: 100%;
  }

  .hero-split {
    min-height: auto;
  }

  .text-bigger {
    font-size: 1.1rem;
    line-height: 1.3;
  }

/*  .big-callout h2,
  .display-title,
  .page-hero h1 {
    letter-spacing: -0.04em;
  }*/

  .feature-panel {
    min-height: 400px;
  }

  .feature-copy {
    padding: 1.8rem 0.8rem 1.4rem;
  }

  .outline-list li {
    padding-right: 1rem;
  }

  .ds-mask-media {
    min-height: 18rem;
    justify-content: center;
  }

  .hero-banner-momenti {
    background-size: 110%; background-position: right -2rem bottom;
  }

  .moments-title {
    white-space:initial;
  }
  .momenti-hero {
    padding-top: 7rem;
  }

  .momenti-hero .container,
  .momenti-hero-media {
    min-height: auto;
  }

  .momenti-hero-copy {
    padding-bottom: 0;
  }

  .momenti-intro-inner {
    padding: 2rem 0 0;
  }

  .momenti-intro-line {
    margin-top: 3rem;
  }

  .moment-single-hero {
    min-height: 60vh;
    padding-top: 6.5rem;
  }

  .moment-single-hero .container {
    min-height: 60vh;
  }

  .moment-single-hero-copy {
    padding-bottom: 2rem;
  }

  .moment-single-cta {
    padding-top: 3rem;
  }

  .moment-single-cta__media {
    margin-top: 1rem;
  }

  .moment-category-strip__inner {
    gap: 1rem;
  }

  .moments_cta {
    min-height: 400px;
  }

  .city-tabs {
    gap: 0.9rem;
  }

  .city-divider {
    width: 0.9rem;
  }

  .city-results {
    margin-top: 2.5rem;
  }

  .DS-tile,
  .restaurant-intro-tile {
    min-height: 24rem;
  }

/*  .home-city-slide,
  .city-slide-content {
    min-height: 500px;
  }*/

  .line {
    width: 2.5rem;
  }

/*  .moments-gallery {
    grid-template-columns: 1fr;
  }*/

  .moments-gallery .small,
  .moments-gallery .large {
    margin-top: 0;
  }

  .moments-filter {
    margin-top: 2rem;
    max-width: none;
  }

/*  .intro-card {
    max-width: 14rem;
  }*/

  .backlink {
    font-size: 0.75rem;
  }

  .restaurant-category-strip {
    gap: 1rem;
  }

/*  .restaurant-category-strip .divider {
    display: none;
  }*/

  .home-hero-bottom {
    bottom: 1rem;
  }

  .home-meal-nav {
    justify-content: flex-start;
    gap: 0.7rem;
    margin-top: 0.8rem;
  }

  .home-feature-grid {
    grid-template-columns: 1fr;
  }

  .home-feature-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .home-feature-card {
    min-height: 300px;
  }

  .contact-form-shell {
    padding: 1.5rem;
  }

  .cta-banner-restaurants {
    flex-direction: column;
    align-items: flex-start;
  }



  .world-card {
    width:100%;
  }
  .row > .col-md-6:nth-child(2) .world-card {
    margin-left: 0%;
  }
  .border-end { border: 0 !important
  }

  .vh-50 {
      height: auto !important;
  }

}


@media (max-width: 640px) {
  .home-feature-stack {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(14rem, 1fr));
  }
  .bg-intro {
    background-size: 100%;
    background-position: bottom center;
  }
}

/* **************************** END RESPONSIVE  **************************** */






/* FOOTER condiviso*/

.world-card {
  min-height: 100%;
  width:98%;
}
.row > .col-md-6:nth-child(2) .world-card {
  margin-left: 2%;
}

.cta-banner-catering {
  background: var(--ds-green);
  color: #fff;
  text-align: center;
  padding: 6.5rem 0;
}

.cta-banner-catering h2 {
  font-family: var(--ds-font-title);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300;
  text-transform: uppercase;
}



.news-strip {
  background: var(--ds-bordeaux);
  color: #fff;
}

.news-strip .date {
  font-family: var(--ds-font);
  font-size: 0.82rem;
  line-height: 2rem;
}

.news-strip h6 {
  font-family: var(--ds-font-title);
  text-transform: uppercase;
  margin: 0;
}

.news-strip .link {
  font-size:0.75rem;
  text-decoration: underline;
  display: block;
  font-family: var(--ds-font);
}


.newsletter {
  background: var(--ds-green-dark);
  color: #fff;
  text-align: center;
  padding: 6.5rem 0;
}

.newsletter .form-control,
.newsletter .form-control:focus {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  box-shadow: none;
  color: #fff;
}

.newsletter .form-control::placeholder {
  color: var(--ds-green-lighter);
}

.newsletter-check {
  font-family: var(--ds-font);
  color: var(--ds-green-lighter);
  font-size: 0.75rem;
  text-align: left;
}

.newsletter-check .form-check-input {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.newsletter-check .form-check-input:checked {
  background-color: #fff;
  border-color: #fff;
}

.footer-note {
  font-family: var(--ds-font);
  color: var(--ds-green-light);
  font-size: 0.75rem;
}

.footer-socials,
.footer-deliveroo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.footer-socials img {
  width: 22px;
  height: 22px;
}

.footer-deliveroo img {
  width: 120px;
}

@media (max-width: 991.98px) {
  .footer-note {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
  }
}


/***************************** FOOTER condiviso*/
