/**
 * Fun Facts Block Styles
 * GoRiddles Design System — Option A (Yellow)
 */

.fun-facts {
    background: #FFEEAC;
    border-radius: 20px;
    padding: 32px 36px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.fun-facts::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 224, 102, 0.6);
    pointer-events: none;
}

/* Header */
.fun-facts__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.fun-facts__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.fun-facts__label {
    font-size: 13px;
    font-weight: 800;
    color: #3A3A3A;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* List */
.fun-facts__list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.fun-facts__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.fun-facts__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fun-facts__item:first-child {
    padding-top: 0;
}

.fun-facts__bullet {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #3A3A3A;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.fun-facts__text {
    font-size: 15px;
    font-weight: 600;
    color: #3A3A3A;
    line-height: 1.6;
}

.fun-facts__text strong {
    font-weight: 800;
}

/* Gutenberg editor adjustments */
.editor-styles-wrapper .fun-facts {
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 600px) {
    .fun-facts {
        padding: 28px 24px;
        border-radius: 16px;
    }

    .fun-facts__text {
        font-size: 14px;
    }
}
