/*
 Theme Name:   Blocksy Child DeGalaLab
 Theme URI:    https://degalalab.com
 Description:  Child theme net i optimitzat per DeGalaLab - Setembre 2025
 Author:       Gloc | DeGalaWeb Group 
 Author URI:   https://degalalab.com
 Template:     blocksy
 Version:      1.0.0
 Text Domain:  blocksy-child-degalalab
*/

/* Aquí s'afegeix el CSS personalitzat */

/* ===== FAQ Rank Math estil acordió ==== */
.rank-math-question {
  font-weight: 600;
  color: #111;
  cursor: pointer;
  position: relative;
  padding-right: 25px;
  transition: color 0.3s ease;
  margin: 0;
}

.rank-math-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 18px;
  color: #FC3869; /* fúcsia corporatiu */
  transition: transform 0.3s ease;
}

.rank-math-answer {
  display: none;
  margin-top: 8px;
  color: #444;
  line-height: 1.6;
}

/* Quan està obert */
.faq-open .rank-math-answer {
  display: block;
}

.faq-open .rank-math-question::after {
  content: "–";
  transform: rotate(180deg);
}

/* --- Ajustar mida i estil de les preguntes - FAQs --- */

.rank-math-question {
  font-size: 1.1rem; /* més petit, pots provar també 1rem */
  font-weight: 600;
  color: #111;
  cursor: pointer;
  position: relative;
  padding-right: 25px;
  transition: color 0.3s ease;
  margin: 0;
  line-height: 1.4;
}

/* Ajustar mida i estil de les respostes */
.rank-math-answer {
  display: none;
  margin-top: 8px;
  margin-left: 15px; /* ← sagnat per diferenciar */
  color: #444;
  line-height: 1.6;
  font-size: 0.95rem; /* una mica més petita que les preguntes */
}

