/*
	* Yoast Styling
	*
	* @package      goingawesomeplaces
	* @author       Lindsay Humes
	* @since        1.0.0
	* @license      GPL-2.0+
*/
/*--------------------------------------------------------------
Table of Contents
--------------------------------------------------------------*/
.wp-block-yoast-seo-table-of-contents {
    background: #FAFAFA;
    padding: 0 30px 30px;
    margin: 40px 0;
    border-radius: 10px;
    border: 2px solid #EAEAEA;
}

.wp-block-yoast-seo-table-of-contents h2 {
    background: #EAEAEA;
    color: var(--wp--preset--color--ink);
    margin: 0 -30px 20px;
    border-radius: 10px 10px 0 0;
    padding: 20px 30px;
    line-height: 1.1;
    font-weight: 400;
    font-family: var(--wp--preset--font-family--custom-serif);
    text-transform: capitalize;
    font-size: 1.7;
}
.yoast-table-of-contents ul {
    padding-bottom: 0;
    padding-right: 0;
    margin-bottom: 0;
    padding-inline-start: 20px;
    column-count: 2;
    column-gap: 60px;
}
@media (max-width: 800px) {
    .yoast-table-of-contents ul {
        column-count: 1;
    }
}
.yoast-table-of-contents li {
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 10px;

}
.yoast-table-of-contents ul li ul {
    margin-top: 10px;
    column-count: 1;
}
.yoast-table-of-contents ul li ul li ul {
    margin-top: 10px;
    column-count: 1; 
}

.yoast-table-of-contents li a {
    font-weight: 400;
    color: var(--wp--preset--color--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--wp--preset--color--red);
    width: fit-content;
}
.yoast-table-of-contents li a:hover {
        color: var(--wp--preset--color--red);
        opacity: 1;
}
.yoast-table-of-contents li::marker {
    color: var(--wp--preset--color--red);
    padding-right: var(--wp--custom--layout--block-gap-small);
    font-size: 1.4rem;
    line-height: 1;
}

/*--------------------------------------------------------------
Faqs Blocks
--------------------------------------------------------------*/
.wp-block-yoast-faq-block .schema-faq-section {
    background: #FAFAFA;
    border: 2px solid #eaeaea;
    border-radius: 10px;
    margin:  0 0 var(--wp--custom--layout--block-gap-small);

}

.wp-block-yoast-faq-block .schema-faq-question {
    font-size: var(--wp--preset--font-size--medium);
    font-weight: 700;
    text-decoration: none;
    margin: 0;
    color: var(--wp--preset--color--ink);
    padding: var(--wp--custom--layout--block-gap);
    line-height: var(--wp--custom--line-height--medium);
    cursor: pointer;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: block
}

.wp-block-yoast-faq-block .schema-faq-question:after {
    content: "+";
    position: absolute;
    top: 0;
    right: var(--wp--custom--layout--block-gap);
    text-align: center;
    font-weight: 700;
    color: var(--wp--preset--color--red);
    font-size: var(--wp--preset--font-size--large);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.wp-block-yoast-faq-block .schema-faq-question.faq-q-open:after {
    content: "-"
}

.wp-block-yoast-faq-block p.schema-faq-answer {
    margin: 0;
    padding: var(--wp--custom--layout--block-gap);
    font-size: var(--wp--preset--font-size--medium);
    line-height: var(--wp--custom--line-height--medium);
    border-radius: 0 0 var(--wp--custom--border-radius--medium) var(--wp--custom--border-radius--medium);
    display: none;
    border-top: 2px solid #eaeaea;
}

/*--------------------------------------------------------------
Reading Time
--------------------------------------------------------------*/
.yoast-reading-time__spacer {
    display: none !important;
}

.yoast-reading-time__icon {
    margin-right: 5px !important;
}

.yoast-reading-time__descriptive-text {
    font-weight: 700 !important;
}

/*--------------------------------------------------------------
Yoast How To Block
--------------------------------------------------------------*/
.wp-block-yoast-how-to-block {
    -webkit-box-shadow: var(--wp--custom--box-shadow--1);
    -moz-box-shadow: var(--wp--custom--box-shadow--1);
    box-shadow: var(--wp--custom--box-shadow--1);
    background: var(--wp--preset--color--grey);
    margin-bottom: var(--wp--custom--layout--block-gap);
    padding: 0 var(--wp--custom--layout--block-gap);
    border-radius: var(--wp--custom--border-radius--medium);
}

.schema-how-to-description {
    border-bottom: var(--wp--custom--border-width--small) solid var(--wp--preset--color--grey);
    padding: 0 0 var(--wp--custom--layout--block-gap);
}

.schema-how-to-total-time {
    border-bottom: var(--wp--custom--border-width--small) solid var(--wp--preset--color--grey);
    margin: 0 -20px var(--wp--custom--layout--block-gap);
    text-align: center;
    padding: var(--wp--custom--layout--block-gap-small);
    font-size: var(--wp--preset--font-size--xsmall);
    line-height: var(--wp--custom--line-height--small);
}

ol.schema-how-to-steps {
    margin: 0;
    padding:0;
}

li.schema-how-to-step {
    margin: var(--wp--custom--layout--block-gap) 0 ;
    padding-bottom: var(--wp--custom--layout--block-gap);
    border-bottom: var(--wp--custom--border-width--small) solid var(--wp--preset--color--grey);

}

li.schema-how-to-step:last-child {
    margin: 0;
    border-bottom: 0;
}