/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* Rank Math FAQ block accordeon styling */
#rank-math-faq .rank-math-list-item {
  margin-bottom: 1em;
  margin-top: 1em;
  border-bottom: 1px solid var(--contrast);
	color: var(--contrast);
	font-size: 20px;
}
.rank-math-question {
  cursor: pointer;
  position: relative;
  display: block;
  padding-right: 1em;
  margin-right: 1em;
  font-weight: 300;
  margin-top: 30px;
	font-size: 22px;
	font-weight: 500;
}
.rank-math-question:after {
  position: absolute;
  right: 5px;
  top: 0;
	color: var(--base-3);
  content: "\2715";
  transform: rotate(-45deg);
  transition: all 150ms ease-in-out;
}
.rank-math-question.collapse:after {
  transform: rotate(0deg);
}
.rank-math-question:hover {
  opacity: 0.8;
}
