/*   
Theme Name: sinclairehomeservices
auther: HM
*/

/* Accordion Container */
.single-post details {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 0.75rem 1rem;
  background: #fafafa;
  transition: all 0.3s ease;
}

/* Hover effect */
.single-post details:hover {
  border-color: #c32c28;
  background: #f9fcff;
}

/* Summary (question) */
.single-post details summary {
  font-weight: 600;
  color: #333;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}

/* Remove default disclosure arrow */
.single-post details summary::-webkit-.single-post details-marker {
  display: none;
}
.single-post details summary::marker {
  display: none;
}

/* Custom + / - icon */
.single-post details summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: #c32c28;
  transition: transform 0.3s ease, content 0.3s ease;
}

.single-post details[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}

/* Answer (content) */
.single-post details > *:not(summary) {
  margin-top: 0.5rem;
  color: #555;
}
