/* ════════════════════════════════════════════════
   Fast Facts Block — Tema escuro com fundo de card claro
   ════════════════════════════════════════════════ */

/* Card container */
.wp-block-meubloco-fast-facts {
    border-radius: 14px;
    padding: 25px 25px 40px;
    position: relative;
    margin-top: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Fundo escuro com onda SVG no canto inferior esquerdo */
    background-color: #f7f8fb;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200' preserveAspectRatio='xMinYMax meet'%3E%3Cpath d='M0,200 C60,160 100,180 160,150 C220,120 260,140 320,110 C370,85 400,90 400,90 L400,200 Z' fill='%23eaeaea'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% auto; /* estica na largura, proporcional na altura */
    overflow: hidden;
}

/* Remove o ::before anterior se existir */
.wp-block-meubloco-fast-facts::before {
    content: none;
}

/* Watermark no canto inferior direito */
.wp-block-meubloco-fast-facts::after {
    content: 'HIPERTROFIA.ORG';
    color: #000;
    position: absolute;
    bottom: 12px;
    right: 14px;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    z-index: 1;
}

/* Heading */
.wp-block-meubloco-fast-facts .fast-facts__heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 18px 0;
    padding-right: 32px;
    line-height: 1.3;
    border: none;
    box-shadow: none;
}

/* Lista */
.wp-block-meubloco-fast-facts .fast-facts__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Item */
.wp-block-meubloco-fast-facts .fast-facts__item {
    display: block;
    position: relative;
    padding-left: 18px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #000;
}

/* Bullet vermelho */
.wp-block-meubloco-fast-facts .fast-facts__item::before {
    content: '•';
    color: #000;
    font-size: 1.15em;
    position: absolute;
    left: 0;
    top: 0;
}

/* Links */
.wp-block-meubloco-fast-facts .fast-facts__item a {
    color: #e06060;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: #e06060;
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.wp-block-meubloco-fast-facts .fast-facts__item a:hover {
    color: #cd3737;
    text-decoration-color: rgba(159, 18, 57, 0.65);
}


/* ════════════════════════════════════════════════
   Editor only
   ════════════════════════════════════════════════ */

.wp-block-meubloco-fast-facts .fast-facts__item--editable {
    position: relative;
    padding-right: 26px;
}

.wp-block-meubloco-fast-facts .fast-facts__item-text {
    flex: 1;
}

/* Botão × */
.wp-block-meubloco-fast-facts .fast-facts__remove-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #3a3a3a;
    border: 1px solid #555;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ccc;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.15s ease, background 0.15s ease;
}

.wp-block-meubloco-fast-facts .fast-facts__item--editable:hover .fast-facts__remove-btn {
    opacity: 1;
}

.wp-block-meubloco-fast-facts .fast-facts__remove-btn:hover {
    background: #4a4a4a;
    border-color: #888;
}

/* Botão + Adicionar item */
.wp-block-meubloco-fast-facts .fast-facts__add-btn {
    display: block;
    margin-top: 16px;
    width: 100%;
    background: none;
    border: 1px dashed #555;
    border-radius: 8px;
    color: #aaa;
    font-size: 0.85rem;
    padding: 8px 14px;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.wp-block-meubloco-fast-facts .fast-facts__add-btn:hover {
    background: #3a3a3a;
    border-color: #777;
}