body {
    font-family: Inter;
    font-size: 0.875rem;
    background-color: #FFE6E6;
}

.mbm-min-body {
    min-height: 80vh;
}

.mbm-card {
    align-items: center;
}

.mbm-clickcard {
    min-height: 23rem;
    padding: 3rem;
    position: relative;
    align-items: center;
    transition: all .2s ease-in-out;
}

.mbm-clickcard:hover {
    box-shadow: 0 1px 20px -2px #e0e0e0 !important;
    transition: all .2s ease-in-out;
}

.mbm-clickcard-header {
    font-size: 1rem;
    min-height: 5rem;
    order: 1;
    position: static;
    transition: all .6s;
    isolation: isolate;
    z-index: 10;
    text-decoration: none;
    color: #000;
}

.mbm-clickcard-header:hover {
    color: #D61355;
}

.mbm-clickcard-header::before {
    content: "";
    display: flex;
    position: absolute;
    inset: 0;
    background: #000;
    z-index: -1;
    opacity: 0.01;
    cursor: pointer;
    transition: all .2s ease-in-out;
    border-radius: 8px;
}

.mbm-clickcard-image-container {
    min-height: 17rem;
    order: 0;
    object-fit: cover;
    width: 70%;
    transition: all .6s;
    z-index: 5;
    pointer-events: none;
    position: static;
}

.mbm-clickcard-image {
    width: 100%;
    object-fit: cover;
}

.mbm-clickcard-image:hover {
    width: 90%;
    object-fit: cover;
}

.mbm-clickcard-category {
    min-height: 2rem;
    padding: 1rem;
    position: relative;
    align-items: center;
    transition: all .2s ease-in-out;
}

.mbm-clickcard-header-category {
    font-size: 1rem;
    min-height: 2rem;
    order: 1;
    position: static;
    transition: all .6s;
    isolation: isolate;
    z-index: 10;
    text-decoration: none;
    color: #e2e2e2;
}

.mbm-clickcard-header-category:hover {
    color: #D61355;
}

.mbm-clickcard-header-category::before {
    content: "";
    display: flex;
    position: absolute;
    inset: 0;
    background: #792424;
    z-index: -1;
    opacity: 0.1;
    cursor: pointer;
    transition: all .2s ease-in-out;
    border-radius: 8px;
}
