/* 06 - Shortcodes: Acordeões */

.af-acc-group {
    display: block;
    margin: 14px 0 24px 0;
}

/* Apenas o PRIMEIRO item terá a linha superior */
.af-acc:first-child {
    border-top: 1px solid rgba(0, 0, 0, .12);
}

.af-acc {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
    /* separador entre itens */
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

/* =========================================================
   Summary (título)
   ========================================================= */

.af-acc-sum {
    cursor: pointer;
    list-style: none;
    padding: 16px 0;
    font-weight: 900;
    letter-spacing: .02em;
    color: #111;
    user-select: none;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* remove marker padrão */
.af-acc-sum::-webkit-details-marker {
    display: none;
}

/* Ícone + / – */
.af-acc-sum::after {
    content: "+";
    font-weight: 900;
    opacity: .7;
    flex: 0 0 auto;
}

.af-acc[open] .af-acc-sum::after {
    content: "–";
}

/* =========================================================
   Corpo
   ========================================================= */

.af-acc-body {
    padding: 0 0 18px 0;
    color: rgba(0, 0, 0, .86);
    line-height: 1.75;
}

.af-acc-body p {
    margin: 10px 0 0 0;
}