@charset "UTF-8";

/* =========================
   VARIABLES
========================= */

:root {
  --color-primary: #2E6C8D;
  --color-secondary: #55B2CF;
  --color-accent: #6C9E36;
  --color-green: #64A42F;
  --color-text: #3D4350;
  --color-light: #F6F4F4;
  --color-card: #F1F3F6;
  --color-footer: #2B2B2B;
  --color-placeholder: #D0D6DE;

  --gradient-blue: linear-gradient(
    135deg,
    #56ACCA 0%,
    #53A7C6 7.14%,
    #50A3C1 14.29%,
    #4D9EBD 21.43%,
    #4A99B8 28.57%,
    #4795B4 35.71%,
    #4490AF 42.86%,
    #428BAB 50%,
    #3F87A7 57.14%,
    #3C82A2 64.29%,
    #397E9E 71.43%,
    #36799A 78.57%,
    #337595 85.71%,
    #317091 92.86%,
    #2E6C8D 100%
  );

  --container: 1216px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;
}

/* =========================
   BASE
========================= */

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

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  letter-spacing: 0.2px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  letter-spacing: -0.5px;
  line-height: 1.2;
}

h1 {
  font-size: 52px;
  font-weight: 700;
}

h2 {
  font-size: 42px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-green);
  color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--color-green);
}

.btn--secondary {
  background: var(--color-secondary);
  color: #fff;
}

.btn--outline {
  border: 2px solid var(--color-secondary);
  background: transparent;
  color: var(--color-secondary);
}

/* =========================
   HEADER
========================= */

.site-header {
  background: #fff;
  padding: 18px 0 15px;
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.site-logo img {
  width: 154px;
  display: block;
}

.site-header__menus {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 58px;
}

.menu {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.menu--top a {
  color: var(--color-secondary) !important;
  font-size: 14px;
}

.menu--main a {
  font-size: 15px;
}

.menu a {
  display: inline-flex;
  align-items: center;
  min-height: 33px;
  padding: 0 17px;
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.current-menu-item > a {
  background: var(--color-accent);
  color: #fff !important;
}

/* Mobile toggle */

.menu-toggle {
  display: none;
  width: 42px;
  height: 34px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 7px 0;
  background: var(--color-primary);
  border-radius: var(--radius-pill);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* =========================
   SHARED PAGE HERO
========================= */

.page-hero {
  background: var(--gradient-blue);
  color: #fff;
  padding: 70px 0;
}

.page-hero h1 {
  font-size: 52px;
  line-height: 1.1;
  margin: 0;
}

.breadcrumb {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 18px;
}

/* =========================
   HOME - HERO
========================= */

.home-hero {
  background: var(--gradient-blue);
  padding: 80px 0;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.home-hero h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size:clamp(32px, 3vw, 48px);
  font-weight: 800;

}

.home-hero p.breadcrumb {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  font-weight: 500;
}

.home-hero__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* =========================
   HOME - IN CONCRETO
========================= */

.home-services {
  padding: 70px 0;
  background: var(--color-light);
}

.home-services h2 {
  margin: 0 0 40px;
  color: var(--color-text);
  font-size: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.service-card__image {
  height: 150px;
  background: var(--color-placeholder);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card__content {
  padding: 22px;
}

.service-card__line {
  display: block;
  width: 34px;
  height: 3px;
  background: var(--color-green);
  margin-bottom: 14px;
}

.service-card h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 16px;
}

/* =========================
   HOME - CTA GREEN
========================= */

.home-cta-green {
  padding: 60px 0;
}

.home-cta-green__box {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  align-items: center;
  gap: 40px;
  background: var(--color-green);
  border-radius: var(--radius-md);
  padding: 40px;
}

.home-cta-green__content h2 {
  color: #fff;
  margin: 0 0 16px;
}

.home-cta-green__text,
.home-cta-green__text p,
.home-cta-green__content p {
  color: #fff;
  margin-bottom: 20px;
}

.home-cta-green__image img {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* =========================
   HOME - VOLUNTEER
========================= */

.home-volunteer {
  padding: 70px 0;
  background: var(--color-light);
  text-align: center;
}

.home-volunteer__inner {
  max-width: 820px;
}

.home-volunteer h2 {
  margin: 0 0 22px;
  color: var(--color-text);
}

.home-volunteer p,
.home-volunteer__intro p,
.home-volunteer__text p {
  margin: 0 auto 24px;
  line-height: 1.7;
}

.home-volunteer__intro {
  font-weight: 700;
}

.home-volunteer__intro strong {
  font-weight: 700;
}

/* =========================
   HOME - ULTIME NOTIZIE
========================= */

.home-news--compact {
  padding: 70px 0;
  background: #fff;
}

.home-news__title {
  margin: 0 0 40px;
}

.home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.home-news-card {
  background: var(--color-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.home-news-card__image {
  display: block;
  height: 170px;
  background: var(--color-green);
}

.home-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-news-card__content {
  padding: 22px;
}

.home-news-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.home-news-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
}

.home-news-card p {
  margin: 0;
}

.home-news__button {
  text-align: center;
  margin-top: 36px;
}

/* =========================
   ARCHIVE EVENTI
========================= */

.archive-section {
  padding: 70px 0 90px;
  background: var(--color-light);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.news-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.news-card__image {
  display: block;
  height: 180px;
  background: var(--color-green);
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card__content {
  padding: 24px;
}

.news-card__date {
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
}

.news-card__title {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.2;
}

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

.news-card__excerpt {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
}

.news-card__link {
  color: var(--color-secondary);
  font-weight: 700;
  text-decoration: none;
}

/* =========================
   SINGLE EVENTO
========================= */

.single-event {
  padding: 60px 0;
}

.single-event__image img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
}

.single-event__content {
  max-width: 800px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: var(--color-footer);
  color: #fff;
  padding: 70px 0;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.site-footer h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 22px;
}

.site-footer p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__privacy {
  white-space: nowrap;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .home-hero__grid,
  .home-cta-green__box {
    grid-template-columns: 1fr;
  }

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

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

  .page-hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 800px) {
  .site-header {
    padding: 18px 0;
  }

  .site-header__inner {
    position: relative;
    align-items: center;
  }

  .site-logo img {
    width: 95px;
  }

  .menu-toggle {
    display: block;
    z-index: 1111;
  }

  .site-header__menus {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;

    background: #fff;
    padding: 32px 24px;

    align-items: stretch;
    gap: 24px;

    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease;
  }

  .site-header__menus.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .main-menu {
    order: 1;
  }

  .top-menu {
    order: 2;
    padding-top: 20px;
    border-top: 1px solid #e4edf1;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .menu--main a {
    font-size: 20px;
  }

  .menu--top a {
    font-size: 16px;
  }
}

@media (max-width: 700px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .service-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
}.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  padding: 18px 0 15px;
  transition: all 0.3s ease;
}

/* layout base */
.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.site-header__menus {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 50px;
  transition: all 0.3s ease;
}

.site-logo img {
  width: 154px;
  transition: all 0.3s ease;
}
.site-header.is-scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

/* TUTTO SU UNA RIGA */
.site-header.is-scrolled .site-header__inner {
  align-items: center;
}

.site-header.is-scrolled .site-header__menus {
  flex-direction: column; /* resta sopra + sotto */
  align-items: flex-end;
  gap: 18px; /* più compatto */
}

/* riduci logo */
.site-header.is-scrolled .site-logo img {
  width: 100px;
}

.site-header.is-scrolled .menu {
  gap: 18px;
}

.site-header.is-scrolled .menu--top a {
  font-size: 12px;
}

.site-header.is-scrolled .menu--main a {
  font-size: 14px;
}

/* bottone active più piccolo */
.site-header.is-scrolled .current-menu-item > a {
  padding: 8px 16px;
}
/* =========================
   PAGE - CHI SIAMO
========================= */

.about-intro {
  padding: 70px 0;
  background: #fff;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.about-intro__text {
  max-width: 670px;
}

.about-intro__text p {
  margin: 0;
  line-height: 1.75;
}

.about-intro__image {
  min-height: 285px;
  background: var(--color-green);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 35px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.about-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-box-section {
  padding: 70px 0;
  background: var(--color-light);
}

.about-box {
  background: var(--color-primary);
  border-radius: var(--radius-md);
  padding: 50px;
  color: #fff;
}

.about-box h2 {
  margin: 0 0 35px;
  color: #fff;
  font-size: 32px;
}

.about-box__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-box__image {
  min-height: 260px;
  background: #c9c9c9;
  border-radius: 8px;
  overflow: hidden;
}

.about-box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-box__content p {
  margin: 0 0 24px;
  color: #fff;
}

.about-stories {
  padding: 70px 0;
  background: #fff;
}

.about-stories h2 {
  margin: 0 0 40px;
  color: var(--color-text);
  font-size: 32px;
}

.accordion {
  display: grid;
  gap: 24px;
}

.accordion__item {
  background: var(--color-light);
  border-radius: 10px;
  overflow: hidden;
  border-left: 4px solid var(--color-green);
}

.accordion__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.accordion__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.accordion__title {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 18px;
}

.accordion__plus {
  color: var(--color-green);
  font-size: 24px;
  line-height: 1;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px 0 102px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion__item.is-open .accordion__content {
  max-height: 500px;
  padding: 0 26px 26px 102px;
}

.accordion__content p {
  margin: 0 0 18px;
}

.accordion__item.is-open .accordion__content {
  display: block;
}
.accordion__plus::before {
  content: "+";
  display: inline-block;
  transition: transform 0.3s ease;
}

.accordion__item.is-open .accordion__plus::before {
  content: "−";
}

@media (max-width: 900px) {
  .about-intro__grid,
  .about-box__grid {
    grid-template-columns: 1fr;
  }

  .about-box {
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .accordion__trigger {
    grid-template-columns: 42px 1fr auto;
    padding: 20px;
  }

  .accordion__icon {
    width: 38px;
    height: 38px;
  }

  .accordion__content {
    padding: 0 20px 24px 80px;
  }
}
/* =========================
   PAGE - COSA FACCIAMO
========================= */

.what-activities {
  padding: 70px 0;
  background: var(--color-light);
}

.what-activities h2 {
  margin: 0 0 24px;
  color: var(--color-text);
  font-size: 32px;
  text-transform: uppercase;
}

.what-activities__intro {
  margin-bottom: 42px;
}

.what-activities__intro p {
  margin: 0;
}

.what-activities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
}

.what-activity {
  border-left: 8px solid var(--color-secondary);
  padding-left: 24px;
}

.what-activity h3 {
  margin: 0 0 14px;
  color: var(--color-text);
  font-size: 22px;
}

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

.what-initiatives {
  padding: 70px 0;
  background: #fff;
}

.what-initiatives h2 {
  margin: 0 0 24px;
  color: var(--color-primary);
  font-size: 32px;
  text-transform: uppercase;
}

.what-initiatives__text p {
  margin: 0 0 24px;
}

.what-initiatives__text ul {
  margin: 28px 0 0;
  padding-left: 20px;
}

.what-initiatives__text li {
  margin-bottom: 20px;
  line-height: 1.7;
}

.what-initiatives__text li::marker {
  color: var(--color-green);
}

.what-cta {
  padding: 70px 0;
  background: var(--color-green);
  color: #fff;
  text-align: center;
}

.what-cta h2 {
  margin: 0 0 28px;
  color: #fff;
  font-size: 34px;
}

@media (max-width: 900px) {
  .what-activities__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* =========================
   PAGE - COME SOSTENERCI
========================= */

.support-intro {
  padding: 70px 0;
  background: #fff;
}

.support-intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.support-intro h2 {
  margin: 0 0 24px;
  color: var(--color-primary);
  font-size: 34px;
  text-transform: uppercase;
}

.support-intro__text p {
  margin: 0 0 22px;
  line-height: 1.7;
}

.support-intro__image {
  min-height: 285px;
  background: var(--color-secondary);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 35px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.support-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-cards-section {
  padding: 70px 0;
  background: var(--color-light);
}

.support-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.support-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
}

.support-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
}

.support-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.support-card h3 {
  margin: 0 0 20px;
  color: var(--color-primary);
  font-size: 24px;
  line-height: 1.25;
  text-transform: uppercase;
}

.support-card__text p {
  margin: 0 0 18px;
  line-height: 1.65;
}

.support-card__text strong {
  font-weight: 700;
}

.support-card__text a {
  color: var(--color-secondary);
  text-decoration: none;
}

.support-thanks {
  padding: 70px 0;
  background: var(--color-green);
  color: #fff;
  text-align: center;
}

.support-thanks__inner {
  max-width: 820px;
}

.support-thanks h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 34px;
}

.support-thanks__text p {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.6;
}
/* IBAN box */
.support-card__iban {
  background: #f1f3f6;
  padding: 12px 14px;
  border-radius: 6px;
  margin: 10px 0;
  font-size: 14px;
}

.support-card__iban strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}


/* Box verde evidenza */
.support-card__highlight {
  background: var(--color-green);
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  margin-top: 14px;
  display: inline-block;
}

.support-card__highlight span {
  display: block;
  font-size: 13px;
  opacity: 0.9;
}

.support-card__highlight strong {
  font-size: 18px;
  font-family: monospace;
}
.support-card__iban span {
  font-family: monospace;
}
@media (max-width: 1000px) {
  .support-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .support-intro__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .support-cards-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    padding: 30px 24px;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.pagination .page-numbers {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
}

.pagination .page-numbers.current {
  background: var(--color-green);
  color: #fff;
}
/* =========================
   SINGLE EVENT - SHARE
========================= */

.single-event__share {
  margin-top: 50px;
}

.single-event__share hr {
  border: none;
  border-top: 1px solid #e4edf1;
  margin: 0 0 24px;
}

.single-event__share p {
  font-weight: 600;
  margin-bottom: 16px;
}

/* container bottoni */
.single-event__share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* bottone base */
.share-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: all 0.25s ease;
}

/* varianti */
.share-btn--facebook {
  background: #1877f2;
}

.share-btn--twitter {
  background: #1da1f2;
}

.share-btn--whatsapp {
  background: #25d366;
}

/* hover */
.share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
/* =========================
   SINGLE EVENT - LAYOUT
========================= */

.single-event {
  padding: 70px 0 60px;
  background: #fff;
}

.single-event__container {
  max-width:896px;
}

.single-event__image {
  margin-bottom: 42px;
}

.single-event__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.18);
}

.single-event__content {
  max-width: 100%;
}

.single-event__content p {
  margin: 0 0 24px;
  line-height: 1.75;
}

.single-event__share {
  margin-top: 42px;
}

.single-event__back {
  display: inline-block;
  margin-top: 28px;
  color: var(--color-secondary);
  font-weight: 600;
  text-decoration: none;
}

/* =========================
   RELATED EVENTS
========================= */

.related-events {
  padding: 65px 0 70px;
  background: var(--color-light);
}

.related-events__container {
  max-width: 896px;
}

.related-events h2 {
  margin: 0 0 34px;
  color: var(--color-text);
  font-size: 32px;
}

.related-events__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.related-card {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.related-card__image {
  display: block;
  height: 170px;
  background: var(--gradient-blue);
}

.related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card__content {
  padding: 22px;
}

.related-card__content p {
  margin: 0 0 10px;
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 700;
}

.related-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.related-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
}

@media (max-width: 640px) {
  .single-event__image img {
    height: 240px;
  }

  .related-events__grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   PAGE - ASSOCIAZIONE
========================= */

.association-board {
  padding: 70px 0;
  background: #fff;
}

.association-board h2,
.association-mission h2,
.association-volunteers h2 {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 32px;
}

.association-board__subtitle {
  margin: 0 0 45px;
}

.association-board__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 820px;
}

.board-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--color-light);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
}

.board-card__initial {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 22px;
  flex: 0 0 auto;
}

.board-card p {
  margin: 0 0 4px;
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 700;
}

.board-card h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 17px;
}

.association-mission {
  padding: 70px 0;
  background: var(--color-light);
}



.association-mission__text p {
  margin: 0 0 24px;
  line-height: 1.7;
}

.association-volunteers {
  padding: 70px 0;
  background: #fff;
}

.association-volunteers h2 {
  margin-bottom: 45px;
}

.volunteer-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.volunteer-card {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 28px;
}

.volunteer-card h3 {
  margin: 0 0 18px;
  color: var(--color-primary);
  font-size: 20px;
}

.volunteer-card__image {
  height: 180px;
  background: var(--color-placeholder);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

.volunteer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.volunteer-card__text p {
  margin: 0;
  line-height: 1.65;
}

.association-cta {
  padding: 70px 0;
  background: var(--color-green);
  text-align: center;
}

.association-cta h2 {
  margin: 0 0 28px;
  color: #fff;
  font-size: 34px;
}

@media (max-width: 900px) {
  .association-board__grid,
  .volunteer-groups {
    grid-template-columns: 1fr;
  }
}
/* =========================
   PAGE - CONTATTI
========================= */

.contact-section {
  padding: 70px 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.contact-info h2,
.contact-form h2 {
  margin: 0 0 34px;
  color: var(--color-primary);
  font-size: 34px;
}

.contact-info__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 34px;
}

.contact-info__item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.contact-info__item h3 {
  margin: 0 0 6px;
  color: var(--color-primary);
  font-size: 20px;
}

.contact-info__item p {
  margin: 0;
  line-height: 1.55;
}

.contact-info__item a {
  color: var(--color-text);
  text-decoration: none;
}

/* Fluent Forms */
.contact-form .fluentform {
  max-width: 100%;
}

.contact-form .ff-el-group {
  margin-bottom: 18px;
}

.contact-form label {
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid #d5dce3;
  border-radius: 8px;
  padding: 14px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: var(--color-text);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
}

.contact-form button,
.contact-form input[type="submit"] {
  width: 100%;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--color-green);
  color: #fff;
  padding: 16px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.contact-map-section {
  padding: 60px 0 70px;
  background: var(--color-light);
}

.contact-map {
  height: 360px;
  border-radius: var(--radius-md);
  background: var(--color-placeholder);
  display: grid;
  place-items: center;
  color: var(--color-text);
}
.contact-map {
  border-radius: 20px;
  overflow: hidden;

}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 384px;
  border: 0;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
/* =========================
   PAGE - DIVENTA VOLONTARIO
========================= */

.volunteer-intro {
  padding: 70px 0;
  background: #fff;
}

.volunteer-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.volunteer-intro h2 {
  margin: 0 0 24px;
  color: var(--color-primary);
  font-size: 34px;
}

.volunteer-intro__text p {
  margin: 0 0 24px;
  line-height: 1.7;
}

.volunteer-intro__badge {
  display: inline-block;
  margin: 8px 0 24px;
  padding: 14px 24px;
  border-radius: 6px;
  background: var(--color-green);
  color: #fff;
  font-weight: 700;
}

.volunteer-intro h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 24px;
  text-transform: uppercase;
}

.volunteer-intro__image {
  min-height: 280px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 35px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.volunteer-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.volunteer-form-section {
  padding: 70px 0;
  background: var(--color-light);
}

.volunteer-form-box {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
}

.volunteer-form-box h2 {
  margin: 0 0 30px;
  color: var(--color-primary);
  font-size: 32px;
}

/* Fluent Forms - volontario */
.volunteer-form-box .ff-el-group {
  margin-bottom: 18px;
}

.volunteer-form-box label {
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 8px;
}

.volunteer-form-box input,
.volunteer-form-box textarea,
.volunteer-form-box select {
  width: 100%;
  border: 2px solid #d5dce3;
  border-radius: 8px;
  padding: 14px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: var(--color-text);
}

.volunteer-form-box input:focus,
.volunteer-form-box textarea:focus,
.volunteer-form-box select:focus {
  outline: none;
  border-color: var(--color-secondary);
}

.volunteer-form-box button,
.volunteer-form-box input[type="submit"] {
  width: 100%;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--color-green);
  color: #fff;
  padding: 16px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.volunteer-form-box .ff-el-section-break {
  border-top: 1px solid #e4edf1;
  margin: 24px 0 18px;
  padding-top: 18px;
}

.volunteer-form-box .ff-el-section-title {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .volunteer-intro__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 640px) {
  .volunteer-form-box {
    padding: 32px 24px;
  }
}