/* ══════════════════════════════════════════════
 SECTIONS.CSS — Vaccinarsi
 Revisione: 2025/2026 Standards
 ══════════════════════════════════════════════ */

/* ── Section Text ─────────────────────────── */

.section-text {
  padding: var(--space-20) 0;
  background-color: var(--color-white);
  contain: layout style;
}

.section-text__container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--grid-margin);
}

.section-text__title {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
  margin-bottom: var(--space-10);
}

.section-text__title .celeste {
  color: var(--color-celeste) !important;
}

.section-text__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.section-text__body p {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
}

/* ── Section Foto + Text ──────────────────── */

.section-foto-text {
  padding: var(--space-20) 0;
  background-color: var(--color-white);
  contain: layout style;
}

.section-foto-text__container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--grid-margin);
}

.section-foto-text__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-32);
  align-items: center;
}

.section-foto-text__foto {
  order: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  max-height: 70vh;
}

.section-foto-text__content {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.section-foto-text--reverse .section-foto-text__foto {
  order: 2;
}

.section-foto-text--reverse .section-foto-text__content {
  order: 1;
}

.section-foto-text__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-foto-text__title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
}

.section-foto-text__title .celeste {
  color: var(--color-celeste) !important;
}

.section-foto-text__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.section-foto-text__body p {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
}

.section-foto-text__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.section-foto-text__list li {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
  padding-left: var(--space-5);
  position: relative;
}

.section-foto-text__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-celeste);
  font-weight: var(--font-bold);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

/* ── Section Sticky Foto ──────────────────── */

.section-sticky-foto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  background-color: var(--color-acqua);
}

.section-sticky-foto__foto-wrap {
  position: relative;
}

.section-sticky-foto__foto {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.section-sticky-foto__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-sticky-foto__content {
  padding: var(--space-64) var(--space-32);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.section-sticky-foto__label {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-text-light);
}

.section-sticky-foto__title {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
}

.section-sticky-foto__subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
}

.section-sticky-foto__subtitle .celeste {
  color: var(--color-celeste) !important;
}

.section-sticky-foto__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.section-sticky-foto__body p {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
}

.section-sticky-foto__body p strong {
  font-weight: var(--font-bold);
}

.section-sticky-foto__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.section-sticky-foto__list li {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
  padding-left: var(--space-5);
  position: relative;
}

.section-sticky-foto__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-celeste);
  font-weight: var(--font-bold);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

.section-sticky-foto__list li strong {
  font-weight: var(--font-bold);
}

/* ── Section Banner ───────────────────────── */

.section-banner {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.section-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.40);
  z-index: 1;
}

.section-banner__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: var(--space-16) var(--grid-margin);
}

.section-banner__title {
  font-family: var(--font-primary);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-white);
  margin-bottom: var(--space-8);
}

.section-banner__text {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-white);
}

/* ── Section Cards ────────────────────────── */

.section-cards {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  background-color: var(--color-white);
  contain: layout style;
}

.section-cards__container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--grid-margin);
}

.section-cards__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-cards__title {
  font-family: var(--font-primary);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
  margin-bottom: var(--space-4);
}

.section-cards__subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
  max-width: 1000px;
  margin-inline: auto;
}

.section-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-10);
}

.section-card {
  display: block;
  text-decoration: none;
}

.section-card__foto {
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
}

.section-card__foto img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* aspect-ratio fallback */
@supports not (aspect-ratio: 16 / 10) {
  .section-card__foto {
    position: relative;
    padding-bottom: 62.5%;
    height: 0;
  }

  .section-card__foto img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}

.section-card:hover .section-card__foto img {
  transform: scale(1.08);
}

.section-card__title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
  margin-bottom: var(--space-3);
}

.section-card__text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
}

/* ── Section Video ────────────────────────── */

.section-video {
  padding: var(--space-20) 0;
  background-color: var(--color-blue);
}

.section-video__container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--grid-margin);
}

.section-video__wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background-color: #000;
  aspect-ratio: 16 / 9;
}

/* aspect-ratio fallback */
@supports not (aspect-ratio: 16 / 9) {
  .section-video__wrapper {
    padding-bottom: 56.25%;
    height: 0;
  }

  .section-video__wrapper video {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.section-video__wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-base),
    transform var(--transition-base),
    background-color var(--transition-base);
  z-index: 2;
}

.section-video__play:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.05);
}

.section-video__play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent var(--color-blue);
  margin-left: 4px;
}

.section-video__play.is-playing::after {
  border: none;
  width: 22px;
  height: 24px;
  margin-left: 0;
  border-left: 4px solid var(--color-blue);
  border-right: 4px solid var(--color-blue);
}

.section-video__wrapper.is-playing .section-video__play {
  opacity: 0;
  pointer-events: none;
}

.section-video__wrapper.is-playing:hover .section-video__play {
  opacity: 1;
  pointer-events: all;
}

/* ── Section Accordion Timeline ───────────── */

.section-accordion {
  padding: var(--space-20) 0;
  background-color: var(--color-acqua);
}

.section-accordion__container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--grid-margin);
}

.section-accordion__title {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
  margin-bottom: var(--space-3);
}

.section-accordion__subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
  margin-bottom: var(--space-16);
}

.accordion-list {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-10);
}

.accordion-item {
  position: relative;
  padding-left: 72px;
}

.accordion-item::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 64px;
  bottom: -16px;
  width: 1px;
  background-color: var(--color-celeste);
}

.accordion-item:last-child::before {
  display: none;
}

.accordion-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-celeste);
  border: 4px solid var(--color-white);
  box-shadow: 0 0 0 1px var(--color-celeste);
  z-index: 2;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  margin-top: 16px;
  margin-bottom: 16px;
  cursor: pointer;
  gap: var(--space-4);
}

.accordion-header__title {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
  flex: 1;
}

.accordion-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-2xl);
  font-weight: var(--font-light);
  color: var(--color-blue);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body__inner {
  padding-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.accordion-body p {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-loose);
  color: var(--color-blue);
}

.accordion-body strong {
  font-weight: var(--font-bold);
}

.accordion-label {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--color-blue);
  text-transform: uppercase;
}

.accordion-body__list {
  list-style: none;
  padding: 0 0 0 var(--space-5);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.accordion-body__list li {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  line-height: var(--leading-normal);
  color: var(--color-blue);
  padding-left: var(--space-4);
  position: relative;
}

.accordion-body__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-celeste);
  font-weight: var(--font-bold);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

.section-accordion__disclaimer {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  line-height: var(--leading-normal);
  color: var(--color-blue);
}

.section-accordion__disclaimer a {
  color: var(--color-blue);
  text-decoration: underline;
}

.section-accordion__disclaimer a:hover {
  color: var(--color-celeste);
}

/* ── Section Accordion Simple ─────────────── */

.section-accordion-simple {
  padding: 0 0 var(--space-20);
  background-color: var(--color-white);
}

.section-accordion-simple__container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--grid-margin);
}

.accordion-simple-item {
  border-top: 1px solid rgba(0, 73, 193, 0.15);
}

.accordion-simple-item:last-child {
  border-bottom: 1px solid rgba(0, 73, 193, 0.15);
}

.accordion-simple-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  cursor: pointer;
  gap: var(--space-4);
}

.accordion-simple-header__title {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
  flex: 1;
}

.accordion-simple-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-2xl);
  font-weight: var(--font-light);
  color: var(--color-blue);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accordion-simple-body {
  position: relative;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-simple-preview {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-simple-preview__text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: var(--space-4);
}

/* "continua a leggere" — ora è un <button>, reset completo */
.accordion-simple-preview__link {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--color-blue);
  cursor: pointer;
  white-space: nowrap;
  display: inline;
  min-height: unset;
  min-width: unset;
  -webkit-appearance: none;
  appearance: none;
  text-decoration: none;
  line-height: inherit;
  vertical-align: baseline;
}

.accordion-simple-preview__link:hover {
  color: var(--color-celeste);
}

.accordion-simple-preview__link:focus-visible {
  outline: 3px solid var(--color-celeste);
  outline-offset: 2px;
  border-radius: 2px;
}

.accordion-simple-body__inner {
  padding-bottom: var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.accordion-simple-body__inner p {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
}

.accordion-simple-body__inner p strong {
  font-weight: var(--font-bold);
}

.accordion-simple-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.accordion-simple-list li {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
  padding-left: var(--space-5);
  position: relative;
}

.accordion-simple-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-celeste);
  font-weight: var(--font-bold);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

.accordion-simple-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.accordion-simple-box {
  background-color: var(--color-acqua);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-6);
  cursor: pointer;
  transition: all var(--transition-base);
}

.accordion-simple-box__title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
}

.accordion-simple-box__detail {
  flex: 1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

.accordion-simple-box__detail p {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
}

.accordion-simple-box.is-open .accordion-simple-box__detail {
  opacity: 1;
}

.accordion-simple-box__toggle {
  align-self: flex-start;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-2xl);
  font-weight: var(--font-light);
  color: var(--color-blue);
  opacity: 0.5;
  padding: 0;
  line-height: 1;
  transition: opacity var(--transition-fast), color var(--transition-fast);
  margin-top: auto;
}

.accordion-simple-box__toggle:hover {
  opacity: 1;
  color: var(--color-celeste);
}

/* ── Section Quiz ─────────────────────────── */

.section-quiz {
  padding: var(--space-16) 0;
  background-color: var(--color-white);
}

.section-quiz__container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--grid-margin);
}

.section-quiz__banner {
  background-color: var(--color-blue);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  min-height: 220px;
}

.section-quiz__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-8) var(--space-6) var(--space-8) var(--space-10);
}

.section-quiz__label {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  color: var(--color-white);
  opacity: 0.8;
}

.section-quiz__title {
  font-family: var(--font-primary);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-white);
}

.section-quiz__text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-white);
  opacity: 0.85;
}

.section-quiz__cta {
  margin-top: var(--space-2);
}

.btn--quiz {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  background-color: var(--color-celeste);
  color: var(--color-blue);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition-base),
    color var(--transition-base),
    transform var(--transition-fast);
}

.btn--quiz:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
  transform: translateY(-2px);
}

.section-quiz__illustration {
  display: flex;
  align-items: flex-end;
  /* era center */
  justify-content: flex-end;
  /* era center */
  padding: 0;
  /* era var(--space-4) */
  height: 100%;
}

.section-quiz__illustration img {
  width: auto;
  /* era 100% */
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

/* ── Section Download ─────────────────────── */

.section-download {
  padding: var(--space-16) 0;
  background-color: var(--color-white);
}

.section-download__container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--grid-margin);
}

.section-download__banner {
  background-color: var(--color-acqua);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  padding: var(--space-8) var(--space-10);
  gap: var(--space-6);
}

.section-download__image {
  display: flex;
  justify-content: center;
}

.section-download__image img {
  max-width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.10));
}

.section-download__content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn--download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background-color: var(--color-celeste);
  color: var(--color-blue);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--transition-base),
    color var(--transition-base),
    transform var(--transition-fast),
    box-shadow var(--transition-base);
  box-shadow: 0 4px 16px rgba(0, 211, 255, 0.25);
}

.btn--download:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 73, 193, 0.25);
}

/* ── Section Banda ────────────────────────── */

.section-banda {
  padding: var(--space-10) 0;
  background-color: var(--color-white);
  overflow: hidden;
}

.section-banda__bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-family: var(--font-primary);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
}

.section-banda__bar--azzurro {
  background-color: var(--color-azzurro);
  color: var(--color-blue);
  font-size: var(--text-xl);
  width: 58%;
  padding: var(--space-4) var(--space-8);
  padding-right: 60px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
}

.section-banda__bar--blue {
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: var(--text-xl);
  width: 62%;
  padding: var(--space-4) var(--space-8);
  padding-right: 60px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
}

/* ── Section Bibliografia ─────────────────── */

.section-bibliografia {
  padding: var(--space-20) 0;
  background-color: var(--color-white);
  contain: layout style;
}

.section-bibliografia__container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--grid-margin);
}

.section-bibliografia__title {
  font-family: var(--font-primary);
  font-size: var(--text-xxs);
  font-weight: var(--font-bold);
  color: var(--color-blue);
  margin-bottom: var(--space-4);
}

.section-bibliografia__list {
  margin: 0;
  padding: 0 0 0 var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: decimal;
}

.section-bibliografia__list li {
  font-family: var(--font-primary);
  font-size: var(--text-xxs);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
  padding-left: var(--space-1);
}

.section-bibliografia__list li::marker {
  font-size: var(--text-xxs);
  color: var(--color-blue);
}

.section-bibliografia__list li a {
  color: var(--color-blue);
  text-decoration: underline;
  word-break: break-all;
}

.section-bibliografia__list li a:hover {
  color: var(--color-celeste);
}

/* ── Section Slider ───────────────────────── */

.section-slider {
  padding: var(--space-20) 0;
  background-color: var(--color-white);
}

.section-slider__container {
  max-width: none;
  margin: 0;
  padding-left: max(var(--grid-margin), calc((100vw - 1440px) / 2 + var(--grid-margin)));
  padding-right: 0;
}

.section-slider__header {
  margin-bottom: var(--space-10);
}

.section-slider__title {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
}

.section-slider__track {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding-bottom: var(--space-2);
  padding-right: var(--space-6);
  overscroll-behavior-x: contain;
}

.section-slider__track::-webkit-scrollbar {
  display: none;
}

.section-slider__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.section-slider__track:hover,
.section-slider__track:hover * {
  cursor: none !important;
}

.section-slider__card {
  flex: 0 0 calc(25% - var(--space-4));
  min-width: 240px;
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  display: block;
}

/* aspect-ratio fallback */
@supports not (aspect-ratio: 3 / 4) {
  .section-slider__card {
    position: relative;
    padding-bottom: 133.33%;
    height: 0;
  }

  .section-slider__card img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.section-slider__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  will-change: transform;
}

.section-slider__card:hover img {
  transform: scale(1.08);
}

.section-slider__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(229, 244, 249, 0.9) 0%, rgba(229, 244, 249, 0.4) 40%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.section-slider__card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
  z-index: 2;
}

.section-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.section-slider__arrow {
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-2xl);
  color: var(--color-blue);
  padding: var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
  flex-shrink: 0;
}

.section-slider__arrow:hover {
  color: var(--color-celeste);
}

.section-slider__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.section-slider__progress {
  width: 200px;
  height: 3px;
  background-color: rgba(0, 73, 193, 0.15);
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
}

.section-slider__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--color-blue);
  border-radius: var(--radius-full);
  transition: width 0.2s ease;
  min-width: 20%;
}

/* ── Section Approfondire ─────────────────── */

.section-approfondire {
  padding: var(--space-20) 0;
  background-color: var(--color-white);
}

.section-approfondire__container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--grid-margin);
}

.section-approfondire__box {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background-color: var(--color-acqua);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
}

.section-approfondire__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-6);
  padding: var(--space-16) var(--space-12);
}

.section-approfondire__title {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
}

.section-approfondire__list {
  list-style: disc;
  padding-left: var(--space-5);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.section-approfondire__list li {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-loose);
  color: var(--color-blue);
}

.section-approfondire__list li a {
  color: var(--color-blue);
  text-decoration: underline;
  word-break: break-all;
  transition: color var(--transition-fast);
}

.section-approfondire__list li a:hover {
  color: var(--color-celeste);
}

.section-approfondire__bold {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  line-height: var(--leading-normal);
  color: var(--color-blue);
}

.section-approfondire__link {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  color: var(--color-blue);
  text-decoration: underline;
  display: inline-block;
  transition: color var(--transition-fast);
}

.section-approfondire__link:hover {
  color: var(--color-celeste);
}

.section-approfondire__foto {
  overflow: hidden;
  position: relative;
}

.section-approfondire__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Section Icone ────────────────────────── */

.section-icone {
  padding: var(--space-20) 0;
  background-color: var(--color-acqua);
  contain: layout style;
}

.section-icone__container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--grid-margin);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-24);
}

.section-icone__header {
  text-align: center;
  max-width: 80%;
  display: flex;
  flex-direction: column;
}

.section-icone__pretitle {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-celeste);
}

.section-icone__title {
  font-family: var(--font-primary);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
  margin-bottom: var(--space-10);
}

.section-icone__intro {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
}

.section-icone__grid {
  display: grid;
  justify-content: center;
  gap: var(--space-10);
  width: 100%;
}

.section-icone__grid--2col {
  grid-template-columns: repeat(2, minmax(0, 380px));
}

.section-icone__grid--3col {
  grid-template-columns: repeat(3, minmax(0, 300px));
}

.section-icone__grid--4col {
  grid-template-columns: repeat(4, minmax(0, 240px));
}

.section-icone__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
}

.section-icone__icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid var(--color-celeste);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.section-icone__icon img {
  width: 65%;
  height: 65%;
  object-fit: contain;
  display: block;
}

.section-icone__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.section-icone__text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
  text-align: center;
}

.section-icone__text-inner {
  display: inline;
}

.section-icone__text-inner.is-truncated {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-icone__text-toggle {
  display: inline;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--color-blue);
  padding: 0;
  margin-left: 2px;
  transition: color var(--transition-fast);
}

.section-icone__text-toggle:hover {
  color: var(--color-blue);
}

/* ── Section Tabella ──────────────────────── */

.section-tabella {
  padding: var(--space-20) 0;
  background-color: var(--color-white);
}

.section-tabella__container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--grid-margin);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.section-tabella__wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(0, 73, 193, 0.15);
  border-radius: var(--radius-md);
}

.tabella {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.tabella thead tr {
  background-color: var(--color-white);
  border-bottom: 2px solid rgba(0, 73, 193, 0.15);
}

.tabella__th {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--color-blue);
  text-align: center;
  padding: var(--space-5) var(--space-6);
  line-height: var(--leading-tight);
  border-right: 1px solid rgba(0, 73, 193, 0.10);
}

.tabella__th:last-child {
  border-right: none;
}

.tabella__th:first-child {
  text-align: left;
}

.tabella tbody tr {
  border-bottom: 1px solid rgba(0, 73, 193, 0.08);
  transition: background-color var(--transition-fast);
}

.tabella tbody tr:last-child {
  border-bottom: none;
}

.tabella tbody tr:nth-child(odd) {
  background-color: var(--color-acqua);
}

.tabella tbody tr:nth-child(even) {
  background-color: var(--color-white);
}

.tabella tbody tr:hover {
  background-color: var(--color-azzurro);
}

.tabella__td {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  color: var(--color-blue);
  padding: var(--space-5) var(--space-6);
  text-align: center;
  line-height: var(--leading-normal);
  border-right: 1px solid rgba(0, 73, 193, 0.08);
  vertical-align: middle;
}

.tabella__td:last-child {
  border-right: none;
}

.tabella__td:first-child {
  text-align: left;
}

/* ── Slider Custom Cursor ─────────────────── */

.slider-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  transition: opacity 0.3s ease,
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background-color 0.2s ease;
}

.slider-cursor.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.slider-cursor.is-dragging {
  transform: translate(-50%, -50%) scale(0.8);
  background-color: var(--color-celeste);
}

.slider-cursor__icon {
  font-size: 10px;
  font-weight: var(--font-regular);
  color: var(--color-white);
  user-select: none;
  pointer-events: none;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.slider-cursor.is-dragging .slider-cursor__icon {
  color: var(--color-blue);
}

@media (hover: none) {
  .slider-cursor {
    display: none !important;
  }
}

/* ══════════════════════════════════════════════
 ≥ 1920px
 ══════════════════════════════════════════════ */
/* Fallback styling for HTML pasted into custom Gutenberg controls */
.section-text__container h2 {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
  margin-bottom: var(--space-10);
}

.section-text__container p {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
}

.section-foto-text__content h2 {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
}

.section-foto-text__content p,
.section-sticky-foto__content p,
.section-approfondire__content p {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
}

.section-foto-text__content ul,
.section-sticky-foto__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.section-foto-text__content ul {
  gap: var(--space-2);
}

.section-sticky-foto__content ul {
  gap: var(--space-3);
}

.section-foto-text__content li,
.section-sticky-foto__content li {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
  padding-left: var(--space-5);
  position: relative;
}

.section-foto-text__content li::before,
.section-sticky-foto__content li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-celeste);
  font-weight: var(--font-bold);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

.section-sticky-foto__content h2 {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
}

.section-sticky-foto__content h3 {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
}

.section-banner__content h1,
.section-banner__content h2 {
  font-family: var(--font-primary);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-white);
  margin-bottom: var(--space-8);
}

.section-banner__content p {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-white);
}

.section-cards__header h2,
.section-icone__header h2 {
  font-family: var(--font-primary);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
}

.section-cards__header h2 {
  margin-bottom: var(--space-4);
}

.section-cards__header p {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
  max-width: 1000px;
  margin-inline: auto;
}

.section-card__content h3 {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
  margin-bottom: var(--space-3);
}

.section-card__content p,
.section-icone__body p {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
}

.section-icone__header p {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
  margin-top: var(--space-4);
}

.section-bibliografia__container h2 {
  font-family: var(--font-primary);
  font-size: var(--text-xxs);
  font-weight: var(--font-bold);
  color: var(--color-blue);
  margin-bottom: var(--space-4);
}

.section-bibliografia__container ol {
  margin: 0;
  padding: 0 0 0 var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: decimal;
}

.section-bibliografia__container li {
  font-family: var(--font-primary);
  font-size: var(--text-xxs);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-blue);
  padding-left: var(--space-1);
}

.section-approfondire__content h2 {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-blue);
}

.section-approfondire__content ul {
  list-style: disc;
  padding-left: var(--space-5);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.section-approfondire__content li {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-loose);
  color: var(--color-blue);
}

.section-approfondire__content a {
  color: var(--color-blue);
  text-decoration: underline;
  word-break: break-all;
}

.section-quiz__content>span {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  color: var(--color-white);
  opacity: 0.8;
}

.section-quiz__content h2 {
  font-family: var(--font-primary);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-white);
}

.section-quiz__content p {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-white);
  opacity: 0.85;
}

.section-tabella__wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.section-tabella__wrap thead tr {
  background-color: var(--color-white);
  border-bottom: 2px solid rgba(0, 73, 193, 0.15);
}

.section-tabella__wrap th,
.section-tabella__wrap td {
  font-family: var(--font-primary);
  color: var(--color-blue);
  padding: var(--space-5) var(--space-6);
  line-height: var(--leading-normal);
  border-right: 1px solid rgba(0, 73, 193, 0.08);
  vertical-align: middle;
}

.section-tabella__wrap th {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  text-align: center;
}

.section-tabella__wrap td {
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  text-align: center;
}

.section-tabella__wrap tbody tr {
  border-bottom: 1px solid rgba(0, 73, 193, 0.08);
  transition: background-color var(--transition-fast);
}

.section-tabella__wrap tbody tr:nth-child(odd) {
  background-color: var(--color-acqua);
}

.section-tabella__wrap tbody tr:nth-child(even) {
  background-color: var(--color-white);
}

.section-tabella__wrap tbody tr:hover {
  background-color: var(--color-azzurro);
}

.section-tabella__wrap th:first-child,
.section-tabella__wrap td:first-child {
  text-align: left;
}

.section-tabella__wrap th:last-child,
.section-tabella__wrap td:last-child {
  border-right: none;
}

@media (min-width: 1920px) {

  .section-text__container,
  .section-accordion__container,
  .section-accordion-simple__container,
  .section-bibliografia__container,
  .section-cards__container,
  .section-quiz__container,
  .section-download__container,
  .section-tabella__container {
    max-width: 1400px;
  }

  .section-foto-text__container,
  .section-video__container,
  .section-icone__container,
  .section-approfondire__container {
    max-width: 1800px;
  }

  .section-banner__content {
    max-width: 900px;
  }

  .section-slider__container {
    padding-left: max(120px, calc((100vw - 1800px) / 2 + 120px));
  }

  .section-sticky-foto__content {
    padding: var(--space-64) var(--space-48);
  }

  .section-approfondire__box {
    min-height: 500px;
  }
}

/* ══════════════════════════════════════════════
 ≤ 1024px
 ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .section-foto-text__grid {
    gap: var(--space-10);
  }

  .section-sticky-foto__content {
    padding: var(--space-12) var(--space-10);
  }

  .section-slider__card {
    flex: 0 0 calc(33.333% - var(--space-3));
  }

  .section-approfondire__content {
    padding: var(--space-12) var(--space-8);
  }

  .section-icone__grid--4col {
    grid-template-columns: repeat(2, minmax(0, 280px));
  }
}

/* ══════════════════════════════════════════════
 ≤ 768px
 ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section-foto-text__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .section-foto-text__foto {
    order: 1 !important;
    max-height: 50vh;
  }

  .section-foto-text__content {
    order: 2 !important;
  }

  .section-banner {
    min-height: 50vh;
  }

  .section-banner__content {
    padding: var(--space-10) var(--space-6);
  }

  .section-cards__grid {
    grid-template-columns: 1fr;
  }

  .section-video__play {
    width: 60px;
    height: 60px;
  }

  .section-video__play::after {
    border-width: 10px 0 10px 18px;
    margin-left: 3px;
  }

  .section-video__play.is-playing::after {
    width: 18px;
    height: 20px;
    border-left: 3px solid var(--color-blue);
    border-right: 3px solid var(--color-blue);
  }

  .accordion-item {
    padding-left: 56px;
  }

  .accordion-item::after {
    width: 36px;
    height: 36px;
    border-width: 3px;
    top: 12px;
  }

  .accordion-item::before {
    left: 17px;
    top: 48px;
    bottom: -12px;
  }

  .accordion-header {
    height: 36px;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .accordion-simple-boxes {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .accordion-simple-box {
    min-height: 200px;
  }

  .section-sticky-foto {
    grid-template-columns: 1fr;
  }

  .section-sticky-foto__foto {
    position: relative;
    height: 50vh;
  }

  .section-sticky-foto__content {
    padding: var(--space-10) var(--grid-margin) var(--space-12);
  }

  .section-quiz__banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .section-quiz__content {
    padding: var(--space-8) var(--space-6);
  }

  .section-quiz {
    padding: var(--space-10) 0;
  }

  .section-quiz__illustration {
    height: 160px;
    padding: 0
  }

  .section-download__banner {
    grid-template-columns: 1fr;
    padding: var(--space-6);
  }

  .section-download__image img {
    max-height: 200px;
  }

  .section-download {
    padding: var(--space-10) 0;
  }

  .btn--download {
    width: 100%;
  }

  .section-banda__bar--azzurro,
  .section-banda__bar--blue {
    width: 85%;
    clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
    padding-right: 40px;
  }

  .section-slider__card {
    flex: 0 0 65%;
    min-width: 200px;
  }

  .section-slider__progress {
    width: 160px;
  }

  .section-approfondire__box {
    grid-template-columns: 1fr;
  }

  .section-approfondire__foto {
    height: 280px;
    order: -1;
  }

  .section-approfondire__content {
    padding: var(--space-10) var(--space-6);
  }

  .section-icone__grid--2col,
  .section-icone__grid--3col,
  .section-icone__grid--4col {
    grid-template-columns: 1fr;
  }

  .tabella__th,
  .tabella__td {
    padding: var(--space-4);
    font-size: var(--text-xs);
  }
}

/* ══════════════════════════════════════════════
 ≤ 480px
 ══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .section-sticky-foto__foto {
    height: 40vh;
  }

  .section-quiz__illustration {
    height: 130px;
  }

  .section-download__image img {
    max-height: 160px;
  }

  .section-banda__bar--azzurro,
  .section-banda__bar--blue {
    width: 92%;
    clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
    padding-right: 30px;
  }

  .section-slider__card {
    flex: 0 0 80%;
  }

  .section-approfondire__foto {
    height: 220px;
  }

  .section-icone__item {
    max-width: 320px;
    margin-inline: auto;
  }
}