.disclosure-blocks-section {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding-block: 48px;
}

@media (min-width: 991.8px) {
    .disclosure-blocks-section {
        padding-block: 100px;
    }
}

.disclosure-blocks {
    width: 100%;
}

.disclosure-blocks-section .section-title {
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
    margin-block: 0 24px;
}

.disclosure-blocks-section .container-new {
    z-index: 2;
    position: relative;
}

.disclosure-blocks-section .disclosure-accordions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    flex-basis: 100%;
    margin-inline: auto;
    max-width: 100%;
    margin-bottom: 40px;
    margin-top: 24px;
}


.disclosure-blocks-section .disclosure-accordions .accordion-item {
    width: 100%;
    flex-basis: 100%;
}

.disclosure-blocks-section .disclosure-accordions .heading {
    padding: 28px;
    border-radius: 16px;
    font-size: 20px;
    line-height: 22px;
    transition: 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--grey-300);
    cursor: pointer;
    background-color: var(--white);
}

.disclosure-blocks-section .disclosure-accordions .heading .text {
    width: calc(100% - 30px);
    flex-basis: calc(100% - 30px);
}

.disclosure-blocks-section .disclosure-accordions .heading .sign {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.disclosure-blocks-section .disclosure-accordions .heading .sign:before {
    content: "";
    display: block;
    box-sizing: border-box;
    height: 24px;
    width: 24px;
    transition: 300ms ease-in-out;
    mask: url('./images/plus.svg') no-repeat center;
    -webkit-mask: url('./images/plus.svg') no-repeat center;
    background-color: var(--green-700);
}

.disclosure-blocks-section .disclosure-accordions .heading.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    color: var(--orange-10);
    background-color: var(--grey-900);
    border-color: var(--grey-300);
    padding-bottom: 12px;
    border-bottom: none;
}

.disclosure-blocks-section .disclosure-accordions .heading.active .text {
    color: var(--orange-100);
}

.disclosure-blocks-section .disclosure-accordions .heading.active .sign:before {
    mask: url('./images/minus.svg') no-repeat center;
    -webkit-mask: url('./images/minus.svg') no-repeat center;
    background-color: var(--orange-100);
}

.disclosure-blocks-section .disclosure-accordions .heading:hover {
    background-color: var(--grey-900);
}

.disclosure-blocks-section .disclosure-accordions .faq-contents {
    display: none;
    padding: 0 28px 28px;
    border: 1px solid var(--grey-300);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    background-color: var(--grey-900);
    border-top: none;
}

.disclosure-blocks-section .disclosure-accordions .faq-contents p,
.disclosure-blocks-section .disclosure-accordions .faq-contents li {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 16px;
}

.disclosure-blocks-section .disclosure-accordions .faq-contents ul {
    margin-bottom: 24px;
}

.disclosure-blocks-section .disclosure-accordions .faq-contents p:last-child,
.disclosure-blocks-section .disclosure-accordions .faq-contents li:last-child {
    margin-bottom: 0;
}

.disclosure-blocks-section .disclosure-accordions .faq-contents a {
    color: var(--green-700);
    text-decoration: underline;
}

.disclosure-blocks-section .disclosure-accordions .faq-contents a:hover {
    color: var(--green-300);
}

#editor .disclosure-blocks-section .disclosure-accordions .heading {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#editor .disclosure-blocks-section .disclosure-accordions .faq-contents {
    display: block;
}

.disclosure-blocks-section .disclosure-accordions .faq-contents blockquote {
    padding: 30px 20px 30px 40px;
    background-color: var(--grey-30);
    color: var(--black);
    margin-bottom: 20px;
    border-left: 10px solid var(--orange-10);
}

.disclosure-blocks-section .button-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-block: 30px;
    width: 100%;
    flex-basis: 100%;
}

.disclosure-blocks-section .button-wrapper a {
    color: var(--orange-200);
    text-decoration-line: underline;
    margin-inline: auto;
    text-align: center;
}

.disclosure-blocks-section .button-wrapper a:hover {
    color: var(--purple-100);
}

.disclosure-links {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
}

.disclosure-link {
    width: 100%;
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.disclosure-link a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;

}

.disclosure-blocks-section .disclosure-accordions .faq-contents .disclosure-link a {
    text-decoration-line: none;
    color: var(--black);
}
.disclosure-blocks-section .disclosure-accordions .faq-contents .disclosure-link a:hover{
    color: var(--green-700);
}
.disclosure-blocks-section .disclosure-accordions .faq-contents .disclosure-link a:hover svg path{
    stroke: var(--green-700);
}
.disclosure-link a .title {
    flex: 1;
}
.disclosure-link a svg path{
    transition: 0.4s all;
}
.disclosure-link a .icon {
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}