/* =========================================================
   CHI SIAMO
   Usato solo da chi-siamo.html
   ========================================================= */

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  margin: 14px 0;
  font-size: clamp(22px, 5vw, 30px);
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.chi-hero-note {
  margin-top: 10px;
  font-size: .95rem;
}

.hero .preview {
  padding: 18px;
}

.hero .preview img {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ---------- Partner / presentazione ---------- */

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

.about .preview {
  max-width: 520px;
  margin-left: auto;
  padding: 14px;
}

.about .preview img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ---------- Cosa ci distingue ---------- */

.feature {
  padding: 18px;
}

.feature h3 {
  margin: .4rem 0 .3rem;
}

.feature .muted {
  margin-bottom: 0;
  line-height: 1.55;
}

/* ---------- CTA finale ---------- */

.cta-inline-center {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

main > section:last-of-type .preview {
  padding: 22px;
}

/* ---------- Responsive ---------- */

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

  .about .preview {
    max-width: none;
    margin-left: 0;
  }
}

.about .preview {
  max-width: 520px;
  margin-left: auto;
  padding: 14px;
}

.about-reverse .preview {
  max-width: 420px;
  margin-left: 0;
  margin-right: auto;
}

.about-reverse {
  grid-template-columns: .72fr 1.28fr;
}

.about-reverse > div:last-child {
  max-width: 650px;
}

.about-reverse .section-title {
  font-size: 30px;
  line-height: 1.1;
}

.about-reverse .muted {
  line-height: 1.6;
}

.section-title {
  font-size: 30px;
  line-height: 1.15;
}