/**
 * CSS per il blocco WordPress "Audire Roma Sound Preference Block"
 * Salva come block-sound-preference.css nel tema.
 */
.audire-pref {
  padding: 80px 20px;
  background-color: #0f172a; /* Sfondo blu scuro coordinato con l'identità del brand */
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
}
.audire-pref__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.audire-pref__header {
  text-align: center;
  max-w: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.audire-pref__badge {
  font-size: 10px;
  font-weight: 800;
  color: #38bdf8;
  background-color: rgba(3, 105, 161, 0.4);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 6px 14px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.audire-pref__title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .audire-pref__title {
    font-size: 42px;
  }
}
.audire-pref__subtitle {
  font-size: 15px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
}
.audire-pref__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .audire-pref__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.audire-pref__card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(51, 65, 85, 0.8);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.audire-pref__card:hover {
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(30, 41, 59, 0.6);
  transform: translateY(-2px);
}
.audire-pref__card-num {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background-color: #0284c7; /* Colore d'accento del brand */
  color: #ffffff;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audire-pref__card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 850;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}
.audire-pref__card-text {
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}
.audire-pref__footer-box {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(30, 41, 59, 0.8);
  border-radius: 16px;
  max-width: 768px;
  margin: 0 auto;
}
.audire-pref__footer-icon {
  font-size: 18px;
}
.audire-pref__footer-text {
  font-size: 13.5px;
  font-weight: 600;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.5;
}
