.entry-content {
    padding-bottom: 50px;
}
#heading {
	text-align: center;
	margin: 20px 0;
	color: #1e73be;
}
.toggle {
    display: flex;
    gap: 10px;
    font-weight: 700;
    margin-bottom: 30px;
    height: 30px;
    cursor: pointer;
}
.toggle div {
    padding: 0 10px;
}
.toggle div:hover {
    border-bottom: 2px solid #1e73be;
    border-bottom: 2px solid rgba(30, 115, 190, .5);
}
.toggle ~ div, body[class*="user-role-"] .toggle div {
	display: none;
}
.toggle ~ .current {
	display: block;
}
.entry-content .toggle .current {
	display: block;
    border-bottom: 2px solid #1e73be;
}
.question {
    border: 1px solid #c5c5c5;
    padding: 10px 15px;
    margin-bottom: 20px;
    cursor: pointer;
}
.question:hover {
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}
.response ul {
    margin: 0 0 0 20px;
}
.response {
    padding: 0 20px 20px;
	display: none;
}
.response.show {
	display: block;
}