/*
Theme Name: Jenux Child
Template: jenux
Version: 1.0
*/

/* layout block */
.service-block {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-block img.service-icon {
  width: 90px;
  height: auto;
  flex-shrink: 0;
  border-radius: 8px;
}

/* Layout verticale per schermi piccoli */
@media (max-width: 768px) {
  .service-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-block img.service-icon {
    width: 100px;
    margin-bottom: 1rem;
  }
}

.service-text {
  flex: 1;
}

/* layout card */
.cards-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-icon {
  width: 70px;
  height: auto;
  flex-shrink: 0;
  border-radius: 8px;
}

.service-text {
  flex: 1;
}

/* Layout mobile: immagine sopra, centrata */
@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-text {
    text-align: left;
  }

  .service-icon {
    width: 90px;
    margin-bottom: 1rem;
  }
}

/* Rimuove il bullet anche da marker nativo */
ul.goccia-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.goccia-list li {
  position: relative;
  padding-left: 32px;
}

.goccia-list li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  background-image: url('https://www.serenademarco.it/wp-content/uploads/2025/06/Senza-titolo-1.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

/* Disattiva anche i bullet generati da ::marker */
.goccia-list li::marker {
  display: none;
}
