@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:wght@400;500;600;700;800&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --color-primary: #222741;
  --color-accent: #a6302b;
  --color-gray: #cdcdcd;
  --color-red: #fb3033;
  --color-green: #51bf51;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.nunito-regular {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.nunito-bold {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.nunito-extra-bold {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

h1 {
  font-size: 2.441rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.441rem;
  line-height: 1.2;
}

h3 {
  font-size: 2rem;
  line-height: 1.2;
}
h3.small {
  font-size: 1.563rem;
}

h1,
h2,
h3 {
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

p {
  font-size: 1.15rem;
  line-height: 1.4;
}

small {
  font-size: 0.8rem;
  line-height: 1.4;
  font-style: italic;
  display: inline-block;
}

a {
  text-decoration: none;
  color: var(--color-primary);
}

body {
  color: var(--color-primary);
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

b {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

em {
  font-style: italic;
}

@media screen and (max-width: 992px) {
  .desktop {
    display: none !important;
  }
}

.mobile {
  display: none;
}
@media screen and (max-width: 992px) {
  .mobile {
    display: block !important;
  }
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

.flex {
  display: flex !important;
}
@media screen and (max-width: 767px) {
  .flex {
    flex-direction: column;
  }
}

.flex-row {
  flex-direction: row !important;
}

.flex-col {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-none {
  flex: none;
}

.align-centers {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-05 {
  gap: 0.5rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.text-center {
  text-align: center;
}

.mt-05 {
  margin-top: 0.5rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-05 {
  margin-bottom: 0.5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.ml-05 {
  margin-left: 0.5rem;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 2rem;
}

.ml-3 {
  margin-left: 3rem;
}

.mr-05 {
  margin-right: 0.5rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mr-3 {
  margin-right: 3rem;
}

.page-hero-top-shadow {
  box-shadow: inset 0 10px 35px -10px rgba(0, 0, 0, 0.2);
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 99%;
}

.bg-primary {
  background-color: var(--color-primary);
}

.text-primary {
  color: var(--color-primary);
}

.bg-gray {
  background-color: var(--color-gray);
}

.text-gray {
  color: var(--color-gray);
}

.text-black {
  color: #000;
}

.text-white {
  color: #fff;
}

.text-underline {
  text-decoration: underline;
}

strong {
  font-weight: 700;
}

.img-styled {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.container {
  max-width: 1399px;
  margin: auto;
  padding: 0 2rem;
}
.container .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.container .row.sidebar {
  grid-template-columns: 2.2fr 1fr;
}
@media screen and (max-width: 767px) {
  .container .row {
    display: flex;
    flex-direction: column;
  }
}

section {
  padding: 3rem 0;
}

img {
  max-width: 100%;
}

.c-btn {
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  border: solid 2px transparent;
  background-color: var(--color-primary);
  border-radius: 3rem;
  padding: 0.85rem 2rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.c-btn:hover {
  background-color: var(--color-accent);
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 1rem;
  }
}
.c-btn.outline {
  color: var(--color-primary);
  background-color: transparent;
}
.c-btn.outline.white {
  border-color: #fff;
  color: #fff;
}
.c-btn.outline.white:hover {
  border-color: #fff;
  color: #fff;
}
.c-btn.outline:hover {
  border: solid 2px var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
}
.c-btn.small {
  font-size: 0.95rem;
  padding: 0.6rem 1.5rem;
}

input:not([type=checkbox]):not([type=submit]),
select,
textarea {
  width: 100%;
  font-size: 1rem;
  padding: 1rem 0.9rem;
  box-sizing: border-box;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .card-grid {
    display: flex;
    flex-direction: column;
  }
}
.card-grid .card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  border: 1px solid #e5e5e5;
  transition: box-shadow 0.2s ease;
}
.card-grid .card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.pill {
  background-color: var(--color-accent);
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
}
.pill.red {
  background-color: var(--color-red);
}
.pill.green {
  background-color: var(--color-green);
}

.read-all {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  cursor: pointer;
}
.read-all span {
  padding: 0.3rem 0;
  border-bottom: solid 2px transparent;
  transition: all 0.25s ease;
}
.read-all:hover span {
  border-color: var(--color-accent);
}
.read-all .icon-arrow-right {
  fill: var(--color-primary);
}

textarea {
  font-family: "Nunito", sans-serif;
}

.icon-phone,
.icon-search,
.icon-check,
.icon-phone,
.icon-burger,
.icon-x,
.icon-arrow-right,
.icon-time {
  height: 1.5em;
  width: 1.5em;
  fill: #fff;
  stroke: none;
}

.pagination {
  text-align: center;
  margin-top: 3rem;
}

.pagination .nav-links {
  display: flex;
  gap: 0.15rem;
  justify-content: center;
}

.pagination .page-numbers,
.pagination .prev,
.pagination .next {
  padding: 6px 12px;
  border: 1px solid #ccc;
  color: var(--color-accent);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s, color 0.2s;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers,
  .pagination .prev,
  .pagination .next {
    padding: 6px 10px;
  }
}

.pagination .page-numbers:hover,
.pagination .prev:hover,
.pagination .next:hover {
  background: var(--color-accent);
  color: #fff;
}

.pagination .page-numbers.current {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  cursor: default;
}

.header-top {
  background-color: var(--color-primary);
  padding: 0.8rem 0;
  color: #fff;
}
.header-top .container .row {
  flex-direction: row !important;
}
.header-top a {
  color: #fff;
}

header .container .row {
  flex-direction: row !important;
}
header .icon-burger {
  fill: var(--color-primary);
  height: 2em;
  width: 2em;
}
header .logo-wrapper a {
  display: block;
  height: 60px;
}
header .logo-wrapper a img {
  height: 100% !important;
  width: auto;
}
@media screen and (max-width: 767px) {
  header .logo-wrapper a {
    height: 50px;
  }
}
header .burger-ico-wrapper {
  width: 40px;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
@media screen and (max-width: 992px) {
  header {
    padding: 2rem 0;
  }
}

nav ul li {
  padding: 3rem 0;
  cursor: pointer;
}
nav ul li a {
  font-size: 1.1rem;
  border-bottom: solid 3px transparent;
}
nav ul li:hover a, nav ul li.current-menu-item a, nav ul li.current-menu-ancestor a {
  color: var(--color-primary);
  border-bottom: solid 3px var(--color-accent);
}
nav ul li.menu-item-has-children {
  position: relative;
}
nav ul li.menu-item-has-children .sub-menu {
  position: absolute;
  z-index: 9999;
  background-color: #fff;
  display: none;
  top: 100%;
  min-width: 250px;
  border: solid 1px var(--color-primary);
  border-top: none;
}
nav ul li.menu-item-has-children .sub-menu li {
  padding: 0;
}
nav ul li.menu-item-has-children .sub-menu li:hover, nav ul li.menu-item-has-children .sub-menu li.current-menu-item {
  background-color: var(--color-primary);
}
nav ul li.menu-item-has-children .sub-menu li:hover a, nav ul li.menu-item-has-children .sub-menu li.current-menu-item a {
  color: #fff;
}
nav ul li.menu-item-has-children .sub-menu li a {
  display: block;
  border-bottom: none;
  padding: 0.5rem 1rem;
}
nav ul li.menu-item-has-children:hover .sub-menu {
  display: block;
}

@media screen and (max-width: 992px) {
  nav:not(.pagination) {
    display: none;
  }
}

#secondary {
  background-color: #fff;
  position: fixed;
  width: 300px;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 99999;
  box-sizing: border-box;
  transition: left 0.25s ease-out;
}
@media screen and (min-width: 992px) {
  #secondary {
    display: none;
  }
}
#secondary .menu-label {
  padding: 1rem;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-top: 0.9rem;
}
#secondary #primary-menu-id {
  flex-direction: column;
  align-items: start;
  gap: 0;
  overflow-y: auto;
  height: 100vh;
}
#secondary #primary-menu-id li {
  width: 100%;
  border-bottom: solid 1px #d9d9d9;
}
#secondary #primary-menu-id li a {
  padding: 1rem;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
#secondary #primary-menu-id li.current-menu-item a {
  background-color: var(--color-primary);
  color: #fff;
}
#secondary #primary-menu-id li .sub-menu {
  padding-left: 1.5rem;
}
#secondary #primary-menu-id li .sub-menu li:last-child {
  border-bottom: none;
}
#secondary.sidebar-hide {
  left: -300px;
}
#secondary.sidebar-hide #sidebar_close {
  display: none;
}
#secondary #sidebar_close {
  background-color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 9px;
  right: -25px;
  font-size: 1rem;
  cursor: pointer;
}
#secondary #sidebar_close .icon-x {
  fill: none;
  stroke: #000;
  stroke-width: 2;
}

#sidebar_backdrop {
  content: "";
  position: fixed;
  background-color: #000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0.5;
  z-index: 999;
}
@media screen and (min-width: 992px) {
  #sidebar_backdrop {
    display: none;
  }
}
#sidebar_backdrop.sidebar-hide {
  display: none;
}

.hero {
  overflow: hidden;
  position: relative;
}
.hero .hero-image-wrapper {
  height: 450px;
}
@media screen and (max-width: 767px) {
  .hero .hero-image-wrapper {
    height: 350px;
  }
}
.hero .hero-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.hero .hero-image-wrapper:after {
  content: "";
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  z-index: 0;
}
.hero .hero-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
}
.hero .hero-content-wrapper .container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .hero .hero-content-wrapper .container {
    justify-content: center;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .hero .hero-content-wrapper .hero-content {
    width: 100%;
    margin-left: 0;
  }
  .hero .hero-content-wrapper .hero-content h1 {
    font-size: 1.8rem;
  }
}
.hero.internal {
  height: 250px;
}
.hero.internal .hero-content-wrapper .container {
  justify-content: center;
  padding-bottom: 0;
}
.hero.internal .hero-content {
  width: 100%;
  margin-left: 0;
}
.hero.internal .hero-content .breadcrumbs {
  color: #fff;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.hero.internal .hero-content .breadcrumbs li a {
  color: #fff;
}
.hero.internal .hero-content .breadcrumbs li a:hover {
  text-decoration: underline;
}
.hero.internal .hero-content .breadcrumbs li::after {
  content: "/";
  margin-left: 1rem;
}
.hero.internal .hero-content .breadcrumbs li:last-child::after {
  display: none;
}

.partners-wrapper {
  padding-top: 2rem;
}
.partners-wrapper .slick-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.partners-wrapper .slick-slide img {
  max-height: 120px;
  width: auto;
  max-width: 100%;
  display: block;
}

footer {
  background-color: var(--color-primary);
  padding: 2rem 0;
  font-size: 1.15rem;
  line-height: 1.5rem;
  color: #fff;
}
footer a {
  color: #fff;
}
footer a:hover {
  text-decoration: underline;
}
footer .footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
}
@media screen and (max-width: 992px) {
  footer .footer-cols {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
footer .logo-wrapper {
  width: 170px;
}
footer h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
footer .footer-bottom {
  font-size: 0.85rem;
  margin-top: 1.3rem;
  padding-top: 1.3rem;
  border-top: solid 2px var(--color-accent);
}

#map_canvas {
  height: 400px;
}
#map_canvas .gm-style-iw.gm-style-iw-c .gm-style-iw-chr button {
  width: 24px !important;
  height: 24px !important;
  outline: none !important;
}
#map_canvas .gm-style-iw.gm-style-iw-c .gm-style-iw-chr button span {
  margin: 0 !important;
  position: absolute;
  top: 3px;
  right: 3px;
}

.contatti-form-wrapper br {
  display: none;
}
.contatti-form-wrapper .wpcf7-not-valid-tip {
  font-size: 0.85rem;
  margin-top: 0.35rem;
}
.contatti-form-wrapper [data-name=privacy] .wpcf7-list-item {
  margin: 0;
}

.wpcf7-response-output {
  border-color: #dc3232 !important;
}

.wp-block-list {
  margin: 1rem 0;
  padding-left: 1rem;
  list-style: disc;
}
.wp-block-list li {
  font-size: 1.15rem;
  line-height: 1.4;
}

@media screen and (max-width: 1199px) {
  .hp-page .about .boxes-wrapper {
    display: flex;
    flex-direction: column;
  }
}
.hp-page .about .boxes-wrapper .box-wrapper {
  padding: 1.3rem 1.5rem;
  border: solid 1px var(--color-gray);
  border-radius: 0.3rem;
  display: flex;
  gap: 1.3rem;
}
@media screen and (max-width: 767px) {
  .hp-page .about .boxes-wrapper .box-wrapper {
    flex-direction: column;
  }
}
.hp-page .about .boxes-wrapper .box-wrapper .box-pic-wrapper {
  max-width: 250px;
}
@media screen and (max-width: 767px) {
  .hp-page .about .boxes-wrapper .box-wrapper .box-pic-wrapper {
    max-width: none;
  }
}
.hp-page .about .boxes-wrapper .box-wrapper .box-info-wrapper h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.hp-page .about .boxes-wrapper .box-wrapper .box-info-wrapper ul li {
  font-size: 1.03rem;
  margin-top: 0.3rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  line-height: 1.3rem;
}
.hp-page .about .boxes-wrapper .box-wrapper .box-info-wrapper ul li .icon-check {
  flex: none;
  fill: var(--color-accent);
}

.last-news .section-title {
  position: relative;
}
.last-news .section-title a {
  color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.last-news .section-title a:hover {
  text-decoration: underline;
}
.last-news .card-grid {
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
.last-news .card-grid .card {
  text-align: left;
  color: var(--color-primary);
}
.last-news .card-grid .card:hover {
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.3);
}
.last-news .card-grid .card:hover .read-all span {
  border-color: var(--color-accent);
}
.last-news .card-grid .card .news-title-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.last-news .card-grid .card .news-title-group .news-date {
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.5rem;
  border-radius: 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.last-news .card-grid .card .news-title-group .news-date .news-day {
  font-size: 1.5rem;
}
.last-news .card-grid .card .news-title-group .news-date .news-month {
  text-transform: uppercase;
  font-size: 0.7rem;
}
@media screen and (max-width: 767px) {
  .last-news .card-grid .card .news-title-group .news-date .news-month {
    font-size: 0.5rem;
  }
}
.last-news .card-grid .card .news-title-group .news-title {
  color: var(--color-primary);
  font-size: 1.3rem;
  margin: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .last-news .card-grid .card .news-title-group .news-title {
    font-size: 1.1rem;
  }
}
.last-news .card-grid .card hr {
  margin: 1rem 0;
  border: none;
  height: 2px;
  background-color: var(--color-accent);
}
.last-news .card-grid .card .news-body {
  font-size: 1.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .last-news .card-grid .card .news-body {
    font-size: 1rem;
  }
}
.last-news.small .card-grid {
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .last-news.small .card-grid {
    gap: 0.7rem;
  }
}
.last-news.small .card-grid .card {
  padding: 12px;
}
@media screen and (max-width: 767px) {
  .last-news.small .card-grid .card {
    padding: 10px;
  }
}
.last-news.small .card-grid .card .news-title-group .news-title {
  font-size: 1rem;
}
.last-news.small .card-grid .card hr,
.last-news.small .card-grid .card .news-body,
.last-news.small .card-grid .card .read-all {
  display: none;
}

.tabs {
  display: flex;
  gap: 10px;
}
.tabs .tab {
  font-size: 1.15rem;
  padding: 10px 18px;
  border-radius: 6px 6px 0 0;
  border: solid 1px #ddd;
  border-bottom: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.tabs .tab:hover, .tabs .tab.active {
  background: var(--color-primary);
  color: #fff;
  border: solid 1px var(--color-primary);
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .tabs .tab {
    font-size: 1rem;
  }
}

.tab-panels {
  border: 1px solid #ddd;
  padding: 20px;
  background: #fff;
  border-radius: 0 6px 6px 6px;
}
.tab-panels .panel {
  display: none;
}
.tab-panels .panel ul {
  list-style: disc;
  padding-left: 2rem;
}
.tab-panels .panel ul li {
  padding: 0.5rem 0;
  font-size: 1.15rem;
  line-height: 1.4;
}
.tab-panels .panel.active {
  display: block;
}

.staff-page .staff-category {
  margin: 40px 0 20px;
  border-left: 4px solid var(--color-accent);
  padding-left: 12px;
  color: var(--color-primary);
}
.staff-page .card-grid .card img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}
.staff-page .card-grid .card .staff-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-primary);
}
.staff-page .card-grid .card .staff-role {
  font-size: 0.95rem;
}

.ricerca-page .last-news .card-grid .card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.ricerca-page .card-grid {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.ricerca-page .card-grid .card {
  text-align: left;
}
.ricerca-page .card-grid .card .ricerca-title {
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 1.2rem;
  margin: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .ricerca-page .card-grid .card .ricerca-title {
    margin-bottom: 1rem;
  }
}
.ricerca-page .card-grid .card .ricerca-body {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ricerca-page .card-grid .card .read-all svg {
  transform: rotate(90deg);
}
.ricerca-page .card-grid .card .read-all.leggi-meno svg {
  transform: rotate(-90deg);
}

.news-page .last-news .card-grid .card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.single-news-page .news-date-single {
  display: flex;
  gap: 0.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.single-news-page .card-grid .card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.single-news-page .card-grid .card:hover .read-all span {
  border-color: var(--color-accent);
}

.dovesiamo-page .info-e-recapiti-wrapper p {
  font-size: 1.05rem;
}
.dovesiamo-page .info-e-recapiti-wrapper p a {
  color: var(--color-accent);
  font-weight: 700;
}

.contatti-page form a {
  color: var(--color-accent);
  font-weight: 700;
}
.contatti-page .info-e-recapiti-wrapper p {
  font-size: 1.05rem;
}
.contatti-page .info-e-recapiti-wrapper p a {
  color: var(--color-accent);
  font-weight: 700;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px;
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 650px;
  max-height: 80%;
  overflow-y: auto;
  position: relative;
  animation: slideDown 0.3s ease-out;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=main.css.map */