.bm-mfo-req-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.bm-mfo-req-col {
    flex: 1 1 260px;
    background: var(--base-2);
    border-radius: 20px;
    box-shadow: 0px 2px 12px rgba(var(--contrast-rgb), 0.08);
    padding: 24px;
    box-sizing: border-box;
}

.bm-mfo-req-col__title {
    font-weight: 700;
    color: var(--contrast);
    margin: 0 0 16px;
}

.bm-mfo-req-col__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bm-mfo-req-col__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--contrast-3);
    line-height: 1.4;
}

.bm-mfo-req-check {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(var(--contrast-2-rgb), 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.bm-mfo-req-check::after {
    content: "";
    display: block;
    width: 5px;
    height: 9px;
    border: solid var(--contrast-2);
    border-width: 0 2px 2px 0;
    transform: translateY(-1px) rotate(45deg);
}

.bm-mfo-req-icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contrast-2);
    margin-top: -1px;
}

.bm-mfo-req-icon svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 767px) {
    .bm-mfo-req-grid {
        flex-direction: column;
    }
    .bm-mfo-req-col {
        padding: 16px;
    }
}
