/* bedots_fun_fact UI block */
.bedots-fun-fact {
    padding: 64px 0 72px;
    background: #fff;
}

.bedots-fun-fact__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.bedots-fun-fact__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
}

.bedots-fun-fact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #111;
}

.bedots-fun-fact__icon i {
    font-size: 34px;
    line-height: 1;
    font-weight: 400;
}

.bedots-fun-fact__title {
    margin: 0 0 10px;
    color: #111;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
}

.bedots-fun-fact__description {
    margin: 0;
    max-width: 220px;
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

@media screen and (max-width: 991px) {
    .bedots-fun-fact__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 24px;
    }
}

@media screen and (max-width: 575px) {
    .bedots-fun-fact {
        padding: 48px 0 56px;
    }

    .bedots-fun-fact__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bedots-fun-fact__description {
        max-width: 280px;
    }
}
