.section-root{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding-left: 1em;
    padding-top: 2em;
    gap: 2em;
}


.section-col{
    display: flex;
    flex-direction: column;
    min-width: 56em;
    width: min-content;

    border-radius: 0.4em;
    margin: 1em 0.2em;
    padding: 2em 2.5em;
    box-shadow: 0px 0px 5px 0px #c0c0c0;

    background-color: rgb(249, 242, 232);
}

.section-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 1.6em;
}


.section-title{
    color: #157B62;
    font-weight: bold;
    font-size: 1.6em;
}

.section-bio-list{
    display: flex;
    flex-direction: column;
    gap: 4em;
}

.bio-element{
    gap: 1.5em;
    display: flex;
    flex-direction: row;

}
.bio-title-row{
    display: flex;
    flex-direction: row;
    gap: 2.3em;
}
.bio-title-col{
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.bio-title-name{
    color: #157B62;
    font-weight: bold;
    font-size: 1.3em;

}
.bio-title-role{
    font-size: 0.9em;
    font-style: italic;
    font-size: 1.2em;

}
.faq-block-wrapper{
    row-gap: 2em;
}
.faq-block{
    display: flex;
    flex-direction: column;
    row-gap: 0.5em;
}
.faq-question{
    font-weight: bold;
}
.faq-answer{
    margin-bottom: 1em;
}

.faq-answer > ol{
    margin: 0;
}

.ss-host{
    display: flex;
    flex-direction: column;
}

.ss-block{
    display: flex;
    flex-direction: column;
}

.ss-resource {
    border-left: 1px solid var(--accent-green);
    border-top: 1px solid var(--accent-green);
    border-right: 1px solid var(--accent-green);

    border-top-left-radius: 0.4em;
    border-top-right-radius: 0.4em;

    padding: 0.4em;

    background-color: var(--accent-green);
    color: var(--back);
}

.ss-url {
    border-left: 1px solid var(--accent-green);
    border-bottom: 1px solid var(--accent-green);
    border-right: 1px solid var(--accent-green);
    
    border-bottom-left-radius: 0.4em;
    border-bottom-right-radius: 0.4em;
    
    padding: 0.4em;
}