details, details summary {
    font-size: var(--wp--preset--font-size--s);
    font-weight: 550;
}

details[open]::details-content {
  padding-left: 26px;
}

summary {
    list-style-type: none;
    &::before {
        content: url("./../img/details_chevron.svg");
        padding-right: 10px;
    }
}

details[open] summary {
    &::before {
        content: url("./../img/details_chevron_open.svg");
    }
}

details[open] p {
    line-height: 1rem;
    font-weight: 450;
}