/**
 * Supernova
 */
details.wp-block-details.is-style-supernova {
    padding: 0.667em;
    margin: 0 0 0.5em 0;
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-radius: var(--supernova-global-radius, 0);

    border-left-width: 8px;
    border-left-color: rgba(0, 0, 0, 0.25);
}
details.wp-block-details.is-style-supernova summary {
    font-weight: 500;
    list-style-type: "\02192\00A0";
}
details.wp-block-details.is-style-supernova[open] summary {
    list-style-type: "\02193\00A0";
}
details.wp-block-details.is-style-supernova summary::-webkit-details-marker {
    list-style-type: "\02192\00A0";
    color: transparent;
}
details.wp-block-details.is-style-supernova[open]
    summary::-webkit-details-marker {
    list-style-type: "\02193\00A0";
}

/**
 * Explore
 */
details.wp-block-details.is-style-explore {
    padding-left: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.22);
}
details.wp-block-details.is-style-explore[open] summary {
    padding-bottom: 16px;
}
details.wp-block-details.is-style-explore p {
    margin-bottom: 16px;
}
details.wp-block-details.is-style-explore *:not(summary) {
    padding-left: 16px;
}
details.wp-block-details.is-style-explore summary {
    padding-left: 11px;
    font-weight: 500;
    color: #000;
    font-size: 28px;
    line-height: 1.285em;
    margin: 24px 0;
    word-wrap: break-word;
}
details.wp-block-details.is-style-explore summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 32px 0 32px 0;
    transition: padding 0.4s ease;
    cursor: pointer;
}

details.wp-block-details.is-style-explore summary::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20.2 20.2"><path fill="none" stroke="currentColor" d="M19.9 9.8 10 19.5.4 9.8M10.1.5 10 19.6"/></svg>');
    display: block;
    position: relative;
    left: -16px;
    top: 0;
    content: "";
    width: 16px;
    height: 16px;
    font-size: 0.4642857142857143em;
    line-height: 1;
    color: currentColor;
    transition: transform 0.2s ease-out;
}
details.wp-block-details.is-style-explore summary:hover::before,
details.wp-block-details.is-style-explore[open] summary::before {
    transform: rotate(180deg);
    transform-origin: center center;
}

/**
 * Classic
 */
details.wp-block-details.is-style-classic {
    background: none;
    border-radius: 3px;
    padding: 8px 16px;
    border: 2px solid;
}
details.wp-block-details.is-style-classic[open] {
    border: 0 solid;
    padding: 8px 0;
}

details.wp-block-details.is-style-classic summary {
    cursor: pointer;
    font-weight: 700;
    list-style-type: "🡒 ";
}
details.wp-block-details.is-style-classic[open] summary {
    font-weight: 400;
}
