/*          =========================================
              MARQUEE (Testo a scorrimento)        */
/*#region   ========================================= */

/*Gestione Riga a Scorrimento infinito*/
.marquee {
  display: flex;
  overflow: hidden;
  width: 100%;
  background: transparent;
  /* Effetto Fade ai bordi */
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

/* Riduzione Fade su Mobile per massimizzare visibilità */
@media (max-width: 899px) {
  .marquee {
    mask-image: linear-gradient(
      to right,
      transparent,
      black 5%,
      black 95%,
      transparent
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      black 5%,
      black 95%,
      transparent
    );
  }
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
  min-width: 100%;
  padding-right: 60px;
  animation: marquee-loop 15s linear infinite;
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #9f9f9f;
  letter-spacing: 2px;
}

/* Animazione continua */
@keyframes marquee-loop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/*#endregion */

/*          =========================================
              CAROSELLI (Carousel) */
/*#region   ========================================= */

/* -------------- EFFETTO CAROSELLO BASE -------------- */

.carousel {
  width: 100%;

  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform 500ms ease;
  will-change: transform;
}

.carousel__slide {
  min-width: 100%;
}

.carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.carousel__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 12px 10px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition:
    transform 150ms ease,
    background-color 150ms ease;
}

.carousel__dot[aria-current="true"] {
  background: var(--color-primary);
  transform: scale(1.25);
}

/* -------------- CAROSELLO GSAP ANIMATO-------------- */
.gallery-gsap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  height: auto;
  padding-top: 0;
  padding-bottom: 20px;
}

.cards-gsap {
  position: relative;
  width: 25rem;
  aspect-ratio: 4 / 5;
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-gsap {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0.8rem;
  top: 0;
  left: 0;
}

.actions-gsap {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 1000;
}

.actions-gsap button {
  padding: 12px 35px;
  cursor: pointer;
  background: #000;
  color: #f0f0e0;
  border: 1px solid #f0f0e0;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.actions-gsap button:hover {
  background: #544fa1;
  border-color: #544fa1;
  color: #fff;
}

/* -------- SEZIONE CONTATTI-------- */
.project-contact-box {
  background-color: var(--color-white);
  padding-top: 10px;
}

/*#endregion */

/*          =========================================
              BOTTONI                   */
/*#region   ========================================= */

/* -------- BOTTONI -------- */
.button .wp-block-button__link {
  background-color: var(--color-tertiary);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  padding: 14px 16px !important;
  border-radius: 16px;
  text-decoration: none;
  display: inline-block;
}

/* --- LIQUID SUCTION BUTTON --- */

.btn-liquid-suction {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-tap-highlight-color: transparent;
  filter: url(#goo);
  /* Protezione per il filtro: lasciamo che il flex gestisca l'altezza */
  padding: 5px 0;
}

.btn-liquid-suction:hover,
.btn-liquid-suction.is-active {
  transform: scale(1.02);
}

.btn-liquid-suction .btn-pill {
  background-color: #7a73e6;
  color: white;
  /* Padding e Altezza fluidi */
  padding: 0 clamp(25px, 2vw + 10px, 40px);
  height: clamp(48px, 2.5vw + 34px, 70px);
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 0.4vw + 12px, 18px);
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 10;
  transition: background-color 0.4s ease;
}

.btn-liquid-suction .btn-bridge {
  /* Ponte proporzionale all'altezza */
  width: clamp(18px, 1.2vw + 10px, 30px);
  height: clamp(12px, 0.4vw + 10px, 16px);
  background-color: #7a73e6;
  margin-left: 0px;
  margin-right: 0px;
  align-self: center;
  z-index: 5;
  border-radius: 8px;
  /* Aggiunta transizione colore per sincronia */
  transition:
    transform 0.3s ease-out,
    border-radius 0.3s ease-out,
    opacity 0.2s ease-out,
    background-color 0.4s ease;
  transition-delay: 0s;
  opacity: 1;
  transform-origin: left center;
}

.btn-liquid-suction .droplets-area {
  display: none !important;
}

.btn-liquid-suction .btn-circle {
  /* Cerchio fluido che segue la pillola */
  width: clamp(48px, 2.5vw + 34px, 70px);
  height: clamp(48px, 2.5vw + 34px, 70px);
  background-color: #7a73e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 10;
  transition: background-color 0.4s ease;
}

@keyframes boing {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.4, 0.7) translateX(-2px);
  }
  50% {
    transform: scale(0.8, 1.3) translateX(4px);
  }
  70% {
    transform: scale(1.1, 0.9) translateX(-1px);
  }
  100% {
    transform: scale(1) translateX(0);
  }
}

.btn-liquid-suction .btn-circle svg {
  width: clamp(18px, 0.6vw + 15px, 24px);
  height: clamp(18px, 0.6vw + 15px, 24px);
  transition: transform 0.4s ease;
}

.btn-liquid-suction:hover .btn-bridge,
.btn-liquid-suction.is-active .btn-bridge {
  transition:
    transform 1.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    border-radius 1.4s ease,
    opacity 0.6s ease,
    background-color 0.4s ease;
  transition-delay: 0s;
  transform: translateX(45px) scaleX(1.2);
  opacity: 0;
}

.btn-liquid-suction:hover .btn-pill,
.btn-liquid-suction.is-active .btn-pill,
.btn-liquid-suction:hover .btn-circle,
.btn-liquid-suction.is-active .btn-circle,
.btn-liquid-suction:hover .btn-bridge,
.btn-liquid-suction.is-active .btn-bridge {
  background-color: #6a64cc;
}

.btn-liquid-suction:hover .btn-circle svg,
.btn-liquid-suction.is-active .btn-circle svg {
  animation: boing 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* RESPONSIVE LIQUID BUTTON (Mobile Specific Adjustments) */
@media (max-width: 899px) {
  .btn-liquid-suction .droplets-area {
    left: 80px;
  }
}

/* --- MODERN HZN BUTTON --- */
.btn-modern-hzn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center; /* Centra contenuto */
  gap: 12px;
  background-color: #7a73e6;
  color: white;
  /* Padding più bilanciato e meno dipendente dal viewport per l'altezza */
  padding: 14px clamp(25px, 2vw + 10px, 40px);
  border-radius: 100px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 0.4vw + 12px, 18px);
  line-height: 1; /* Reset fondamentale per evitare che erediti da titoli o paragrafi */
  margin: 0; /* Reset margin */
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
}

.btn-modern-hzn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #6a64cc;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.btn-modern-hzn:hover {
  color: white;
  box-shadow: 0 10px 15px -3px rgba(122, 115, 230, 0.3);
}

.btn-modern-hzn:hover::before {
  transform: translateX(100%);
}

.btn-modern-hzn:active {
  transform: scale(0.98);
}

.btn-modern-hzn__text {
  position: relative;
  z-index: 2;
}

.btn-modern-hzn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform 0.4s ease;
  z-index: 2;
}

.btn-modern-hzn__icon svg {
  width: 100%;
  height: 100%;
}

.btn-modern-hzn:hover .btn-modern-hzn__icon {
  transform: rotate(-45deg);
}

/*#endregion */

/*          =========================================
              PARALLAX              */
/*#region   ========================================= */

/* contenitore esterno */
.parallax-section-box {
  max-width: 1920px;
  margin-inline: auto;

  overflow: hidden;
}

/* sezione parallax */
.parallax-section {
  min-height: clamp(200px, 32svh, 300px);

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* contenuto interno più stretto (opzionale) */
.parallax-section-small-box {
  max-width: 1440px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 16px;
}

@media (min-width: 1024px) {
  .parallax-section {
    background-attachment: fixed;
  }

  .parallax-section-box {
    border-radius: 16px;
  }

  .parallax-section-small {
    background-size: min(100vw, 1440px) auto;
    background-position: 50% 50%;
    min-height: 320px;
    border-radius: 16px;
    background-attachment: fixed;
  }
}

/*#endregion */

/*          =========================================
              CARDS*/
/*#region   ========================================= */

/* -------- CARD NUMERATA -------- */

.card-singola {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.card-singola .card-singola-box > * {
  margin: 0;
  padding: 0;
}

.card-singola .wp-block-image {
  flex-shrink: 0;
}

.card-singola .wp-block-image img {
  width: 100%;
  height: auto;
}

.card-singola .card-singola-box {
  min-height: 350px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  border-radius: 24px;
}

.card-singola .card-singola-number {
  margin-right: auto;
  margin-top: 20px;
  margin-left: 20px;
}

.card-singola .card-singola-title {
  text-align: center;
  padding: 0 20px;
}

.card-singola .card-singola-paragrafo {
  text-align: center;
  padding: 0 15px;
}

@media (min-width: 900px) and (max-width: 1100px) {
  .card-singola .wp-block-image img {
    display: none;
  }
}

@media (max-width: 460px) {
  .card-singola .wp-block-image img {
    display: none;
  }
}

@media (min-width: 1440px) {
  .card-singola .card-singola-box {
    min-height: 400px;
    max-width: 400px;
    gap: 40px;
  }

  .card-singola .card-singola-number {
    margin-right: auto;
    margin-top: 25px;
    margin-left: 25px;
  }

  .card-singola .card-singola-title {
    padding: unset;
    margin-top: 30px;
  }

  .card-singola .card-singola-paragrafo {
    text-align: center;
    padding: 0 20px;
  }
}

/* -------- CARD DIDATTICA -------- */

.card-didattica > * {
  margin: 0;
  padding: 0;
}

.card-didattica {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 400px;
}

@media (min-width: 1440px) {
  .card-didattica {
    gap: 40px;
    max-width: 531px;
  }
}

/*#endregion */

/*          =========================================
              IMMAGINE STACCO                       */
/*#region   ========================================= */

.global-immagine-stacco {
  min-height: 185px;
  background-repeat: no-repeat;
  background-position: center center;
}

/*#endregion */

/* -------------------------------------------------------------------------- */
/*                               TEXT ANIMATION                               */
/* -------------------------------------------------------------------------- */

.animate-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  /* Fluid: 16px a 18px */
  font-size: clamp(16px, 0.2vw + 15px, 18px);
  line-height: 22px;
  letter-spacing: 0; /* 0% su Mobile */
  color: #111;
}

@media (min-width: 900px) {
  .animate-text {
    letter-spacing: 0.02em; /* 2% su Desktop */
  }
}

.highlight {
  position: relative;
  display: inline;
  font-weight: 400;
  color: #111;
  perspective: 1000px; /* Base per il 3D */
}

/* Solo parole normali: usano il gradiente (treno classico) */
.highlight.is-active:not(.is-uppercase) {
  background: linear-gradient(
    to right,
    #111 0%,
    #111 25%,
    #7a73e6 40%,
    #7a73e6 60%,
    #111 75%,
    #111 100%
  );
  background-size: 400% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Parole in maiuscolo: gestiamo tutto tramite JS e colori solidi per evitare bug di clipping 3D */
.highlight.is-uppercase {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
}

/* Stili per le singole lettere (solo su parole maiuscole) */
.highlight .char {
  display: inline-block;
  position: relative;
  transform-style: preserve-3d;
  transition: font-weight 0s; /* Cambio istantaneo */
}

/* Stato Bold gestito per singola lettera via JS */
.highlight .char.is-bold-char {
  font-weight: 700 !important;
}

/*          =========================================
              LAVA LAMP
            ========================================= */
/*#region   ========================================= */

:root {
  --dynColor: #0000ff; /* Colore di fallback */
}

@property --dynColor {
  syntax: "<color>";
  inherits: true;
  initial-value: #0000ff;
}

@keyframes color-flow {
  0% {
    --dynColor: #0000ff;
  } /* Blue */
  20% {
    --dynColor: #8e44ad;
  } /* Purple */
  40% {
    --dynColor: #ff00ff;
  } /* Magenta */
  60% {
    --dynColor: #d35400;
  } /* Orange */
  80% {
    --dynColor: #f1c40f;
  } /* Yellow */
  100% {
    --dynColor: #0000ff;
  }
}

.instruction-design__process-animation {
  /* Assicurati che il contenitore genitore abbia l'animazione attiva */
  animation: color-flow 25s linear infinite;
}

.lava-solid-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  /* SVG Gooey Effect: Sharp Alpha, Perfect Color */
  filter: url("#goo");
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 900px) {
  .lava-solid-container {
    /* Maschera Cartella (Per tagliare la lava) */
    mask-image: url("https://www.horizonfyw.com/wp-content/uploads/2026/02/Sfondo-Cartella-Nera-Home-Design-Sezione-Instruction.png");
    mask-size: cover; /* Match parent background-size */
    mask-position: center top; /* Match parent background-position */
    mask-repeat: no-repeat;
    -webkit-mask-image: url("https://www.horizonfyw.com/wp-content/uploads/2026/02/Sfondo-Cartella-Nera-Home-Design-Sezione-Instruction.png");
    -webkit-mask-size: cover; /* Match parent background-size */
    -webkit-mask-position: center top; /* Match parent background-position */
    -webkit-mask-repeat: no-repeat;
  }
}

.lava-solid-container i {
  position: absolute;
  background-color: var(--dynColor);
  border-radius: 44% 56% 43% 57% / 55% 46% 54% 45%; /* Blobby Shape */
  bottom: -100px;
  opacity: 1;
}

@keyframes wobble {
  0% {
    transform: rotate(0deg);
    border-radius: 44% 56% 43% 57% / 55% 46% 54% 45%;
  }
  50% {
    border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
  }
  100% {
    transform: rotate(360deg);
    border-radius: 44% 56% 43% 57% / 55% 46% 54% 45%;
  }
}

/* 7 HUGE, Slow, Lava Bubbles - Full 0-100% Distribution */
.lava-solid-container i:nth-child(1) {
  width: 120px;
  height: 120px;
  left: 2%;
  animation:
    verticalFlow 22s linear infinite,
    wobble 11s ease-in-out infinite;
  animation-delay: 0s;
}
.lava-solid-container i:nth-child(2) {
  width: 140px;
  height: 130px;
  left: 18%;
  animation:
    verticalFlow 28s linear infinite reverse,
    wobble 14s ease-in-out infinite reverse;
  animation-delay: -10s;
}
.lava-solid-container i:nth-child(3) {
  width: 100px;
  height: 100px;
  left: 32%;
  animation:
    verticalFlow 20s linear infinite,
    wobble 10s ease-in-out infinite;
  animation-delay: -5s;
}
.lava-solid-container i:nth-child(4) {
  width: 150px;
  height: 140px;
  left: 45%;
  animation:
    verticalFlow 25s linear infinite reverse,
    wobble 12.5s ease-in-out infinite reverse;
  animation-delay: -15s;
}
.lava-solid-container i:nth-child(5) {
  width: 110px;
  height: 110px;
  left: 60%;
  animation:
    verticalFlow 23s linear infinite,
    wobble 11.5s ease-in-out infinite;
  animation-delay: -2s;
}
.lava-solid-container i:nth-child(6) {
  width: 130px;
  height: 130px;
  left: 75%;
  animation:
    verticalFlow 26s linear infinite reverse,
    wobble 13s ease-in-out infinite reverse;
  animation-delay: -8s;
}
.lava-solid-container i:nth-child(7) {
  width: 120px;
  height: 120px;
  left: 88%;
  animation:
    verticalFlow 21s linear infinite,
    wobble 10.5s ease-in-out infinite;
  animation-delay: -12s;
}

@keyframes verticalFlow {
  0% {
    bottom: -150px;
  }
  100% {
    bottom: 650px;
  }
}

/* --- LAVA POOL (Base) --- */
.lava-base {
  position: absolute;
  bottom: -10px;
  left: -20%;
  width: 140%;
  height: 25px;
  background-color: var(--dynColor);
  z-index: 10;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  animation: lava-flow 8s ease-in-out infinite alternate;
}
.lava-base::before,
.lava-base::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--dynColor);
  border-radius: 50% 50% 0 0;
}
.lava-base::before {
  top: -10px;
  left: -10%;
  animation: lava-flow 9s ease-in-out infinite alternate-reverse;
}
.lava-base::after {
  top: -5px;
  left: 5%;
  animation: lava-flow 7s ease-in-out infinite alternate;
}

@keyframes lava-flow {
  0% {
    transform: scaleY(1) translateY(5px) rotate(-1deg) translateX(-5px);
  }
  100% {
    transform: scaleY(1.2) translateY(-5px) rotate(1deg) translateX(5px);
  }
}

/*#endregion */

/*          =========================================
            ACCORDION COMPONENTS (Structural)
            ========================================= */
/*#region   ========================================= */

.accordion-container {
  display: block;
}

/* Header (Interattivo) */
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.accordion-title-group {
  display: flex;
  align-items: center;
  text-align: left;
}

/* Icona + (Struttura) */
.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

/* Content (Meccanismo apertura) */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-subtitle {
  display: block;
}

.accordion-inner p {
  margin: 0; /* Reset base per evitare salti */
}

/* Stato Attivo */
.accordion-item.is-active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-item.is-active .accordion-content {
  opacity: 1;
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease 0.2s;
}

/*#endregion */

/*          =========================================
            LIQUID GLASS
            ========================================= */
/*#region   ========================================= */

/*#region   ========================================= */
:root {
  --liquidglass-bg: rgba(255, 255, 255, 0.1);
  --liquidglass-highlight: rgba(255, 255, 255, 0.4);
}

/*
   LIQUID GLASS WRAPPER
   Applica questa classe al tuo box.
   L'effetto eredita automaticamente la forma (border-radius) del box.
*/
.liquidglass-wrapper {
  position: relative;
  overflow: hidden; /* Necessario per contenere i layer dell'effetto */
}

/* Layer Base dell'effetto */
.liquidglass-filter,
.liquidglass-overlay,
.liquidglass-specular {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none; /* Non blocca i click sul contenuto */
}

/* 1. Distorsione e Sfocatura */
.liquidglass-filter {
  z-index: 0;
  backdrop-filter: blur(4px);
  filter: url(#liquidglass-lens-filter) saturate(105%) brightness(1.05);
}

/* 2. Colore di fondo (Vetro) */
.liquidglass-overlay {
  z-index: 1;
  background: var(--liquidglass-bg);
}

/* 3. Riflessi e Luci */
.liquidglass-specular {
  z-index: 2;
  box-shadow:
    inset 1px 1px 0 var(--liquidglass-highlight),
    inset 0 0 3px var(--liquidglass-highlight);
}

/*
   CONTENUTO
   Inserisci tutto il tuo contenuto qui dentro.
   Z-index 3 per stare sopra l'effetto vetro.
*/
.liquidglass-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
}

/* Utility per nascondere il filtro SVG senza creare spazi bianchi in Gutenberg */
.liquidglass-svg-hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
}
/*#endregion */

/*          =========================================
            APPROFONDISCI SECTION RIGHT V.
            ========================================= */
/*#region   ========================================= */

.approfondisci-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 40px;
}
.approfondisci-section-link,
.approfondisci-section-link:visited {
  display: inline-flex; /* Fondamentale per vedere la freccia */
  align-items: center;
  gap: 12px;
  color: var(--hzn-textlink);
  text-decoration: none;
}
.approfondisci-section-link:hover .hzn-textlink {
  text-decoration: underline;
}
.approfondisci-section-link::after {
  content: "";
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13.5 4.5 21 12m0 0-7.5 7.5M21 12H3' /%3E%3C/svg%3E")
    no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13.5 4.5 21 12m0 0-7.5 7.5M21 12H3' /%3E%3C/svg%3E")
    no-repeat center;
  transition: transform 0.3s ease;
}
.approfondisci-section-link:hover::after {
  transform: translateX(8px);
}

/* PERSONALIZZAZIONE DESKTOP */
@media (min-width: 900px) {
  .itwork-design__animatedtext {
    padding-right: 423px;
  }
  .approfondisci-section {
    margin-left: auto;
    width: fit-content;
  }
}

/*#endregion */
