/* Yoast Schema Styles */
.schema-faq.wp-block-yoast-faq-block {
    background-color: #efefef;
    padding: 0 30px;
}
.schema-faq-section{
    margin: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.13);
    border-radius: 0px;
    background-color: #efefef;
    margin-top: 0;
    margin-bottom: 0;
}
.schema-faq-section:last-child{
    border-bottom: 0px solid rgba(0, 0, 0, 0.13);
}
.schema-faq-question{
 color: #444;
 font-size: 18px;
 font-weight: 700;
 font-family: "Gotham";
 cursor: pointer;
 display: flex;
 align-items: center;
 padding: 25px 10px;
 position: relative;
 transition: opacity ease 0.25s;
}
.schema-faq-question:hover {
  color: var(--wp--preset--color--secondary);
}
.schema-faq-question:after{
  width: 16px;
  height: 30px;
  display: inline-block;
  margin-left: auto;
  margin-right: 5px;
  vertical-align: top;
  color: inherit;
  content: "+";
}
.schema-faq-question:after{
    content: "";
    position: absolute;
    top: 30px;
    right: 0px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #cd1111;
    border-left: 2px solid #cd1111;
    transform: rotate(225deg);
}
.schema-faq-question.expanded:after{
    content: "-";
    content: "";
    position: absolute;
    top: 35px;
    right: 0px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #cd1111;
    border-left: 2px solid #cd1111;
    transform: rotate(45deg);
}
.schema-faq-question:hover{
  /*opacity: 0.75;*/
}
.schema-faq-answer{
    padding: 0 1rem 25px 1rem;
    display: none;
    text-align: left;
}
.schema-faq-answer.default{
  display: block;
}

/* Backend Styles: Ensure all content is visible in the block editor */
.editor-styles-wrapper .schema-faq-question {
 cursor: text;
} 
.editor-styles-wrapper .schema-faq-answer {
 display: block;	
} 

@media screen and (max-width: 780px) {
	.schema-faq-question {
		font-size: 16px;
		padding: 20px 23px 20px 0;
		text-align: left;
	}
	.schema-faq-question:after {
		right: 0px;
	}
	.faq-block .faq-block {
		padding: 65px 0 0 0;
}
	.schema-faq-answer {
		font-size: 15px;
		padding: 0 0 25px 0!important;
	}
}
