﻿/* === FAQ  === */ 


.ercolani-faq {
  padding: 8px 0 0;
  background: transparent;
}


.ercolani-faq__inner {
  max-width: 100%;
  margin: 0;
}


.ercolani-faq__title {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0;
  color: #9a6a12;
}


.ercolani-faq__item {
  border-bottom: 1px solid rgba(184, 175, 159, 0.45);
  background: transparent;
}


.ercolani-faq__item:first-of-type {
  border-top: 1px solid rgba(184, 175, 159, 0.45);
}


.ercolani-faq__question {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: 0;
  color: #2f2f2f;
  transition: color 0.2s ease;
}


.ercolani-faq__question::-webkit-details-marker {
  display: none;
}


.ercolani-faq__question::before {
  content: "+";
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3e9e1;
  color: #9a6a12;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.2s ease;
}


.ercolani-faq__item[open] .ercolani-faq__question {
  color: #9a6a12;
}


.ercolani-faq__item[open] .ercolani-faq__question::before {
  content: "−";
  background: #f3e9e1;
  color: #9a6a12;
}


.ercolani-faq__question:hover {
  color: #9a6a12;
}


.ercolani-faq__answer {
  padding: 0 0 16px 38px;
  max-width: 100%;
}


.ercolani-faq__answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
  color: #444;
}


.ercolani-faq__answer strong {
  color: inherit;
  font-weight: 600;
}


.ercolani-faq__answer a {
  color: #7c6e3c;
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 110, 60, 0.35);
  transition: all 0.2s ease;
}


.ercolani-faq__answer a:hover {
  color: #7c6e3c;
  border-bottom-color: #7c6e3c;
}


.ercolani-faq__answer a strong {
  color: inherit;
  font-weight: 600;
}


@media (max-width: 768px) {
  .ercolani-faq__title {
    font-size: 17px;
    margin-bottom: 14px;
  }


  .ercolani-faq__question {
    gap: 10px;
    padding: 14px 0;
    font-size: 15px;
    line-height: 1.4;
  }


  .ercolani-faq__question::before {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 17px;
  }


  .ercolani-faq__answer {
    padding: 0 0 14px 34px;
  }


  .ercolani-faq__answer p {
    font-size: 14px;
    line-height: 1.7;
  }
}