.mbc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin: 40px 0;
}

.mbc-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
}

.mbc-image {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.mbc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.2));
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.mbc-overlay h3 {
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
}

.mbc-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #eaeaea;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

.mbc-content {
    padding: 20px;
    font-size: 14px;
    color: #555;
    flex-grow: 1;
}

.mbc-btn {
    text-align: center;
    background: #fde7b0;
    padding: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
}

.mbc-btn:hover {
    background: #fbd67d;
}
