#faqs.section_wrapper {
    padding: 16px 16px 128px 12px;
}

.breadcrumb {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.breadcrumb a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    color: var(--sage);
}

.breadcrumb span {
    font-size: 14px;
    font-weight: 600;
    color: var(--sage);
}

#faqs .title {
    text-align: left;
}

#faqs .description {
    text-align: left;
}

#faqs .description a {
    font-weight: 600;
    text-decoration: underline;
}

#faqs .subtitle {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 20px;
}

#faqs .subtitle span:nth-child(1) {
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border-radius: 50%;
}

#faqs .list_item {
    height: initial;
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
}

#faqs .list_item_link {
    width: 100%;
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    background-color: var(--light);
    border: 1px solid var(--sage);
    border-radius: 16px;
    transition: 0.3s ease-in-out;
}

#faqs .list_item_link:focus,
#faqs .list_item_link:active {
    color: var(--light);
    background-color: var(--sage);
}

#faqs .list_item_link[data-active="true"] {
    color: var(--light);
    background-color: var(--sage);
}

@media only screen and (min-width: 768px) {
    #faqs.section_wrapper {
        padding: 32px 32px 128px 32px;
    }

    #faqs .list {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
    }
}

@media only screen and (min-width: 960px) {
    #faqs.section_wrapper {
        padding: 64px 64px 128px 64px;
    }

    #faqs .list_item_link:hover {
        color: var(--light);
        background-color: var(--sage);
    }
}

@media only screen and (min-width: 1280px) {
    #faqs .list_item {
        width: calc(33% - 7px);
    }
}