.accordion {
    .accordion-item {
        .h2 button {
            &::after { /* - */
                background-image: url("data:image/svg+xml,%3csvg width='13' height='1' viewBox='0 0 12 2' fill='currentColor' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3e%3cline y1='1.375' x2='12' y2='1.375' stroke='%23FEF8F1' stroke-width='1.25'/%3e%3c/svg%3e");
                height: 2rem;
                width: 2rem;
                background-color: var(--terracotta);
                border-radius: var(--size-10px);
                background-position: center;
            }

            &.collapsed {
                &::after { /* + */
                    background-image: url("data:image/svg+xml,%3csvg width='5' height='3' viewBox='0 0 14 13' fill='currentColor' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3e%3cg id='Group 51'%3e%3cline id='Line 2' x1='0.910278' y1='6.45117' x2='13.4991' y2='6.45117' stroke='%23CF6253' stroke-width='1.25'/%3e%3cline id='Line 3' x1='7.41003' y1='0.362305' x2='7.41003' y2='12.9511' stroke='%23CF6253' stroke-width='1.25'/%3e%3c/g%3e%3c/svg%3e");
                    background-color: var(--light-brown);
                }
            }
        }
    }
}