.collapsible_content_section {
    .section_inner {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;

        & .text_area {
            @media (min-width: 992px) {
                flex-basis: 30%;
            }

            @media (max-width: 991px) {
                width: 100%;
                margin-bottom: 3rem;
            }

            & p {
                font-family: "Aboreto", arial, sans-serif;
                font-size: 5rem;
                font-weight: 400;
                margin: 0;
                line-height: 1;

                @media (max-width: 991px) {
                    font-size: 3rem;
                }
            }

            & a {
                color: var(--primary);
                font-weight: 700;
            }
        }
        
        & .accordion {
            @media (min-width: 992px) {
                flex-grow: 1;
                flex-basis: 70%;
            }

            @media (max-width: 991px) {
                width: 100%;
            }

            & .faq-search {
                width: 100%;
                margin-bottom: 2rem;
            }

            & .faq-search__label {
                display: block;
                font-family: "DM Sans", arial, sans-serif;
                font-size: 2.4rem;
                font-weight: 400;
                line-height: 1.5;
                color: var(--primary);
                margin: 0 0 1rem;
            }

            & .faq-search__field {
                position: relative;
                display: block;
                width: 100%;
                max-width: 48rem;
            }

            & .faq-search__input {
                width: 100%;
                box-sizing: border-box;
                padding: 1rem 3.5rem 1rem 1.25rem;
                font-family: "DM Sans", arial, sans-serif;
                font-size: 1.8rem;
                color: var(--text);
                background: var(--white);
                border: 1px solid #BBBBBB;
                border-radius: 8px;
                transition: border-color 0.2s ease, box-shadow 0.2s ease;

                &::placeholder {
                    color: var(--tertiary);
                }

                &:focus {
                    outline: none;
                    border-color: var(--primary);
                    box-shadow: 0 0 0 2px rgba(66, 37, 26, 0.15);
                }

                &::-webkit-search-cancel-button {
                    -webkit-appearance: none;
                    appearance: none;
                }
            }

            & .faq-search__clear {
                position: absolute;
                right: 0.75rem;
                top: 50%;
                transform: translateY(-50%);
                background: none;
                border: none;
                cursor: pointer;
                padding: 0.25rem 0.5rem;
                line-height: 1;
                font-size: 2.2rem;
                font-weight: 300;
                color: var(--tertiary);
                transition: color 0.2s ease;

                &:hover,
                &:focus-visible {
                    color: var(--primary);
                    outline: none;
                }
            }

            & .faq-search__empty {
                margin: 1rem 0 0;
                font-size: 1.8rem;
                color: var(--tertiary);
            }

            & details[open] summary::after {
                content: "-";
            }

            & details {
                & summary {
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                    cursor: pointer;
                    transition: all .5s ease;
                    border-bottom: 1px solid #BBBBBB;
                    padding: 2rem 0;

                    &:after {
                        content: "+";
                        font-size: 3rem;
                        font-weight: 300;
                        color: var(--text);
                    }

                    & svg {
                        @media (max-width: 991px) {
                            width: 5.5rem;
                        }
                    }

                    & .question {
                        font-family: "DM Sans", arial, sans-serif;
                        font-size: 2.4rem;
                        font-weight: 400;
                        line-height: 1.5;
                        color: var(--primary);
                        margin: 0;

                        @media (max-width: 991px) {
                            width: 50rem;
                            max-width: 100%;
                            font-size: 1.8rem;
                        }
                    }
                }
    
                & .answer {
                    padding: 2rem 0;

                    & p {
                        margin: 0 0 1rem;
                        padding: 0;
                        
                        &:last-child {
                            margin-bottom: 0;
                        }

                        & a {
                            font-size: 1.8rem;
                        }
                    }

                    & ul {
                        margin: 0 0 1rem;
                        
                        & li {
                            font-size: 1.8rem;
                            margin: 0;
                        }
                    }
					
					& .call_to_action_buttons {
						margin: 3rem 0 0;
					}
                }
            }
        }
    }
}